mirror of https://github.com/xwiki-labs/cryptpad
148 lines
5.9 KiB
JavaScript
148 lines
5.9 KiB
JavaScript
// SPDX-FileCopyrightText: 2023 XWiki CryptPad Team <contact@cryptpad.org> and contributors
|
||
//
|
||
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
||
// Load #1, load as little as possible because we are in a race to get the loading screen up.
|
||
define([
|
||
'/components/nthen/index.js',
|
||
'/api/config',
|
||
'jquery',
|
||
'/common/requireconfig.js',
|
||
//'/customize/messages.js',
|
||
], function (nThen, ApiConfig, $, RequireConfig /*, Messages */) {
|
||
var requireConfig = RequireConfig();
|
||
|
||
var ready = false;
|
||
|
||
var create = function (config) {
|
||
// Loaded in load #2
|
||
var sframeChan;
|
||
nThen(function (waitFor) {
|
||
$(waitFor());
|
||
}).nThen(function (waitFor) {
|
||
var req = {
|
||
cfg: requireConfig,
|
||
req: [ '/common/loading.js' ],
|
||
pfx: window.location.origin,
|
||
};
|
||
window.rc = requireConfig;
|
||
window.apiconf = ApiConfig;
|
||
$('#sbox-unsafe-iframe').attr('src',
|
||
ApiConfig.httpUnsafeOrigin + '/unsafeiframe/inner.html?' + requireConfig.urlArgs +
|
||
'#' + encodeURIComponent(JSON.stringify(req))).attr("sandbox", "");
|
||
|
||
// This is a cheap trick to avoid loading sframe-channel in parallel with the
|
||
// loading screen setup.
|
||
var done = waitFor();
|
||
var onMsg = function (msg) {
|
||
if (!msg || !msg.data) { return; }
|
||
var data;
|
||
try {
|
||
data = typeof(msg.data) === "object" ? msg.data : JSON.parse(msg.data);
|
||
} catch (err) {
|
||
console.error(err);
|
||
console.info(msg);
|
||
return;
|
||
}
|
||
|
||
if (!data || data.q !== 'READY') { return; }
|
||
window.removeEventListener('message', onMsg);
|
||
var _done = done;
|
||
done = function () { };
|
||
_done();
|
||
};
|
||
window.addEventListener('message', onMsg);
|
||
}).nThen(function (/*waitFor*/) {
|
||
var Cryptpad = config.modules.Cryptpad;
|
||
var Utils = config.modules.Utils;
|
||
|
||
nThen(function (waitFor) {
|
||
// The inner iframe tries to get some data from us every ms (cache, store...).
|
||
// It will send a "READY" message and wait for our answer with the correct txid.
|
||
// First, we have to answer to this message, otherwise we're going to block
|
||
// sframe-boot.js. Then we can start the channel.
|
||
var msgEv = Utils.Util.mkEvent();
|
||
var iframe = $('#sbox-unsafe-iframe')[0].contentWindow;
|
||
var postMsg = function (data) {
|
||
iframe.postMessage(data, ApiConfig.httpUnsafeOrigin);
|
||
};
|
||
var w = waitFor();
|
||
var whenReady = function (msg) {
|
||
if (msg.source !== iframe) { return; }
|
||
var data = JSON.parse(msg.data);
|
||
if (!data.txid) { return; }
|
||
// Remove the listener once we've received the READY message
|
||
window.removeEventListener('message', whenReady);
|
||
// Answer with the requested data
|
||
postMsg(JSON.stringify({ txid: data.txid, language: Cryptpad.getLanguage(), localStore: window.localStore, cache: window.cpCache }));
|
||
|
||
// Then start the channel
|
||
window.addEventListener('message', function (msg) {
|
||
if (msg.source !== iframe) { return; }
|
||
msgEv.fire(msg);
|
||
});
|
||
config.modules.SFrameChannel.create(msgEv, postMsg, waitFor(function (sfc) {
|
||
sframeChan = sfc;
|
||
}));
|
||
w();
|
||
};
|
||
window.addEventListener('message', whenReady);
|
||
}).nThen(function () {
|
||
var updateMeta = function () {
|
||
var metaObj;
|
||
nThen(function (waitFor) {
|
||
Cryptpad.getMetadata(waitFor(function (err, n) {
|
||
if (err) {
|
||
waitFor.abort();
|
||
return void console.log(err);
|
||
}
|
||
metaObj = n;
|
||
}));
|
||
}).nThen(function (/*waitFor*/) {
|
||
metaObj.doc = {};
|
||
var additionalPriv = {
|
||
fileHost: ApiConfig.fileHost,
|
||
loggedIn: Utils.LocalStore.isLoggedIn(),
|
||
origin: window.location.origin,
|
||
pathname: window.location.pathname,
|
||
feedbackAllowed: Utils.Feedback.state,
|
||
};
|
||
for (var k in additionalPriv) { metaObj.priv[k] = additionalPriv[k]; }
|
||
|
||
sframeChan.event('EV_METADATA_UPDATE', metaObj);
|
||
});
|
||
};
|
||
Cryptpad.onMetadataChanged(updateMeta);
|
||
sframeChan.onReg('EV_METADATA_UPDATE', updateMeta);
|
||
|
||
config.addCommonRpc(sframeChan, true);
|
||
|
||
sframeChan.onReady(function () {
|
||
if (ready === true) { return; }
|
||
if (typeof ready === "function") {
|
||
ready();
|
||
}
|
||
ready = true;
|
||
});
|
||
});
|
||
});
|
||
var refresh = function (data, cb) {
|
||
if (!ready) {
|
||
ready = function () {
|
||
refresh(data, cb);
|
||
};
|
||
return;
|
||
}
|
||
sframeChan.query('Q_COMMAND', data, function (err, obj) {
|
||
cb(obj);
|
||
}, {raw: true});
|
||
};
|
||
return {
|
||
refresh: refresh
|
||
};
|
||
};
|
||
return {
|
||
create: create
|
||
};
|
||
});
|