113 lines
4.4 KiB
JavaScript
113 lines
4.4 KiB
JavaScript
/**
|
|
* @file
|
|
* Attaches handlers to evaluate the strength of any password fields and to
|
|
* check that its confirmation is correct.
|
|
*/
|
|
Drupal.behaviors.password = function(context) {
|
|
var translate = Drupal.settings.password_policy;
|
|
$("input.password-field:not(.password-processed)", context).each(function() {
|
|
var passwordInput = $(this).addClass('password-processed');
|
|
var parent = $(this).parent();
|
|
// Wait this number of milliseconds before checking password.
|
|
var monitorDelay = 700;
|
|
|
|
// Add the password strength layers.
|
|
$(this).after('<span class="password-strength"><span class="password-title">'+ translate.strengthTitle +'</span> <span class="password-result"></span></span>').parent();
|
|
var passwordStrength = $("span.password-strength", parent);
|
|
var passwordResult = $("span.password-result", passwordStrength);
|
|
parent.addClass("password-parent");
|
|
|
|
// Add the password confirmation layer.
|
|
var outerItem = $(this).parent().parent();
|
|
$("input.password-confirm", outerItem).after('<span class="password-confirm">'+ translate["confirmTitle"] +' <span></span></span>').parent().addClass("confirm-parent");
|
|
var confirmInput = $("input.password-confirm", outerItem);
|
|
var confirmResult = $("span.password-confirm", outerItem);
|
|
var confirmChild = $("span", confirmResult);
|
|
|
|
// Add the description box at the end.
|
|
$(confirmInput).parent().after('<div class="password-description"></div>');
|
|
var passwordDescription = $("div.password-description", $(this).parent().parent()).hide();
|
|
|
|
// Check the password fields.
|
|
var passwordCheck = function () {
|
|
// Remove timers for a delayed check if they exist.
|
|
if (this.timer) {
|
|
clearTimeout(this.timer);
|
|
}
|
|
|
|
// Verify that there is a password to check.
|
|
if (!passwordInput.val()) {
|
|
passwordStrength.css({ visibility: "hidden" });
|
|
passwordDescription.hide();
|
|
return;
|
|
}
|
|
|
|
// Evaluate password strength.
|
|
|
|
var result = Drupal.evaluatePasswordStrength(passwordInput.val());
|
|
passwordResult.html(result.strength == "" ? "" : translate[result.strength +"Strength"]);
|
|
|
|
// Map the password strength to the relevant drupal CSS class.
|
|
var classMap = { low: "error", medium: "warning", high: "ok" };
|
|
var newClass = classMap[result.strength] || "";
|
|
|
|
// Remove the previous styling if any exists; add the new class.
|
|
if (this.passwordClass) {
|
|
passwordResult.removeClass(this.passwordClass);
|
|
passwordDescription.removeClass(this.passwordClass);
|
|
}
|
|
passwordDescription.html(result.message);
|
|
passwordResult.addClass(newClass);
|
|
if (result.strength == "high") {
|
|
passwordDescription.hide();
|
|
}
|
|
else {
|
|
passwordDescription.addClass(newClass);
|
|
}
|
|
this.passwordClass = newClass;
|
|
|
|
// Check that password and confirmation match.
|
|
|
|
// Hide the result layer if confirmation is empty, otherwise show the layer.
|
|
confirmResult.css({ visibility: (confirmInput.val() == "" ? "hidden" : "visible") });
|
|
|
|
var success = passwordInput.val() == confirmInput.val();
|
|
|
|
// Remove the previous styling if any exists.
|
|
if (this.confirmClass) {
|
|
confirmChild.removeClass(this.confirmClass);
|
|
}
|
|
|
|
// Fill in the correct message and set the class accordingly.
|
|
var confirmClass = success ? "ok" : "error";
|
|
confirmChild.html(translate["confirm"+ (success ? "Success" : "Failure")]).addClass(confirmClass);
|
|
this.confirmClass = confirmClass;
|
|
|
|
// Show the indicator and tips.
|
|
passwordStrength.css({ visibility: "visible" });
|
|
passwordDescription.show();
|
|
};
|
|
|
|
// Do a delayed check on the password fields.
|
|
var passwordDelayedCheck = function() {
|
|
// Postpone the check since the user is most likely still typing.
|
|
if (this.timer) {
|
|
clearTimeout(this.timer);
|
|
}
|
|
|
|
// When the user clears the field, hide the tips immediately.
|
|
if (!passwordInput.val()) {
|
|
passwordStrength.css({ visibility: "hidden" });
|
|
passwordDescription.hide();
|
|
return;
|
|
}
|
|
|
|
// Schedule the actual check.
|
|
this.timer = setTimeout(passwordCheck, monitorDelay);
|
|
};
|
|
// Monitor keyup and blur events.
|
|
// Blur must be used because a mouse paste does not trigger keyup.
|
|
passwordInput.keyup(passwordDelayedCheck).blur(passwordCheck);
|
|
confirmInput.keyup(passwordDelayedCheck).blur(passwordCheck);
|
|
});
|
|
};
|