Newer
Older
/*globals BrowserID: true, _: true, confirm: true, format: true, gettext: true, EJS: 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) {
if (confirmAction(format(gettext("Remove %(email) from your Persona account?"),
Lloyd Hilaiel
committed
{ email: email }))) {
user.removeEmail(email, function() {
displayStoredEmails(oncomplete);
}, pageHelpers.getFailure(errors.removeEmail, oncomplete));
}
else {
complete();
}
else {
if (confirmAction(gettext("Removing the last address will cancel your Persona 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) {
if (confirmAction(gettext("Are you sure you want to cancel your Persona 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(oldPassword.length < bid.PASSWORD_MIN_LENGTH || bid.PASSWORD_MAX_LENGTH < oldPassword.length) {
// If the old password is out of range, we know it is invalid. Show the
// tooltip. See issue #2121
// - https://github.com/mozilla/browserid/issues/2121
tooltip.showTooltip("#tooltipInvalidPassword");
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
}
var Module = bid.Modules.PageModule.extend({
start: function(options) {
options = options || {};
if (options.document) doc = options.document;
if (options.confirm) confirmAction = options.confirm;
var self=this,
oncomplete = options.ready,
template = new EJS({ text: $("#templateManage").html() }),
manage = template.render({});
self.click("#cancelAccount", cancelAccount);
Shane Tomlinson
committed
self.bind("button.edit", "click", startEdit);
self.bind("button.done", "click", cancelEdit);
self.bind("#edit_password_form", "submit", cancelEvent(changePassword));
Shane Tomlinson
committed
user.checkAuthentication(function(auth_level) {
authLevel = auth_level;
syncAndDisplayEmails(function() {
displayHelpTextToNewUser();
displayChangePassword(oncomplete);
});
}, pageHelpers.getFailure(errors.checkAuthentication, oncomplete));
}
// BEGIN TESTING API
,
cancelAccount: cancelAccount,
removeEmail: removeEmail,
changePassword: changePassword
// END TESTING API
});