define([ 'jquery', '/bower_components/chainpad-json-validator/json-ot.js', '/bower_components/chainpad-crypto/crypto.js', '/bower_components/chainpad/chainpad.dist.js', ], function ($, JsonOT, Crypto) { var ChainPad = window.ChainPad; var History = {}; var getStates = function (rt) { var states = []; var b = rt.getAuthBlock(); if (b) { states.unshift(b); } while (b.getParent()) { b = b.getParent(); states.unshift(b); } return states; }; var loadHistory = function (config, common, cb) { var network = common.getNetwork(); var hkn = network.historyKeeper; var wcId = common.hrefToHexChannelId(config.href || window.location.href); console.log(wcId); var createRealtime = function(chan) { return ChainPad.create({ userName: 'history', initialState: '', transformFunction: JsonOT.validate, logLevel: 0, noPrune: true }); }; var realtime = createRealtime(); var hash = config.href ? common.parsePadUrl(config.href).hash : undefined; var secret = common.getSecrets(hash); var crypto = Crypto.createEncryptor(secret.keys); var to = window.setTimeout(function () { cb('[GET_FULL_HISTORY_TIMEOUT]'); }, 30000); var parse = function (msg) { try { return JSON.parse(msg); } catch (e) { return null; } }; var onMsg = function (msg) { var parsed = parse(msg); if (parsed[0] === 'FULL_HISTORY_END') { console.log('END'); window.clearTimeout(to); cb(null, realtime); return; } if (parsed[0] !== 'FULL_HISTORY') { return; } msg = parsed[1][4]; if (msg) { msg = msg.replace(/^cp\|/, ''); var decryptedMsg = crypto.decrypt(msg, secret.keys.validateKey); realtime.message(decryptedMsg); } }; network.on('message', function (msg, sender) { onMsg(msg); }); network.sendto(hkn, JSON.stringify(['GET_FULL_HISTORY', wcId, secret.keys.validateKey])); }; var create = History.create = function (common, config) { if (!config.$toolbar) { return void console.error("config.$toolbar is undefined");} if (History.loading) { return void console.error("History is already being loaded..."); } History.loading = true; var $toolbar = config.$toolbar; var noFunc = function () {}; var render = config.onRender || noFunc; var onClose = config.onClose || noFunc; var onRevert = config.onRevert || noFunc; var onReady = config.onReady || noFunc; var Messages = common.Messages; var realtime; var states = []; var c = states.length - 1; var $hist = $toolbar.find('.cryptpad-toolbar-history'); var $left = $toolbar.find('.cryptpad-toolbar-leftside'); var $right = $toolbar.find('.cryptpad-toolbar-rightside'); var $cke = $toolbar.find('.cke_toolbox_main'); var onUpdate; var update = function () { if (!realtime) { return []; } states = getStates(realtime); if (typeof onUpdate === "function") { onUpdate(); } return states; }; // Get the content of the selected version, and change the version number var get = function (i) { i = parseInt(i); if (isNaN(i)) { return; } if (i < 0) { i = 0; } if (i > states.length - 1) { i = states.length - 1; } var val = states[i].getContent().doc; c = i; if (typeof onUpdate === "function") { onUpdate(); } $hist.find('.next, .previous').css('visibility', ''); if (c === states.length - 1) { $hist.find('.next').css('visibility', 'hidden'); } if (c === 0) { $hist.find('.previous').css('visibility', 'hidden'); } return val || ''; }; var getNext = function (step) { return typeof step === "number" ? get(c + step) : get(c + 1); }; var getPrevious = function (step) { return typeof step === "number" ? get(c - step) : get(c - 1); }; // Create the history toolbar var display = function () { $hist.html('').show(); $left.hide(); $right.hide(); $cke.hide(); var $prev =$('