2012-10-18 20:29:16 +02:00
|
|
|
var status_classes = 'alert-error alert-success alert-info';
|
|
|
|
|
2012-08-29 17:45:15 +02:00
|
|
|
function autofocus(selector) {
|
|
|
|
$(function () {
|
|
|
|
$(selector)[0].focus();
|
|
|
|
});
|
|
|
|
}
|
2013-04-03 22:30:36 +02:00
|
|
|
|
2013-04-08 20:21:20 +02:00
|
|
|
// Return a boolean indicating whether the password is acceptable.
|
|
|
|
// Also updates a Bootstrap progress bar control (a jQuery object)
|
|
|
|
// if provided.
|
2013-04-03 22:30:36 +02:00
|
|
|
//
|
|
|
|
// Assumes that zxcvbn.js has been loaded.
|
|
|
|
//
|
|
|
|
// This is in common.js because we want to use it from the signup page
|
|
|
|
// and also from the in-app password change interface.
|
2013-04-08 20:21:20 +02:00
|
|
|
function password_quality(password, bar) {
|
2013-04-04 00:55:36 +02:00
|
|
|
// We load zxcvbn.js asynchronously, so the variable might not be set.
|
|
|
|
if (typeof zxcvbn === 'undefined')
|
|
|
|
return undefined;
|
|
|
|
|
2013-04-10 23:19:04 +02:00
|
|
|
// Consider the password acceptable if it's at least 6 characters.
|
|
|
|
var acceptable = password.length >= 6;
|
2013-04-08 20:21:20 +02:00
|
|
|
|
|
|
|
if (bar !== undefined) {
|
|
|
|
// Compute a quality score in [0,1].
|
2013-04-10 23:19:04 +02:00
|
|
|
var result = zxcvbn(password);
|
|
|
|
var quality = Math.min(1, Math.log(1 + result.crack_time) / 22);
|
|
|
|
|
|
|
|
// Even if zxcvbn loves your short password, the bar should be filled
|
|
|
|
// at most 1/3 of the way, because we won't accept it.
|
|
|
|
if (!acceptable)
|
|
|
|
quality = Math.min(quality, 0.33);
|
2013-04-03 22:30:36 +02:00
|
|
|
|
2013-04-08 20:21:20 +02:00
|
|
|
// Display the password quality score on a progress bar
|
|
|
|
// which bottoms out at 10% so there's always something
|
|
|
|
// for the user to see.
|
2013-04-08 20:31:00 +02:00
|
|
|
bar.width(((90 * quality) + 10) + '%')
|
|
|
|
.removeClass('bar-success bar-danger')
|
|
|
|
.addClass(acceptable ? 'bar-success' : 'bar-danger');
|
2013-04-08 20:21:20 +02:00
|
|
|
}
|
2013-04-03 22:30:36 +02:00
|
|
|
|
2013-04-08 20:31:00 +02:00
|
|
|
return acceptable;
|
2013-04-03 22:30:36 +02:00
|
|
|
}
|