cryptpad/www/common/cryptget.js

88 lines
2.6 KiB
JavaScript
Raw Normal View History

define([
2016-12-22 15:00:13 +00:00
'/customize/messages.js?app=cryptget',
'/bower_components/chainpad-crypto/crypto.js',
'/bower_components/chainpad-netflux/chainpad-netflux.js',
'/common/cryptpad-common.js',
2016-12-22 15:00:13 +00:00
'/bower_components/textpatcher/TextPatcher.js',
'/bower_components/jquery/dist/jquery.min.js',
], function (Messages, Crypto, Realtime, Cryptpad, TextPatcher) {
var noop = function () {};
var finish = function (S, err, doc) {
if (S.done) { return; }
S.cb(err, doc);
S.done = true;
2016-12-22 15:00:13 +00:00
var abort = Cryptpad.find(S, ['realtime', 'realtime', 'abort']);
if (typeof(abort) === 'function') {
S.realtime.realtime.sync();
abort();
}
2016-12-22 15:00:13 +00:00
};
2016-12-22 15:00:13 +00:00
var makeConfig = function (hash) {
var secret = Cryptpad.getSecrets(hash);
if (!secret.keys) { secret.keys = secret.key; } // support old hashses
var config = {
websocketURL: Cryptpad.getWebsocketURL(),
channel: secret.channel,
2016-12-22 15:00:13 +00:00
validateKey: secret.keys.validateKey || undefined,
crypto: Crypto.createEncryptor(secret.keys),
logLevel: 0,
};
2016-12-22 15:00:13 +00:00
return config;
};
2016-12-22 15:00:13 +00:00
var isObject = function (o) {
return typeof(o) === 'object';
};
var overwrite = function (a, b) {
if (!(isObject(a) && isObject(b))) { return; }
Object.keys(b).forEach(function (k) { a[k] = b[k]; });
};
var get = function (hash, cb, opt) {
if (typeof(cb) !== 'function') {
throw new Error('Cryptget expects a callback');
}
var Session = { cb: cb, };
var config = makeConfig(hash);
var onReady = config.onReady = function (info) {
2016-12-22 15:00:13 +00:00
var rt = Session.session = info.realtime;
finish(Session, void 0, rt.getUserDoc());
};
2016-12-22 15:00:13 +00:00
overwrite(config, opt);
var realtime = Session.realtime = Realtime.start(config);
};
2016-12-22 15:00:13 +00:00
var put = function (hash, doc, cb, opt) {
if (typeof(cb) !== 'function') {
throw new Error('Cryptput expects a callback');
}
var config = makeConfig(hash);
var Session = { cb: cb, };
config.onReady = function (info) {
var realtime = Session.session = info.realtime;
TextPatcher.create({
realtime: realtime,
})(doc);
realtime.sync();
realtime.abort();
finish(Session, void 0);
};
2016-12-22 15:00:13 +00:00
overwrite(config, opt);
2016-12-22 15:00:13 +00:00
var realtime = Session.session = Realtime.start(config);
};
2016-12-22 15:00:13 +00:00
return {
get: get,
put: put,
};
});