2014-11-06 16:47:58 +03:00
|
|
|
/**
|
|
|
|
* Strengthify - show the weakness of a password (uses zxcvbn for this)
|
2015-11-16 13:16:38 +03:00
|
|
|
* https://github.com/MorrisJobke/strengthify
|
2014-11-06 16:47:58 +03:00
|
|
|
*
|
2015-11-16 13:16:38 +03:00
|
|
|
* Version: 0.4.2
|
|
|
|
* Author: Morris Jobke (github.com/MorrisJobke)
|
2014-11-06 16:47:58 +03:00
|
|
|
*
|
|
|
|
* License:
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2015-11-16 13:16:38 +03:00
|
|
|
* Copyright (c) 2013-2015 Morris Jobke <morris.jobke@gmail.com>
|
2014-11-06 16:47:58 +03:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2015-01-06 16:46:15 +03:00
|
|
|
/* global jQuery */
|
2014-11-06 16:47:58 +03:00
|
|
|
(function ($) {
|
2015-01-06 16:46:15 +03:00
|
|
|
$.fn.strengthify = function(paramOptions) {
|
|
|
|
var me = this,
|
|
|
|
defaults = {
|
|
|
|
zxcvbn: 'zxcvbn/zxcvbn.js',
|
|
|
|
titles: [
|
|
|
|
'Weakest',
|
|
|
|
'Weak',
|
|
|
|
'So-so',
|
|
|
|
'Good',
|
|
|
|
'Perfect'
|
|
|
|
]
|
|
|
|
},
|
2015-11-16 13:16:38 +03:00
|
|
|
options = $.extend(defaults, paramOptions),
|
|
|
|
drawStrengthify = function() {
|
|
|
|
var password = $(me).val(),
|
2015-01-06 16:46:15 +03:00
|
|
|
// hide strengthigy if no input is provided
|
|
|
|
opacity = (password === '') ? 0 : 1,
|
|
|
|
// calculate result
|
|
|
|
result = zxcvbn(password),
|
|
|
|
css = '',
|
|
|
|
// cache jQuery selections
|
|
|
|
$container = $('.strengthify-container'),
|
|
|
|
$wrapper = $('.strengthify-wrapper');
|
2014-11-06 16:47:58 +03:00
|
|
|
|
2015-01-06 16:46:15 +03:00
|
|
|
$wrapper.children().css(
|
2014-11-06 16:47:58 +03:00
|
|
|
'opacity',
|
|
|
|
opacity
|
|
|
|
).css(
|
|
|
|
'-ms-filter',
|
|
|
|
'"progid:DXImageTransform.Microsoft.Alpha(Opacity=' + opacity * 100 + ')"'
|
2015-01-06 16:46:15 +03:00
|
|
|
);
|
2014-11-06 16:47:58 +03:00
|
|
|
|
|
|
|
// style strengthify bar
|
|
|
|
// possible scores: 0-4
|
|
|
|
switch(result.score) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
css = 'password-bad';
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
css = 'password-medium';
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
css = 'password-good';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-01-06 16:46:15 +03:00
|
|
|
$container
|
|
|
|
.attr('class', css + ' strengthify-container')
|
|
|
|
// possible scores: 0-4
|
|
|
|
.css(
|
|
|
|
'width',
|
|
|
|
// if score is '0' it will be changed to '1' to
|
|
|
|
// not hide strengthify if the password is extremely weak
|
|
|
|
((result.score === 0 ? 1 : result.score) * 25) + '%'
|
|
|
|
);
|
|
|
|
|
2014-11-06 16:47:58 +03:00
|
|
|
// set a title for the wrapper
|
2015-01-06 16:46:15 +03:00
|
|
|
$wrapper.attr(
|
2014-11-06 16:47:58 +03:00
|
|
|
'title',
|
|
|
|
options.titles[result.score]
|
2015-11-16 13:16:38 +03:00
|
|
|
).tooltip({
|
|
|
|
placement: 'bottom',
|
2014-11-06 16:47:58 +03:00
|
|
|
trigger: 'manual',
|
2015-11-16 13:16:38 +03:00
|
|
|
}).tooltip(
|
2014-11-06 16:47:58 +03:00
|
|
|
'show'
|
2015-01-06 16:46:15 +03:00
|
|
|
);
|
2014-11-06 16:47:58 +03:00
|
|
|
|
|
|
|
if(opacity === 0) {
|
2015-11-16 13:16:38 +03:00
|
|
|
$wrapper.tooltip(
|
2014-11-06 16:47:58 +03:00
|
|
|
'hide'
|
2015-01-06 16:46:15 +03:00
|
|
|
);
|
2014-11-06 16:47:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// reset state for empty string password
|
|
|
|
if(password === '') {
|
2015-01-06 16:46:15 +03:00
|
|
|
$container.css('width', 0);
|
2014-11-06 16:47:58 +03:00
|
|
|
}
|
|
|
|
|
2015-11-16 13:16:38 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
// add elements
|
|
|
|
$('.strengthify-wrapper')
|
|
|
|
.append('<div class="strengthify-bg" />')
|
|
|
|
.append('<div class="strengthify-container" />')
|
|
|
|
.append('<div class="strengthify-separator" style="left: 25%" />')
|
|
|
|
.append('<div class="strengthify-separator" style="left: 50%" />')
|
|
|
|
.append('<div class="strengthify-separator" style="left: 75%" />');
|
|
|
|
|
|
|
|
me.parents().on('scroll', drawStrengthify);
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
cache: true,
|
|
|
|
dataType: 'script',
|
|
|
|
url: options.zxcvbn
|
|
|
|
}).done(function() {
|
|
|
|
me.bind('keyup input change', drawStrengthify);
|
2015-01-06 16:46:15 +03:00
|
|
|
});
|
2014-11-06 16:47:58 +03:00
|
|
|
|
2015-01-06 16:46:15 +03:00
|
|
|
return me;
|
2014-11-06 16:47:58 +03:00
|
|
|
};
|
|
|
|
|
2015-01-06 16:46:15 +03:00
|
|
|
}(jQuery));
|