cryptpad/customize.dist/four-oh-four.js

90 lines
2.8 KiB
JavaScript
Raw Normal View History

2017-11-30 18:17:59 +00:00
define([
2018-01-23 14:53:00 +00:00
'jquery',
'/api/config',
2017-11-30 18:17:59 +00:00
'/common/hyperscript.js',
'/common/outer/local-store.js',
'/customize/messages.js',
2017-11-30 18:17:59 +00:00
'less!/customize/src/less2/pages/page-404.less',
2018-01-23 14:53:00 +00:00
], function ($, Config, h, LocalStore, Messages) {
var urlArgs = Config.requireConf.urlArgs;
var img = h('img#cp-logo', {
2020-10-28 11:16:59 +00:00
src: '/customize/CryptPad_logo_grey.svg?' + urlArgs
});
2022-03-22 11:08:42 +00:00
var is500 = Boolean(document.querySelector('#five-hundred'));
var brand = h('h1#cp-brand', 'CryptPad');
// Msg.fivehundred_internalServerError.four04_pageNotFound
2022-03-22 11:08:42 +00:00
var message = h('h2#cp-scramble', Messages[is500? 'fivehundred_internalServerError':'four04_pageNotFound']);
var title = h('h2#cp-title', is500? "500":"404");
var loggedIn = LocalStore.isLoggedIn();
var link = h('a#cp-link', {
href: loggedIn? '/drive/': '/',
2017-12-04 17:31:07 +00:00
}, loggedIn? Messages.header_logoTitle: Messages.header_homeTitle);
2018-01-23 14:53:00 +00:00
if (Config.httpUnsafeOrigin && Config.httpUnsafeOrigin !== window.location.origin
&& window.parent) {
$(link).click(function (e) {
e.preventDefault();
window.parent.location = Config.httpUnsafeOrigin + $(link).attr('href').slice(1);
});
}
2017-11-30 18:17:59 +00:00
var content = h('div#cp-main', [
img,
brand,
2017-11-30 18:17:59 +00:00
title,
message,
link,
2017-11-30 18:17:59 +00:00
]);
document.body.appendChild(content);
var die = function (n) { return Math.floor(Math.random() * n); };
var randomChar = function () {
return String.fromCharCode(die(94) + 34);
};
var mutate = function (S, i, c) {
var A = S.split("");
A[i] = c;
return A.join("");
};
var take = function (A) {
var n = die(A.length);
var choice = A[n];
A.splice(n, 1);
return choice;
};
var makeDecryptor = function (el, t, difficulty, cb) {
var Orig = el.innerText;
var options = [];
el.innerText = el.innerText.split("").map(function (c, i) {
Orig[i] = c;
options.push(i);
return randomChar();
}).join("");
return function f () {
if (die(difficulty) === 0) {
var choice = take(options);
el.innerText = mutate(el.innerText, choice, Orig.charAt(choice));
} else { // make a superficial change
el.innerText = mutate(el.innerText,
options[die(options.length)],
randomChar());
}
setTimeout(options.length > 0? f: cb, t);
};
};
makeDecryptor(brand, 70, 2, function () { })();
makeDecryptor(title, 50, 14, function () { })();
makeDecryptor(link, 20, 4, function () {})();
makeDecryptor(message, 12, 3, function () {
2017-11-30 18:17:59 +00:00
console.log('done');
})();
});