You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
194 lines
7.4 KiB
JavaScript
194 lines
7.4 KiB
JavaScript
define([
|
|
'jquery',
|
|
'/customize/application_config.js',
|
|
'/common/cryptpad-common.js',
|
|
'/customize/header.js',
|
|
], function ($, Config, Cryptpad) {
|
|
|
|
window.APP = {
|
|
Cryptpad: Cryptpad,
|
|
};
|
|
|
|
var Messages = Cryptpad.Messages;
|
|
|
|
$(function () {
|
|
var $main = $('#mainBlock');
|
|
|
|
$(window).click(function () {
|
|
$('.cp-dropdown-content').hide();
|
|
});
|
|
|
|
// 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()) {
|
|
if (window.location.pathname === '/') {
|
|
window.location = '/drive/';
|
|
return;
|
|
}
|
|
|
|
$main.find('a[href="/drive/"] div.pad-button-text h4')
|
|
.text(Messages.main_yourCryptDrive);
|
|
|
|
var name = localStorage[Cryptpad.userNameKey] || sessionStorage[Cryptpad.userNameKey];
|
|
var $loggedInBlock = $main.find('#loggedIn');
|
|
var $hello = $loggedInBlock.find('#loggedInHello');
|
|
var $logout = $loggedInBlock.find('#loggedInLogOut');
|
|
|
|
if (name) {
|
|
$hello.text(Messages._getKey('login_hello', [name]));
|
|
} else {
|
|
$hello.text(Messages.login_helloNoName);
|
|
}
|
|
$('#buttons').find('.nologin').hide();
|
|
|
|
$logout.click(function () {
|
|
Cryptpad.logout(function () {
|
|
window.location.reload();
|
|
});
|
|
});
|
|
|
|
$loggedInBlock.removeClass('hidden');
|
|
}
|
|
else {
|
|
$main.find('#userForm').removeClass('hidden');
|
|
$('#name').focus();
|
|
}
|
|
|
|
var displayCreateButtons = function () {
|
|
var $parent = $('#buttons');
|
|
var options = [];
|
|
var $container = $('<div>', {'class': 'cp-dropdown-container'}).appendTo($parent);
|
|
Config.availablePadTypes.forEach(function (el) {
|
|
if (el === 'drive') { return; }
|
|
if (!Cryptpad.isLoggedIn() && Config.registeredOnlyTypes &&
|
|
Config.registeredOnlyTypes.indexOf(el) !== -1) { return; }
|
|
options.push({
|
|
tag: 'a',
|
|
attributes: {
|
|
'class': 'newdoc',
|
|
'href': '/' + el + '/',
|
|
'target': '_blank'
|
|
},
|
|
content: Messages['button_new' + el] // Pretty name of the language value
|
|
});
|
|
});
|
|
var dropdownConfig = {
|
|
text: Messages.login_makeAPad, // Button initial text
|
|
options: options, // Entries displayed in the menu
|
|
container: $container
|
|
};
|
|
var $block = Cryptpad.createDropdown(dropdownConfig);
|
|
$block.find('button').addClass('btn').addClass('btn-primary');
|
|
$block.appendTo($parent);
|
|
};
|
|
|
|
/* Log in UI */
|
|
var Login;
|
|
// deferred execution to avoid unnecessary asset loading
|
|
var loginReady = function (cb) {
|
|
if (Login) {
|
|
if (typeof(cb) === 'function') { cb(); }
|
|
return;
|
|
}
|
|
require([
|
|
'/common/login.js',
|
|
], function (_Login) {
|
|
Login = Login || _Login;
|
|
if (typeof(cb) === 'function') { cb(); }
|
|
});
|
|
};
|
|
|
|
var $uname = $('#name').on('focus', loginReady);
|
|
|
|
var $passwd = $('#password')
|
|
// background loading of login assets
|
|
.on('focus', loginReady)
|
|
// enter key while on password field clicks signup
|
|
.on('keyup', function (e) {
|
|
if (e.which !== 13) { return; } // enter
|
|
$('button.login').click();
|
|
});
|
|
|
|
$('button.login').click(function () {
|
|
// setTimeout 100ms to remove the keyboard on mobile devices before the loading screen pops up
|
|
window.setTimeout(function () {
|
|
Cryptpad.addLoadingScreen({loadingText: Messages.login_hashing});
|
|
// We need a setTimeout(cb, 0) otherwise the loading screen is only displayed after hashing the password
|
|
window.setTimeout(function () {
|
|
loginReady(function () {
|
|
var uname = $uname.val();
|
|
var passwd = $passwd.val();
|
|
Login.loginOrRegister(uname, passwd, false, function (err, result) {
|
|
if (!err) {
|
|
var proxy = result.proxy;
|
|
|
|
// successful validation and user already exists
|
|
// set user hash in localStorage and redirect to drive
|
|
if (proxy && !proxy.login_name) {
|
|
proxy.login_name = result.userName;
|
|
}
|
|
|
|
proxy.edPrivate = result.edPrivate;
|
|
proxy.edPublic = result.edPublic;
|
|
|
|
Cryptpad.whenRealtimeSyncs(result.realtime, function () {
|
|
Cryptpad.login(result.userHash, result.userName, function () {
|
|
document.location.href = '/drive/';
|
|
});
|
|
});
|
|
return;
|
|
}
|
|
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);
|
|
}
|
|
});
|
|
});
|
|
}, 0);
|
|
}, 100);
|
|
});
|
|
/* End Log in UI */
|
|
|
|
var addButtonHandlers = function () {
|
|
$('button.register').click(function () {
|
|
var username = $('#name').val();
|
|
var passwd = $('#password').val();
|
|
sessionStorage.login_user = username;
|
|
sessionStorage.login_pass = passwd;
|
|
document.location.href = '/register/';
|
|
});
|
|
$('button.gotodrive').click(function () {
|
|
document.location.href = '/drive/';
|
|
});
|
|
|
|
$('button#loggedInLogout').click(function () {
|
|
$('#user-menu .logout').click();
|
|
});
|
|
};
|
|
|
|
displayCreateButtons();
|
|
|
|
addButtonHandlers();
|
|
console.log("ready");
|
|
});
|
|
});
|