250 lines
10 KiB
JavaScript
250 lines
10 KiB
JavaScript
define([
|
|
'jquery',
|
|
'/common/login.js',
|
|
'/common/cryptpad-common.js',
|
|
'/common/test.js',
|
|
'/common/credential.js', // preloaded for login.js
|
|
'/common/common-interface.js',
|
|
'/common/common-util.js',
|
|
|
|
'less!/bower_components/components-font-awesome/css/font-awesome.min.css',
|
|
], function ($, Login, Cryptpad, Test, Cred, UI, Util) {
|
|
var Messages = Cryptpad.Messages;
|
|
|
|
$(function () {
|
|
var $main = $('#mainBlock');
|
|
|
|
// main block is hidden in case javascript is disabled
|
|
$main.removeClass('hidden');
|
|
|
|
// Make sure we don't display non-translated content (empty button)
|
|
$main.find('#data').removeClass('hidden');
|
|
|
|
if (Cryptpad.isLoggedIn()) {
|
|
// already logged in, redirect to drive
|
|
document.location.href = '/drive/';
|
|
return;
|
|
} else {
|
|
$main.find('#userForm').removeClass('hidden');
|
|
}
|
|
|
|
// text and password input fields
|
|
var $uname = $('#username');
|
|
var $passwd = $('#password');
|
|
var $confirm = $('#password-confirm');
|
|
|
|
if (sessionStorage.login_user) {
|
|
$uname.val(sessionStorage.login_user);
|
|
}
|
|
if (sessionStorage.login_pass) {
|
|
$passwd.val(sessionStorage.login_pass);
|
|
}
|
|
|
|
[ $uname, $passwd, $confirm]
|
|
.some(function ($el) { if (!$el.val()) { $el.focus(); return true; } });
|
|
|
|
// checkboxes
|
|
var $checkImport = $('#import-recent');
|
|
var $checkAcceptTerms = $('#accept-terms');
|
|
|
|
var $register = $('button#register');
|
|
|
|
var registering = false;
|
|
var logMeIn = function (result) {
|
|
if (Test.testing) {
|
|
Test.passed();
|
|
window.alert("Test passed!");
|
|
return;
|
|
}
|
|
localStorage.User_hash = result.userHash;
|
|
|
|
var proxy = result.proxy;
|
|
proxy.edPublic = result.edPublic;
|
|
proxy.edPrivate = result.edPrivate;
|
|
proxy.curvePublic = result.curvePublic;
|
|
proxy.curvePrivate = result.curvePrivate;
|
|
|
|
Cryptpad.feedback('REGISTRATION', true);
|
|
|
|
Cryptpad.whenRealtimeSyncs(result.realtime, function () {
|
|
Cryptpad.login(result.userHash, result.userName, function () {
|
|
registering = false;
|
|
if (sessionStorage.redirectTo) {
|
|
var h = sessionStorage.redirectTo;
|
|
var parser = document.createElement('a');
|
|
parser.href = h;
|
|
if (parser.origin === window.location.origin) {
|
|
delete sessionStorage.redirectTo;
|
|
window.location.href = h;
|
|
return;
|
|
}
|
|
}
|
|
window.location.href = '/drive/';
|
|
});
|
|
});
|
|
};
|
|
|
|
$register.click(function () {
|
|
if (registering) {
|
|
console.log("registration is already in progress");
|
|
return;
|
|
}
|
|
|
|
var uname = $uname.val();
|
|
var passwd = $passwd.val();
|
|
var confirmPassword = $confirm.val();
|
|
|
|
var shouldImport = $checkImport[0].checked;
|
|
var doesAccept = $checkAcceptTerms[0].checked;
|
|
|
|
/* basic validation */
|
|
if (!Cred.isLongEnoughPassword(passwd)) {
|
|
var warning = Messages._getKey('register_passwordTooShort', [
|
|
Cred.MINIMUM_PASSWORD_LENGTH
|
|
]);
|
|
return void UI.alert(warning, function () {
|
|
registering = false;
|
|
});
|
|
}
|
|
|
|
if (passwd !== confirmPassword) { // do their passwords match?
|
|
return void UI.alert(Messages.register_passwordsDontMatch);
|
|
}
|
|
|
|
if (!doesAccept) { // do they accept the terms of service?
|
|
return void UI.alert(Messages.register_mustAcceptTerms);
|
|
}
|
|
|
|
setTimeout(function () {
|
|
UI.confirm("<h2 class='bright msg'>" + Messages.register_warning + "</h2>",
|
|
function (yes) {
|
|
if (!yes) { return; }
|
|
|
|
registering = true;
|
|
// setTimeout 100ms to remove the keyboard on mobile devices before the loading screen pops up
|
|
window.setTimeout(function () {
|
|
UI.addLoadingScreen({
|
|
loadingText: Messages.login_hashing,
|
|
hideTips: true,
|
|
});
|
|
// We need a setTimeout(cb, 0) otherwise the loading screen is only displayed after hashing the password
|
|
window.setTimeout(function () {
|
|
Login.loginOrRegister(uname, passwd, true, function (err, result) {
|
|
var proxy;
|
|
if (result) { proxy = result.proxy; }
|
|
|
|
if (err) {
|
|
switch (err) {
|
|
case 'NO_SUCH_USER':
|
|
UI.removeLoadingScreen(function () {
|
|
UI.alert(Messages.login_noSuchUser, function () {
|
|
registering = false;
|
|
});
|
|
});
|
|
break;
|
|
case 'INVAL_USER':
|
|
UI.removeLoadingScreen(function () {
|
|
UI.alert(Messages.login_invalUser, function () {
|
|
registering = false;
|
|
});
|
|
});
|
|
break;
|
|
case 'INVAL_PASS':
|
|
UI.removeLoadingScreen(function () {
|
|
UI.alert(Messages.login_invalPass, function () {
|
|
registering = false;
|
|
});
|
|
});
|
|
break;
|
|
case 'PASS_TOO_SHORT':
|
|
UI.removeLoadingScreen(function () {
|
|
var warning = Messages._getKey('register_passwordTooShort', [
|
|
Cred.MINIMUM_PASSWORD_LENGTH
|
|
]);
|
|
UI.alert(warning, function () {
|
|
registering = false;
|
|
});
|
|
});
|
|
break;
|
|
case 'ALREADY_REGISTERED':
|
|
// logMeIn should reset registering = false
|
|
UI.removeLoadingScreen(function () {
|
|
UI.confirm(Messages.register_alreadyRegistered, function (yes) {
|
|
if (!yes) { return; }
|
|
proxy.login_name = uname;
|
|
|
|
if (!proxy[Cryptpad.displayNameKey]) {
|
|
proxy[Cryptpad.displayNameKey] = uname;
|
|
}
|
|
Cryptpad.eraseTempSessionValues();
|
|
logMeIn(result);
|
|
});
|
|
});
|
|
break;
|
|
default: // UNHANDLED ERROR
|
|
registering = false;
|
|
UI.errorLoadingScreen(Messages.login_unhandledError);
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (Test.testing) { return void logMeIn(result); }
|
|
|
|
Cryptpad.eraseTempSessionValues();
|
|
if (shouldImport) {
|
|
sessionStorage.migrateAnonDrive = 1;
|
|
}
|
|
|
|
proxy.login_name = uname;
|
|
proxy[Cryptpad.displayNameKey] = uname;
|
|
sessionStorage.createReadme = 1;
|
|
|
|
logMeIn(result);
|
|
});
|
|
}, 0);
|
|
}, 200);
|
|
}, {
|
|
ok: Messages.register_writtenPassword,
|
|
cancel: Messages.register_cancel,
|
|
cancelClass: 'safe',
|
|
okClass: 'danger',
|
|
reverseOrder: true,
|
|
done: function ($dialog) {
|
|
$dialog.find('> div').addClass('half');
|
|
},
|
|
}, true);
|
|
}, 150);
|
|
});
|
|
|
|
var clickRegister = Util.notAgainForAnother(function () {
|
|
$register.click();
|
|
}, 500);
|
|
|
|
$register.on('keypress', function (e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
|
|
console.error(e.which);
|
|
switch (e.which) {
|
|
case 13: return clickRegister();
|
|
case 13: return clickRegister();
|
|
default:
|
|
//console.log(e.which);
|
|
}
|
|
});
|
|
|
|
Test(function () {
|
|
$uname.val('test' + Math.random());
|
|
$passwd.val('testtest');
|
|
$confirm.val('testtest');
|
|
$checkImport[0].checked = true;
|
|
$checkAcceptTerms[0].checked = true;
|
|
$register.click();
|
|
|
|
window.setTimeout(function () {
|
|
UI.findOKButton().click();
|
|
}, 1000);
|
|
});
|
|
});
|
|
});
|