Newer
Older
Shane Tomlinson
committed
/*globals BrowserID:true, _: true, confirm: true, displayEmails: true */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Shane Tomlinson
committed
Shane Tomlinson
committed
"use strict";
Shane Tomlinson
committed
network = bid.Network,
dom = bid.DOM,
Shane Tomlinson
committed
storage = bid.Storage,
helpers = bid.Helpers,
cancelEvent = pageHelpers.cancelEvent,
Shane Tomlinson
committed
tooltip = bid.Tooltip,
authLevel;
function syncAndDisplayEmails(oncomplete) {
displayStoredEmails(oncomplete);
}, pageHelpers.getFailure(errors.syncEmails, oncomplete));
Shane Tomlinson
committed
}
function displayStoredEmails(oncomplete) {
var emails = user.getSortedEmailKeypairs();
if (_.isEmpty(emails)) {
$("#content").hide();
} else {
$("#content").show();
$("#vAlign").hide();
displayEmails(emails);
}
oncomplete && oncomplete();
}
Shane Tomlinson
committed
function removeEmail(email, oncomplete) {
function complete() {
oncomplete && oncomplete();
}
user.syncEmails(function() {
var emails = user.getStoredEmailKeypairs();
if (!emails[email]) {
displayStoredEmails(oncomplete);
Shane Tomlinson
committed
}
else if (_.size(emails) > 1) {
Lloyd Hilaiel
committed
if (confirmAction(format(gettext("Remove %(email) from your BrowserID?"),
{ email: email }))) {
user.removeEmail(email, function() {
displayStoredEmails(oncomplete);
}, pageHelpers.getFailure(errors.removeEmail, oncomplete));
}
else {
complete();
}
else {
Lloyd Hilaiel
committed
if (confirmAction(gettext("Removing the last address will cancel your BrowserID account.\nAre you sure you want to continue?"))) {
user.cancelUser(function() {
doc.location="/";
complete();
}, pageHelpers.getFailure(errors.cancelUser, oncomplete));
}
else {
complete();
}
Shane Tomlinson
committed
}
}, pageHelpers.getFailure(errors.syncEmails, oncomplete));
Shane Tomlinson
committed
}
Shane Tomlinson
committed
function displayEmails(emails) {
var list = $("#emailList").empty();
// Set up to use mustache style templating, the normal Django style blows
Shane Tomlinson
committed
// up the node templates
_.templateSettings = {
interpolate : /\{\{(.+?)\}\}/g
};
var template = $("#templateUser").html();
Shane Tomlinson
committed
_(emails).each(function(item) {
var e = item.address,
identity = _.template(template, { email: e });
Shane Tomlinson
committed
var idEl = $(identity).appendTo(list);
idEl.find(".delete").click(cancelEvent(removeEmail.bind(null, e)));
Shane Tomlinson
committed
});
}
function cancelAccount(oncomplete) {
Lloyd Hilaiel
committed
if (confirmAction(gettext("Are you sure you want to cancel your BrowserID account?"))) {
user.cancelUser(function() {
doc.location="/";
oncomplete && oncomplete();
}, pageHelpers.getFailure(errors.cancelUser, oncomplete));
Shane Tomlinson
committed
function startEdit(event) {
// XXX add some helpers in the dom library to find section.
event.preventDefault();
$(event.target).closest("section").addClass("edit");
Shane Tomlinson
committed
function cancelEdit(event) {
event.preventDefault();
$(event.target).closest("section").removeClass("edit");
}
function changePassword(oncomplete) {
var oldPassword = dom.getInner("#old_password"),
newPassword = dom.getInner("#new_password");
function complete(status) {
typeof oncomplete == "function" && oncomplete(status);
}
Shane Tomlinson
committed
function changePassword() {
user.changePassword(oldPassword, newPassword, function(status) {
if(status) {
dom.removeClass("#edit_password", "edit");
dom.setInner("#old_password", "");
dom.setInner("#new_password", "");
Shane Tomlinson
committed
}
else {
tooltip.showTooltip("#tooltipInvalidPassword");
}
complete(status);
}, pageHelpers.getFailure(errors.updatePassword, oncomplete));
}
if(!oldPassword) {
tooltip.showTooltip("#tooltipOldRequired");
complete(false);
}
else if(!newPassword) {
tooltip.showTooltip("#tooltipNewRequired");
complete(false);
}
else if(newPassword === oldPassword) {
tooltip.showTooltip("#tooltipPasswordsSame");
complete(false);
}
else if(newPassword.length < bid.PASSWORD_MIN_LENGTH || bid.PASSWORD_MAX_LENGTH < newPassword.length) {
Shane Tomlinson
committed
tooltip.showTooltip("#tooltipPasswordLength");
complete(false);
}
Shane Tomlinson
committed
else if(authLevel !== "password") {
var email = getSecondary();
// go striaght to the network level instead of user level so that if
// the user gets the password wrong, we don't clear their info.
network.authenticate(email, oldPassword, function(status) {
Shane Tomlinson
committed
authLevel = "password";
changePassword();
}
else {
tooltip.showTooltip("#tooltipInvalidPassword");
Shane Tomlinson
committed
complete(false);
Shane Tomlinson
committed
}, pageHelpers.getFailure(errors.authenticate, oncomplete));
}
else {
changePassword();
Shane Tomlinson
committed
Shane Tomlinson
committed
function displayHelpTextToNewUser() {
var newUser = !storage.manage_page.get("has_visited_manage_page");
dom[newUser ? "addClass" : "removeClass"]("body", "newuser");
storage.manage_page.set("has_visited_manage_page", true);
}
Shane Tomlinson
committed
function displayChangePassword(oncomplete) {
Shane Tomlinson
committed
var canSetPassword = !!getSecondary();
dom[canSetPassword ? "addClass" : "removeClass"]("body", "canSetPassword");
oncomplete && oncomplete();
}
function getSecondary() {
var emails = storage.getEmails();
for(var key in emails) {
if(emails[key].type === "secondary") {
return key;
}
}
Shane Tomlinson
committed
}
function init(options, oncomplete) {
options = options || {};
if (options.document) doc = options.document;
if (options.confirm) confirmAction = options.confirm;
var template = new EJS({ text: $("#templateManage").html() });
var manage = template.render({});
$("#hAlign").after(manage);
dom.bindEvent("#cancelAccount", "click", cancelEvent(cancelAccount));
dom.bindEvent("button.edit", "click", startEdit);
dom.bindEvent("button.done", "click", cancelEdit);
dom.bindEvent("#edit_password_form", "submit", cancelEvent(changePassword));
Shane Tomlinson
committed
Shane Tomlinson
committed
user.checkAuthentication(function(auth_level) {
authLevel = auth_level;
syncAndDisplayEmails(function() {
displayHelpTextToNewUser();
displayChangePassword(oncomplete);
});
}, pageHelpers.getFailure(errors.checkAuthentication, oncomplete));
// BEGIN TESTING API
dom.unbindEvent("#cancelAccount", "click");
dom.unbindEvent("button.edit", "click");
dom.unbindEvent("button.done", "click");
dom.unbindEvent("#edit_password_form", "submit");
}
init.reset = reset;
init.cancelAccount = cancelAccount;
init.removeEmail = removeEmail;
init.changePassword = changePassword;
// END TESTING API