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-out...

115 lines
3.8 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/>.
*/
7 years ago
define([], function () {
7 years ago
var verbose = function (x) { console.log(x); };
verbose = function () {}; // comment out to enable verbose logging
var unBencode = function (str) { return str.replace(/^\d+:/, ''); };
7 years ago
var start = function (conf) {
7 years ago
var channel = conf.channel;
var Crypto = conf.crypto;
var validateKey = conf.validateKey;
var readOnly = conf.readOnly || false;
var padRpc = conf.padRpc;
7 years ago
var sframeChan = conf.sframeChan;
var onConnect = conf.onConnect || function () { };
7 years ago
conf = undefined;
7 years ago
padRpc.onReadyEvent.reg(function () {
7 years ago
sframeChan.event('EV_RT_READY', null);
});
7 years ago
7 years ago
// shim between chainpad and netflux
var msgIn = function (msg) {
7 years ago
try {
var decryptedMsg = Crypto.decrypt(msg, validateKey);
return decryptedMsg;
} catch (err) {
console.error(err);
return msg;
}
};
var msgOut = function (msg) {
if (readOnly) { return; }
try {
var cmsg = Crypto.encrypt(msg);
if (msg.indexOf('[4') === 0) { cmsg = 'cp|' + cmsg; }
return cmsg;
} catch (err) {
console.log(msg);
throw err;
7 years ago
}
};
sframeChan.on('Q_RT_MESSAGE', function (message, cb) {
var msg = msgOut(message);
if (!msg) { return; }
padRpc.sendPadMsg(msg, cb);
});
7 years ago
var onMessage = function(msg) {
var message = msgIn(msg);
7 years ago
verbose(message);
// slice off the bencoded header
// Why are we getting bencoded stuff to begin with?
// FIXME this shouldn't be necessary
message = unBencode(message);//.slice(message.indexOf(':[') + 1);
// pass the message into Chainpad
7 years ago
sframeChan.query('Q_RT_MESSAGE', message, function () { });
7 years ago
};
var onOpen = function(data) {
7 years ago
// Add the existing peers in the userList
onConnect(data.id);
onConnect = function () {};
7 years ago
sframeChan.event('EV_RT_CONNECT', { myID: data.myID, members: data.members, readOnly: readOnly });
7 years ago
// Add the handlers to the WebChannel
padRpc.onMessageEvent.reg(function (msg) { onMessage(msg); });
padRpc.onJoinEvent.reg(function (m) { sframeChan.event('EV_RT_JOIN', m); });
padRpc.onLeaveEvent.reg(function (m) { sframeChan.event('EV_RT_LEAVE', m); });
7 years ago
};
padRpc.onDisconnectEvent.reg(function () {
7 years ago
sframeChan.event('EV_RT_DISCONNECT');
7 years ago
});
7 years ago
// join the netflux network, promise to handle opening of the channel
padRpc.joinPad({
channel: channel || null,
validateKey: validateKey,
readOnly: readOnly
}, function(data) {
onOpen(data);
7 years ago
});
};
7 years ago
7 years ago
return {
start: function (config) {
config.sframeChan.whenReg('EV_RT_READY', function () {
start(config);
});
7 years ago
}
7 years ago
};
});