Fix race conditon
This commit is contained in:
parent
94417d9a8b
commit
dd014f6ef2
@ -16,12 +16,13 @@ define([
|
|||||||
|
|
||||||
var $ = window.jQuery;
|
var $ = window.jQuery;
|
||||||
var saveAs = window.saveAs;
|
var saveAs = window.saveAs;
|
||||||
|
|
||||||
|
// Use `$(function () {});` to make sure the html is loaded before doing anything else
|
||||||
|
$(function () {
|
||||||
|
|
||||||
var $iframe = $('#pad-iframe').contents();
|
var $iframe = $('#pad-iframe').contents();
|
||||||
var ifrw = $('#pad-iframe')[0].contentWindow;
|
var ifrw = $('#pad-iframe')[0].contentWindow;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Cryptpad.addLoadingScreen();
|
Cryptpad.addLoadingScreen();
|
||||||
var onConnectError = function (info) {
|
var onConnectError = function (info) {
|
||||||
Cryptpad.errorLoadingScreen(Messages.websocketError);
|
Cryptpad.errorLoadingScreen(Messages.websocketError);
|
||||||
@ -2032,5 +2033,5 @@ define([
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@ -39,101 +39,101 @@ define([
|
|||||||
} else {
|
} else {
|
||||||
$main.find('#userForm').removeClass('hidden');
|
$main.find('#userForm').removeClass('hidden');
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
// text and password input fields
|
// text and password input fields
|
||||||
var $uname = $('#username');
|
var $uname = $('#username');
|
||||||
var $passwd = $('#password');
|
var $passwd = $('#password');
|
||||||
var $confirm = $('#password-confirm');
|
var $confirm = $('#password-confirm');
|
||||||
|
|
||||||
if (sessionStorage.login_user) {
|
if (sessionStorage.login_user) {
|
||||||
$uname.val(sessionStorage.login_user);
|
$uname.val(sessionStorage.login_user);
|
||||||
}
|
}
|
||||||
if (sessionStorage.login_pass) {
|
if (sessionStorage.login_pass) {
|
||||||
$passwd.val(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 $checkPromise = $('#promise');
|
|
||||||
|
|
||||||
var $register = $('button#register');
|
|
||||||
|
|
||||||
$register.click(function () {
|
|
||||||
var uname = $uname.val();
|
|
||||||
var passwd = $passwd.val();
|
|
||||||
var confirmPassword = $confirm.val();
|
|
||||||
|
|
||||||
var shouldImport = $checkImport[0].checked;
|
|
||||||
var doesAccept = $checkAcceptTerms[0].checked;
|
|
||||||
var doesPromise = $checkPromise[0].checked;
|
|
||||||
|
|
||||||
/* basic validation */
|
|
||||||
if (passwd !== confirmPassword) { // do their passwords match?
|
|
||||||
return void Cryptpad.alert(Messages.register_passwordsDontMatch);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!doesAccept) { // do they accept the terms of service?
|
[ $uname, $passwd, $confirm]
|
||||||
return void Cryptpad.alert(Messages.register_mustAcceptTerms);
|
.some(function ($el) { if (!$el.val()) { $el.focus(); return true; } });
|
||||||
}
|
|
||||||
|
|
||||||
if (!doesPromise) { // do they promise to remember their password?
|
// checkboxes
|
||||||
return void Cryptpad.alert(Messages.register_mustRememberPass);
|
var $checkImport = $('#import-recent');
|
||||||
}
|
var $checkAcceptTerms = $('#accept-terms');
|
||||||
|
var $checkPromise = $('#promise');
|
||||||
|
|
||||||
Cryptpad.addLoadingScreen(Messages.login_hashing);
|
var $register = $('button#register');
|
||||||
Login.loginOrRegister(uname, passwd, true, function (err, result) {
|
|
||||||
if (err) {
|
|
||||||
switch (err) {
|
|
||||||
case 'NO_SUCH_USER':
|
|
||||||
Cryptpad.removeLoadingScreen(function () {
|
|
||||||
Cryptpad.alert(Messages.login_noSuchUser);
|
|
||||||
});
|
|
||||||
break;
|
|
||||||
case 'INVAL_USER':
|
|
||||||
Cryptpad.removeLoadingScreen(function () {
|
|
||||||
Cryptpad.alert(Messages.login_invalUser);
|
|
||||||
});
|
|
||||||
break;
|
|
||||||
case 'INVAL_PASS':
|
|
||||||
Cryptpad.removeLoadingScreen(function () {
|
|
||||||
Cryptpad.alert(Messages.login_invalPass);
|
|
||||||
});
|
|
||||||
break;
|
|
||||||
default: // UNHANDLED ERROR
|
|
||||||
Cryptpad.errorLoadingScreen(Messages.login_unhandledError);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var proxy = result.proxy;
|
|
||||||
|
|
||||||
localStorage.User_hash = result.userHash;
|
$register.click(function () {
|
||||||
|
var uname = $uname.val();
|
||||||
|
var passwd = $passwd.val();
|
||||||
|
var confirmPassword = $confirm.val();
|
||||||
|
|
||||||
Cryptpad.eraseTempSessionValues();
|
var shouldImport = $checkImport[0].checked;
|
||||||
if (shouldImport) {
|
var doesAccept = $checkAcceptTerms[0].checked;
|
||||||
sessionStorage.migrateAnonDrive = 1;
|
var doesPromise = $checkPromise[0].checked;
|
||||||
|
|
||||||
|
/* basic validation */
|
||||||
|
if (passwd !== confirmPassword) { // do their passwords match?
|
||||||
|
return void Cryptpad.alert(Messages.register_passwordsDontMatch);
|
||||||
}
|
}
|
||||||
|
|
||||||
proxy.login_name = uname;
|
if (!doesAccept) { // do they accept the terms of service?
|
||||||
proxy[Cryptpad.displayNameKey] = uname;
|
return void Cryptpad.alert(Messages.register_mustAcceptTerms);
|
||||||
proxy.initializing = true;
|
}
|
||||||
|
|
||||||
Cryptpad.whenRealtimeSyncs(result.realtime, function () {
|
if (!doesPromise) { // do they promise to remember their password?
|
||||||
Cryptpad.login(result.userHash, result.userName, function () {
|
return void Cryptpad.alert(Messages.register_mustRememberPass);
|
||||||
if (sessionStorage.redirectTo) {
|
}
|
||||||
var h = sessionStorage.redirectTo;
|
|
||||||
var parser = document.createElement('a');
|
Cryptpad.addLoadingScreen(Messages.login_hashing);
|
||||||
parser.href = h;
|
Login.loginOrRegister(uname, passwd, true, function (err, result) {
|
||||||
if (parser.origin === window.location.origin) {
|
if (err) {
|
||||||
delete sessionStorage.redirectTo;
|
switch (err) {
|
||||||
window.location.href = h;
|
case 'NO_SUCH_USER':
|
||||||
return;
|
Cryptpad.removeLoadingScreen(function () {
|
||||||
}
|
Cryptpad.alert(Messages.login_noSuchUser);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case 'INVAL_USER':
|
||||||
|
Cryptpad.removeLoadingScreen(function () {
|
||||||
|
Cryptpad.alert(Messages.login_invalUser);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case 'INVAL_PASS':
|
||||||
|
Cryptpad.removeLoadingScreen(function () {
|
||||||
|
Cryptpad.alert(Messages.login_invalPass);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
default: // UNHANDLED ERROR
|
||||||
|
Cryptpad.errorLoadingScreen(Messages.login_unhandledError);
|
||||||
}
|
}
|
||||||
window.location.href = '/drive/';
|
}
|
||||||
|
var proxy = result.proxy;
|
||||||
|
|
||||||
|
localStorage.User_hash = result.userHash;
|
||||||
|
|
||||||
|
Cryptpad.eraseTempSessionValues();
|
||||||
|
if (shouldImport) {
|
||||||
|
sessionStorage.migrateAnonDrive = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
proxy.login_name = uname;
|
||||||
|
proxy[Cryptpad.displayNameKey] = uname;
|
||||||
|
proxy.initializing = true;
|
||||||
|
|
||||||
|
Cryptpad.whenRealtimeSyncs(result.realtime, function () {
|
||||||
|
Cryptpad.login(result.userHash, result.userName, function () {
|
||||||
|
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/';
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user