cryptpad/www/debug/main.js

55 lines
1.8 KiB
JavaScript
Raw Normal View History

2017-11-21 16:37:38 +00:00
// Load #1, load as little as possible because we are in a race to get the loading screen up.
define([
'/components/nthen/index.js',
2017-11-21 16:37:38 +00:00
'/api/config',
'jquery',
'/common/requireconfig.js',
'/common/sframe-common-outer.js',
'/common/cryptpad-common.js',
'/common/common-util.js',
'/common/common-hash.js',
'/common/common-realtime.js',
'/common/common-constants.js',
'/common/common-interface.js',
], function (nThen, ApiConfig, $, RequireConfig, SFCommonO,
Cryptpad, Util, Hash, Realtime, Constants, UI) {
if (window.top !== window) {
return void window.alert(`If you are seeing this message then somebody might be trying to compromise your CryptPad account. Please contact the CryptPad development team.`);
}
2017-11-21 16:37:38 +00:00
window.Cryptpad = {
Common: Cryptpad,
Util: Util,
Hash: Hash,
Realtime: Realtime,
Constants: Constants,
UI: UI
};
// Loaded in load #2
nThen(function (waitFor) {
$(waitFor());
2020-12-07 15:21:45 +00:00
}).nThen(function (waitFor) {
SFCommonO.initIframe(waitFor);
2017-11-21 16:37:38 +00:00
}).nThen(function (/*waitFor*/) {
var hash = localStorage[Constants.userHashKey] || localStorage[Constants.fileHashKey];
2019-02-25 17:43:32 +00:00
var drive = hash && ('#'+hash === window.location.hash);
2019-02-19 13:31:05 +00:00
if (!window.location.hash) {
2019-02-25 17:43:32 +00:00
drive = true;
window.location.hash = hash;
} else {
var p = Hash.parsePadUrl('/debug/'+window.location.hash);
if (p && p.hashData && p.hashData.app === 'drive') {
drive = true;
}
2019-02-19 13:31:05 +00:00
}
2019-02-25 17:43:32 +00:00
var addData = function (meta) {
meta.debugDrive = drive;
};
SFCommonO.start({
2021-03-19 14:09:28 +00:00
noDrive: true,
2019-02-25 17:43:32 +00:00
addData:addData
});
2017-11-21 16:37:38 +00:00
});
});