You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cryptpad/www/common/sframe-chainpad-netflux-inn...

157 lines
5.7 KiB
JavaScript

7 years ago
/*
* Copyright 2014 XWiki SAS
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
define([
'/common/common-util.js',
'/customize/application_config.js',
7 years ago
'/bower_components/chainpad/chainpad.dist.js'
], function (Util, AppConfig, ChainPad) {
7 years ago
var module = { exports: {} };
var badStateTimeout = typeof(AppConfig.badStateTimeout) === 'number' ?
AppConfig.badStateTimeout : 30000;
7 years ago
var verbose = function (x) { console.log(x); };
verbose = function () {}; // comment out to enable verbose logging
7 years ago
module.exports.start = function (config) {
var onConnectionChange = config.onConnectionChange || function () { };
var onRemote = config.onRemote || function () { };
var onInit = config.onInit || function () { };
var onLocal = config.onLocal || function () { };
var setMyID = config.setMyID || function () { };
var onReady = config.onReady || function () { };
var onError = config.onError || function () { };
7 years ago
var userName = config.userName;
var initialState = config.initialState;
if (config.transformFunction) { throw new Error("transformFunction is nolonger allowed"); }
var patchTransformer = config.patchTransformer;
7 years ago
var validateContent = config.validateContent;
var avgSyncMilliseconds = config.avgSyncMilliseconds;
var logLevel = typeof(config.logLevel) !== 'undefined'? config.logLevel : 1;
7 years ago
var readOnly = config.readOnly || false;
7 years ago
var sframeChan = config.sframeChan;
var metadataMgr = config.metadataMgr;
var updateLoadingProgress = config.updateLoadingProgress;
7 years ago
config = undefined;
var chainpad = ChainPad.create({
userName: userName,
initialState: initialState,
patchTransformer: patchTransformer,
validateContent: validateContent,
avgSyncMilliseconds: avgSyncMilliseconds,
logLevel: logLevel
});
chainpad.onMessage(function(message, cb) {
sframeChan.query('Q_RT_MESSAGE', message, cb);
});
chainpad.onPatch(function () {
onRemote({ realtime: chainpad });
});
7 years ago
var myID;
var isReady = false;
var isHistory = 1;
var evConnected = Util.mkEvent(true);
var evInfiniteSpinner = Util.mkEvent(true);
window.setInterval(function () {
if (!chainpad || !myID) { return; }
var l;
try {
l = chainpad.getLag();
} catch (e) {
throw new Error("ChainPad.getLag() does not exist, please `bower update`");
}
if (l.lag < badStateTimeout) { return; }
evInfiniteSpinner.fire();
}, 2000);
7 years ago
sframeChan.on('EV_RT_DISCONNECT', function (isPermanent) {
7 years ago
isReady = false;
chainpad.abort();
// Permanent flag is here to choose if we wnat to display
// "reconnecting" or "disconnected" in the toolbar state
onConnectionChange({ state: false, permanent: isPermanent });
7 years ago
});
sframeChan.on('EV_RT_ERROR', function (err) {
isReady = false;
chainpad.abort();
onError(err);
});
7 years ago
sframeChan.on('EV_RT_CONNECT', function (content) {
//content.members.forEach(userList.onJoin);
7 years ago
isReady = false;
if (myID) {
7 years ago
// it's a reconnect
myID = content.myID;
chainpad.start();
7 years ago
onConnectionChange({ state: true, myId: myID });
return;
}
myID = content.myID;
7 years ago
onInit({
7 years ago
myID: myID,
7 years ago
realtime: chainpad,
readOnly: readOnly
7 years ago
});
evConnected.fire();
7 years ago
});
7 years ago
sframeChan.on('Q_RT_MESSAGE', function (content, cb) {
7 years ago
if (isReady) {
onLocal(true); // should be onBeforeMessage
7 years ago
}
7 years ago
chainpad.message(content);
if (isHistory && updateLoadingProgress) {
updateLoadingProgress({
state: 2,
progress: isHistory
}, false);
isHistory++;
}
7 years ago
cb('OK');
});
7 years ago
sframeChan.on('EV_RT_READY', function () {
7 years ago
if (isReady) { return; }
isReady = true;
isHistory = false;
7 years ago
chainpad.start();
setMyID({ myID: myID });
onReady({ realtime: chainpad });
});
var whenRealtimeSyncs = function (cb) {
evConnected.reg(function () {
if (chainpad.getAuthDoc() === chainpad.getUserDoc()) {
return void cb();
} else {
chainpad.onSettle(cb);
}
});
};
7 years ago
return Object.freeze({
getMyID: function () { return myID; },
metadataMgr: metadataMgr,
whenRealtimeSyncs: whenRealtimeSyncs,
onInfiniteSpinner: evInfiniteSpinner.reg,
chainpad: chainpad,
7 years ago
});
7 years ago
};
7 years ago
return Object.freeze(module.exports);
});