e04c0430f62323babb0929b48cf707ddfeef9cb1
[roojs1] / Roo / bootstrap / SecurePass.js
1 /*
2  * - LGPL
3  *
4  * Input
5  * 
6  */
7
8 /**
9  * @class Roo.bootstrap.SecurePass
10  * @extends Roo.bootstrap.Input
11  * Bootstrap SecurePass class
12  *
13  * 
14  * @constructor
15  * Create a new SecurePass
16  * @param {Object} config The config object
17  */
18  
19 Roo.bootstrap.SecurePass = function (config) {
20     // these go here, so the translation tool can replace them..
21     this.errors = {
22         PwdEmpty: "Please type a password, and then retype it to confirm.",
23         PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
24         PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
25         PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
26         IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
27         FNInPwd: "Your password can't contain your first name. Please type a different password.",
28         LNInPwd: "Your password can't contain your last name. Please type a different password.",
29         TooWeak: "Your password is Too Weak."
30     },
31     this.meterLabel = "Password strength:";
32     this.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
33     this.meterClass = [
34         "roo-password-meter-tooweak", 
35         "roo-password-meter-weak", 
36         "roo-password-meter-medium", 
37         "roo-password-meter-strong", 
38         "roo-password-meter-grey"
39     ];
40     
41     this.errors = {};
42     
43     Roo.bootstrap.SecurePass.superclass.constructor.call(this, config);
44 }
45
46 Roo.extend(Roo.bootstrap.SecurePass, Roo.bootstrap.Input, {
47     /**
48      * @cfg {String/Object} errors A Error spec, or true for a default spec (defaults to
49      * {
50      *  PwdEmpty: "Please type a password, and then retype it to confirm.",
51      *  PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
52      *  PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
53      *  PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
54      *  IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
55      *  FNInPwd: "Your password can't contain your first name. Please type a different password.",
56      *  LNInPwd: "Your password can't contain your last name. Please type a different password."
57      * })
58      */
59     // private
60     
61     meterWidth: 300,
62     errorMsg :'',    
63     errors: false,
64     imageRoot: '/',
65     /**
66      * @cfg {String/Object} Label for the strength meter (defaults to
67      * 'Password strength:')
68      */
69     // private
70     meterLabel: '',
71     /**
72      * @cfg {String/Object} pwdStrengths A pwdStrengths spec, or true for a default spec (defaults to
73      * ['Weak', 'Medium', 'Strong'])
74      */
75     // private    
76     pwdStrengths: false,    
77     // private
78     strength: 0,
79     // private
80     _lastPwd: null,
81     // private
82     kCapitalLetter: 0,
83     kSmallLetter: 1,
84     kDigit: 2,
85     kPunctuation: 3,
86     
87     insecure: false,
88     // private
89     initEvents: function ()
90     {
91         Roo.bootstrap.SecurePass.superclass.initEvents.call(this);
92
93         if (this.el.is('input[type=password]') && Roo.isSafari) {
94             this.el.on('keydown', this.SafariOnKeyDown, this);
95         }
96
97         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
98     },
99     // private
100     onRender: function (ct, position)
101     {
102         Roo.bootstrap.SecurePass.superclass.onRender.call(this, ct, position);
103         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
104         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
105
106         this.trigger.createChild({
107                    cn: [
108                     {
109                     //id: 'PwdMeter',
110                     tag: 'div',
111                     cls: 'roo-password-meter-grey col-xs-12',
112                     style: {
113                         //width: 0,
114                         //width: this.meterWidth + 'px'                                                
115                         }
116                     },
117                     {                            
118                          cls: 'roo-password-meter-text'                          
119                     }
120                 ]            
121         });
122
123          
124         if (this.hideTrigger) {
125             this.trigger.setDisplayed(false);
126         }
127         this.setSize(this.width || '', this.height || '');
128     },
129     // private
130     onDestroy: function ()
131     {
132         if (this.trigger) {
133             this.trigger.removeAllListeners();
134             this.trigger.remove();
135         }
136         if (this.wrap) {
137             this.wrap.remove();
138         }
139         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
140     },
141     // private
142     checkStrength: function ()
143     {
144         var pwd = this.inputEl().getValue();
145         if (pwd == this._lastPwd) {
146             return;
147         }
148
149         var strength;
150         if (this.ClientSideStrongPassword(pwd)) {
151             strength = 3;
152         } else if (this.ClientSideMediumPassword(pwd)) {
153             strength = 2;
154         } else if (this.ClientSideWeakPassword(pwd)) {
155             strength = 1;
156         } else {
157             strength = 0;
158         }
159         
160         Roo.log('strength1: ' + strength);
161         
162         //var pm = this.trigger.child('div/div/div').dom;
163         var pm = this.trigger.child('div/div');
164         pm.removeClass(this.meterClass);
165         pm.addClass(this.meterClass[strength]);
166                 
167         
168         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
169                 
170         pt.innerHTML = this.meterLabel + ' ' + this.pwdStrengths[strength];
171         
172         this._lastPwd = pwd;
173     },
174     reset: function ()
175     {
176         Roo.bootstrap.SecurePass.superclass.reset.call(this);
177         
178         this._lastPwd = '';
179         
180         var pm = this.trigger.child('div/div');
181         pm.removeClass(this.meterClass);
182         pm.addClass('roo-password-meter-grey');        
183         
184         
185         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
186         
187         pt.innerHTML = '';
188         this.inputEl().dom.type='password';
189     },
190     // private
191     validateValue: function (value)
192     {
193         
194         if (!Roo.bootstrap.SecurePass.superclass.validateValue.call(this, value)) {
195             return false;
196         }
197         if (value.length == 0) {
198             if (this.allowBlank) {
199                 this.clearInvalid();
200                 return true;
201             }
202
203             this.markInvalid(this.errors.PwdEmpty);
204             this.errorMsg = this.errors.PwdEmpty;
205             return false;
206         }
207         
208         if(this.insecure){
209             return true;
210         }
211         
212         if ('[\x21-\x7e]*'.match(value)) {
213             this.markInvalid(this.errors.PwdBadChar);
214             this.errorMsg = this.errors.PwdBadChar;
215             return false;
216         }
217         if (value.length < 6) {
218             this.markInvalid(this.errors.PwdShort);
219             this.errorMsg = this.errors.PwdShort;
220             return false;
221         }
222         if (value.length > 16) {
223             this.markInvalid(this.errors.PwdLong);
224             this.errorMsg = this.errors.PwdLong;
225             return false;
226         }
227         var strength;
228         if (this.ClientSideStrongPassword(value)) {
229             strength = 3;
230         } else if (this.ClientSideMediumPassword(value)) {
231             strength = 2;
232         } else if (this.ClientSideWeakPassword(value)) {
233             strength = 1;
234         } else {
235             strength = 0;
236         }
237
238         
239         if (strength < 2) {
240             //this.markInvalid(this.errors.TooWeak);
241             this.errorMsg = this.errors.TooWeak;
242             //return false;
243         }
244         
245         
246         console.log('strength2: ' + strength);
247         
248         //var pm = this.trigger.child('div/div/div').dom;
249         
250         var pm = this.trigger.child('div/div');
251         pm.removeClass(this.meterClass);
252         pm.addClass(this.meterClass[strength]);
253                 
254         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
255                 
256         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
257         
258         this.errorMsg = ''; 
259         return true;
260     },
261     // private
262     CharacterSetChecks: function (type)
263     {
264         this.type = type;
265         this.fResult = false;
266     },
267     // private
268     isctype: function (character, type)
269     {
270         switch (type) {  
271             case this.kCapitalLetter:
272                 if (character >= 'A' && character <= 'Z') {
273                     return true;
274                 }
275                 break;
276             
277             case this.kSmallLetter:
278                 if (character >= 'a' && character <= 'z') {
279                     return true;
280                 }
281                 break;
282             
283             case this.kDigit:
284                 if (character >= '0' && character <= '9') {
285                     return true;
286                 }
287                 break;
288             
289             case this.kPunctuation:
290                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
291                     return true;
292                 }
293                 break;
294             
295             default:
296                 return false;
297         }
298
299     },
300     // private
301     IsLongEnough: function (pwd, size)
302     {
303         return !(pwd == null || isNaN(size) || pwd.length < size);
304     },
305     // private
306     SpansEnoughCharacterSets: function (word, nb)
307     {
308         if (!this.IsLongEnough(word, nb))
309         {
310             return false;
311         }
312
313         var characterSetChecks = new Array(
314             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
315             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
316         );
317         
318         for (var index = 0; index < word.length; ++index) {
319             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
320                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
321                     characterSetChecks[nCharSet].fResult = true;
322                     break;
323                 }
324             }
325         }
326
327         var nCharSets = 0;
328         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
329             if (characterSetChecks[nCharSet].fResult) {
330                 ++nCharSets;
331             }
332         }
333
334         if (nCharSets < nb) {
335             return false;
336         }
337         return true;
338     },
339     // private
340     ClientSideStrongPassword: function (pwd)
341     {
342         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
343     },
344     // private
345     ClientSideMediumPassword: function (pwd)
346     {
347         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
348     },
349     // private
350     ClientSideWeakPassword: function (pwd)
351     {
352         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
353     }
354           
355 })