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