more quote identeiifers fixessss
[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: 'roo-strength-meter ' + 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         
165         if (!Ext.form.TextField.superclass.validateValue.call(this, value)) {
166             return false;
167         }
168         if (value.length == 0) {
169             if (this.allowBlank) {
170                 this.clearInvalid();
171                 return true;
172             }
173
174             this.markInvalid(this.errors.PwdEmpty);
175             return false;
176         }
177         
178         if(this.insecure){
179             return true;
180         }
181         
182         if (value.match(/[\x21-\x7e]*/)) {
183             this.markInvalid(this.errors.PwdBadChar);
184             return false;
185         }
186         if (value.length < 6) {
187             this.markInvalid(this.errors.PwdShort);
188             return false;
189         }
190         if (value.length > 16) {
191             this.markInvalid(this.errors.PwdLong);
192             return false;
193         }
194         var strength;
195         if (this.ClientSideStrongPassword(value)) {
196             strength = 3;
197         } else if (this.ClientSideMediumPassword(value)) {
198             strength = 2;
199         } else if (this.ClientSideWeakPassword(value)) {
200             strength = 1;
201         } else {
202             strength = 0;
203         }
204         if (strength < 2) {
205             this.markInvalid(this.errors.TooWeak);
206             return false;
207         }
208         /*
209          for (var index = 0; index < this.fieldsFilter.length; ++index) {
210          filter = document.getElementById(this.fieldsFilter[index][0]).value;
211          if (filter != '')
212          {
213          re = new RegExp(filter);
214          if (re.test(value)) {
215          this.markInvalid(eval('this.errors.'+ this.fieldsFilter[index][1]));
216          return false;
217          }
218          }
219          }
220          */
221         return true;
222     },
223     // private
224     CharacterSetChecks: function (type) {
225         this.type = type;
226         this.fResult = false;
227     },
228     // private
229     isctype: function (character, type) {
230         switch (type) { //why needed break after return in js ? very odd bug
231             case this.kCapitalLetter:
232                 if (character >= 'A' && character <= 'Z') {
233                     return true;
234                 }
235                 break;
236             case this.kSmallLetter:
237                 if (character >= 'a' && character <= 'z') {
238                     return true;
239                 }
240                 break;
241             case this.kDigit:
242                 if (character >= '0' && character <= '9') {
243                     return true;
244                 }
245                 break;
246             case this.kPunctuation:
247                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
248                     return true;
249                 }
250                 break;
251             default:
252                 return false;
253         }
254
255     },
256     // private
257     IsLongEnough: function (pwd, size) {
258         return !(pwd == null || isNaN(size) || pwd.length < size);
259     },
260     // private
261     SpansEnoughCharacterSets: function (word, nb) {
262         if (!this.IsLongEnough(word, nb))
263         {
264             return false;
265         }
266
267         var characterSetChecks = new Array(
268                 new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
269                 new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation));
270         for (var index = 0; index < word.length; ++index) {
271             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
272                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
273                     characterSetChecks[nCharSet].fResult = true;
274                     break;
275                 }
276             }
277         }
278
279         var nCharSets = 0;
280         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
281             if (characterSetChecks[nCharSet].fResult) {
282                 ++nCharSets;
283             }
284         }
285
286         if (nCharSets < nb) {
287             return false;
288         }
289         return true;
290     },
291     // private
292     ClientSideStrongPassword: function (pwd) {
293         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
294     },
295     // private
296     ClientSideMediumPassword: function (pwd) {
297         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
298     },
299     // private
300     ClientSideWeakPassword: function (pwd) {
301         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
302     }/*,
303      
304      // private -- see TextFiedl... - not sure why we are duping the code?
305      SafariOnKeyDown : function(event){
306      
307      var isSelectAll = false;
308      if(this.el.dom.selectionEnd > 0){
309      isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
310      }
311      if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
312      event.preventDefault();
313      this.setValue('');
314      return;
315      };
316      if(isSelectAll){ // backspace and delete key
317      
318      event.preventDefault();
319      this.setValue(String.fromCharCode(
320      this.shiftKey ? event.getKey() : event.getKey().toLowerCase()
321      ));  
322      };
323      } */
324 })