generated from andym80/my-portfolio-sk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate.js
620 lines (503 loc) · 20.4 KB
/
validate.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
/*
* validate.js 2.0.1
* Copyright (c) 2011 - 2015 Rick Harrison, http://rickharrison.me
* validate.js is open sourced under the MIT license.
* Portions of validate.js are inspired by CodeIgniter.
* http://rickharrison.github.com/validate.js
*/
(function(window, document, undefined) {
/*
* If you would like an application-wide config, change these defaults.
* Otherwise, use the setMessage() function to configure form specific messages.
*/
var defaults = {
messages: {
required: 'The %s field is required.',
matches: 'The %s field does not match the %s field.',
"default": 'The %s field is still set to default, please change.',
valid_email: 'The %s field must contain a valid email address.',
valid_emails: 'The %s field must contain all valid email addresses.',
min_length: 'The %s field must be at least %s characters in length.',
max_length: 'The %s field must not exceed %s characters in length.',
exact_length: 'The %s field must be exactly %s characters in length.',
greater_than: 'The %s field must contain a number greater than %s.',
less_than: 'The %s field must contain a number less than %s.',
alpha: 'The %s field must only contain alphabetical characters.',
alpha_numeric: 'The %s field must only contain alpha-numeric characters.',
alpha_dash: 'The %s field must only contain alpha-numeric characters, underscores, and dashes.',
numeric: 'The %s field must contain only numbers.',
integer: 'The %s field must contain an integer.',
decimal: 'The %s field must contain a decimal number.',
is_natural: 'The %s field must contain only positive numbers.',
is_natural_no_zero: 'The %s field must contain a number greater than zero.',
valid_ip: 'The %s field must contain a valid IP.',
valid_base64: 'The %s field must contain a base64 string.',
valid_credit_card: 'The %s field must contain a valid credit card number.',
is_file_type: 'The %s field must contain only %s files.',
valid_url: 'The %s field must contain a valid URL.',
greater_than_date: 'The %s field must contain a more recent date than %s.',
less_than_date: 'The %s field must contain an older date than %s.',
greater_than_or_equal_date: 'The %s field must contain a date that\'s at least as recent as %s.',
less_than_or_equal_date: 'The %s field must contain a date that\'s %s or older.'
},
callback: function(errors) {
}
};
/*
* Define the regular expressions that will be used
*/
var ruleRegex = /^(.+?)\[(.+)\]$/,
numericRegex = /^[0-9]+$/,
integerRegex = /^\-?[0-9]+$/,
decimalRegex = /^\-?[0-9]*\.?[0-9]+$/,
emailRegex = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/,
alphaRegex = /^[a-z]+$/i,
alphaNumericRegex = /^[a-z0-9]+$/i,
alphaDashRegex = /^[a-z0-9_\-]+$/i,
naturalRegex = /^[0-9]+$/i,
naturalNoZeroRegex = /^[1-9][0-9]*$/i,
ipRegex = /^((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){3}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})$/i,
base64Regex = /[^a-zA-Z0-9\/\+=]/i,
numericDashRegex = /^[\d\-\s]+$/,
urlRegex = /^((http|https):\/\/(\w+:{0,1}\w*@)?(\S+)|)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?$/,
dateRegex = /\d{4}-\d{1,2}-\d{1,2}/;
/*
* The exposed public object to validate a form:
*
* @param formNameOrNode - String - The name attribute of the form (i.e. <form name="myForm"></form>) or node of the form element
* @param fields - Array - [{
* name: The name of the element (i.e. <input name="myField" />)
* display: 'Field Name'
* rules: required|matches[password_confirm]
* }]
* @param callback - Function - The callback after validation has been performed.
* @argument errors - An array of validation errors
* @argument event - The javascript event
*/
var FormValidator = function(formNameOrNode, fields, callback) {
this.callback = callback || defaults.callback;
this.errors = [];
this.fields = {};
this.form = this._formByNameOrNode(formNameOrNode) || {};
this.messages = {};
this.handlers = {};
this.conditionals = {};
for (var i = 0, fieldLength = fields.length; i < fieldLength; i++) {
var field = fields[i];
// If passed in incorrectly, we need to skip the field.
if ((!field.name && !field.names) || !field.rules) {
console.warn('validate.js: The following field is being skipped due to a misconfiguration:');
console.warn(field);
console.warn('Check to ensure you have properly configured a name and rules for this field');
continue;
}
/*
* Build the master fields array that has all the information needed to validate
*/
if (field.names) {
for (var j = 0, fieldNamesLength = field.names.length; j < fieldNamesLength; j++) {
this._addField(field, field.names[j]);
}
} else {
this._addField(field, field.name);
}
}
/*
* Attach an event callback for the form submission
*/
var _onsubmit = this.form.onsubmit;
this.form.onsubmit = (function(that) {
return function(evt) {
try {
return that._validateForm(evt) && (_onsubmit === undefined || _onsubmit());
} catch(e) {}
};
})(this);
},
attributeValue = function (element, attributeName) {
var i;
if ((element.length > 0) && (element[0].type === 'radio' || element[0].type === 'checkbox')) {
for (i = 0, elementLength = element.length; i < elementLength; i++) {
if (element[i].checked) {
return element[i][attributeName];
}
}
return;
}
return element[attributeName];
};
/*
* @public
* Sets a custom message for one of the rules
*/
FormValidator.prototype.setMessage = function(rule, message) {
this.messages[rule] = message;
// return this for chaining
return this;
};
/*
* @public
* Registers a callback for a custom rule (i.e. callback_username_check)
*/
FormValidator.prototype.registerCallback = function(name, handler) {
if (name && typeof name === 'string' && handler && typeof handler === 'function') {
this.handlers[name] = handler;
}
// return this for chaining
return this;
};
/*
* @public
* Registers a conditional for a custom 'depends' rule
*/
FormValidator.prototype.registerConditional = function(name, conditional) {
if (name && typeof name === 'string' && conditional && typeof conditional === 'function') {
this.conditionals[name] = conditional;
}
// return this for chaining
return this;
};
/*
* @private
* Determines if a form dom node was passed in or just a string representing the form name
*/
FormValidator.prototype._formByNameOrNode = function(formNameOrNode) {
return (typeof formNameOrNode === 'object') ? formNameOrNode : document.forms[formNameOrNode];
};
/*
* @private
* Adds a file to the master fields array
*/
FormValidator.prototype._addField = function(field, nameValue) {
this.fields[nameValue] = {
name: nameValue,
display: field.display || nameValue,
rules: field.rules,
depends: field.depends,
id: null,
element: null,
type: null,
value: null,
checked: null
};
};
/*
* @private
* Runs the validation when the form is submitted.
*/
FormValidator.prototype._validateForm = function(evt) {
this.errors = [];
for (var key in this.fields) {
if (this.fields.hasOwnProperty(key)) {
var field = this.fields[key] || {},
element = this.form[field.name];
if (element && element !== undefined) {
field.id = attributeValue(element, 'id');
field.element = element;
field.type = (element.length > 0) ? element[0].type : element.type;
field.value = attributeValue(element, 'value');
field.checked = attributeValue(element, 'checked');
/*
* Run through the rules for each field.
* If the field has a depends conditional, only validate the field
* if it passes the custom function
*/
if (field.depends && typeof field.depends === "function") {
if (field.depends.call(this, field)) {
this._validateField(field);
}
} else if (field.depends && typeof field.depends === "string" && this.conditionals[field.depends]) {
if (this.conditionals[field.depends].call(this,field)) {
this._validateField(field);
}
} else {
this._validateField(field);
}
}
}
}
if (typeof this.callback === 'function') {
this.callback(this.errors, evt);
}
if (this.errors.length > 0) {
if (evt && evt.preventDefault) {
evt.preventDefault();
} else if (event) {
// IE uses the global event variable
event.returnValue = false;
}
}
return true;
};
/*
* @private
* Looks at the fields value and evaluates it against the given rules
*/
FormValidator.prototype._validateField = function(field) {
var i, j,
rules = field.rules.split('|'),
indexOfRequired = field.rules.indexOf('required'),
isEmpty = (!field.value || field.value === '' || field.value === undefined);
/*
* Run through the rules and execute the validation methods as needed
*/
for (i = 0, ruleLength = rules.length; i < ruleLength; i++) {
var method = rules[i],
param = null,
failed = false,
parts = ruleRegex.exec(method);
/*
* If this field is not required and the value is empty, continue on to the next rule unless it's a callback.
* This ensures that a callback will always be called but other rules will be skipped.
*/
if (indexOfRequired === -1 && method.indexOf('!callback_') === -1 && isEmpty) {
continue;
}
/*
* If the rule has a parameter (i.e. matches[param]) split it out
*/
if (parts) {
method = parts[1];
param = parts[2];
}
if (method.charAt(0) === '!') {
method = method.substring(1, method.length);
}
/*
* If the hook is defined, run it to find any validation errors
*/
if (typeof this._hooks[method] === 'function') {
if (!this._hooks[method].apply(this, [field, param])) {
failed = true;
}
} else if (method.substring(0, 9) === 'callback_') {
// Custom method. Execute the handler if it was registered
method = method.substring(9, method.length);
if (typeof this.handlers[method] === 'function') {
if (this.handlers[method].apply(this, [field.value, param, field]) === false) {
failed = true;
}
}
}
/*
* If the hook failed, add a message to the errors array
*/
if (failed) {
// Make sure we have a message for this rule
var source = this.messages[field.name + '.' + method] || this.messages[method] || defaults.messages[method],
message = 'An error has occurred with the ' + field.display + ' field.';
if (source) {
message = source.replace('%s', field.display);
if (param) {
message = message.replace('%s', (this.fields[param]) ? this.fields[param].display : param);
}
}
var existingError;
for (j = 0; j < this.errors.length; j += 1) {
if (field.id === this.errors[j].id) {
existingError = this.errors[j];
}
}
var errorObject = existingError || {
id: field.id,
display: field.display,
element: field.element,
name: field.name,
message: message,
messages: [],
rule: method
};
errorObject.messages.push(message);
if (!existingError) this.errors.push(errorObject);
}
}
};
/**
* private function _getValidDate: helper function to convert a string date to a Date object
* @param date (String) must be in format yyyy-mm-dd or use keyword: today
* @returns {Date} returns false if invalid
*/
FormValidator.prototype._getValidDate = function(date) {
if (!date.match('today') && !date.match(dateRegex)) {
return false;
}
var validDate = new Date(),
validDateArray;
if (!date.match('today')) {
validDateArray = date.split('-');
validDate.setFullYear(validDateArray[0]);
validDate.setMonth(validDateArray[1] - 1);
validDate.setDate(validDateArray[2]);
}
return validDate;
};
/*
* @private
* Object containing all of the validation hooks
*/
FormValidator.prototype._hooks = {
required: function(field) {
var value = field.value;
if ((field.type === 'checkbox') || (field.type === 'radio')) {
return (field.checked === true);
}
return (value !== null && value !== '');
},
"default": function(field, defaultName){
return field.value !== defaultName;
},
matches: function(field, matchName) {
var el = this.form[matchName];
if (el) {
return field.value === el.value;
}
return false;
},
valid_email: function(field) {
return emailRegex.test(field.value);
},
valid_emails: function(field) {
var result = field.value.split(/\s*,\s*/g);
for (var i = 0, resultLength = result.length; i < resultLength; i++) {
if (!emailRegex.test(result[i])) {
return false;
}
}
return true;
},
min_length: function(field, length) {
if (!numericRegex.test(length)) {
return false;
}
return (field.value.length >= parseInt(length, 10));
},
max_length: function(field, length) {
if (!numericRegex.test(length)) {
return false;
}
return (field.value.length <= parseInt(length, 10));
},
exact_length: function(field, length) {
if (!numericRegex.test(length)) {
return false;
}
return (field.value.length === parseInt(length, 10));
},
greater_than: function(field, param) {
if (!decimalRegex.test(field.value)) {
return false;
}
return (parseFloat(field.value) > parseFloat(param));
},
less_than: function(field, param) {
if (!decimalRegex.test(field.value)) {
return false;
}
return (parseFloat(field.value) < parseFloat(param));
},
alpha: function(field) {
return (alphaRegex.test(field.value));
},
alpha_numeric: function(field) {
return (alphaNumericRegex.test(field.value));
},
alpha_dash: function(field) {
return (alphaDashRegex.test(field.value));
},
numeric: function(field) {
return (numericRegex.test(field.value));
},
integer: function(field) {
return (integerRegex.test(field.value));
},
decimal: function(field) {
return (decimalRegex.test(field.value));
},
is_natural: function(field) {
return (naturalRegex.test(field.value));
},
is_natural_no_zero: function(field) {
return (naturalNoZeroRegex.test(field.value));
},
valid_ip: function(field) {
return (ipRegex.test(field.value));
},
valid_base64: function(field) {
return (base64Regex.test(field.value));
},
valid_url: function(field) {
return (urlRegex.test(field.value));
},
valid_credit_card: function(field){
// Luhn Check Code from https://gist.github.com/4075533
// accept only digits, dashes or spaces
if (!numericDashRegex.test(field.value)) return false;
// The Luhn Algorithm. It's so pretty.
var nCheck = 0, nDigit = 0, bEven = false;
var strippedField = field.value.replace(/\D/g, "");
for (var n = strippedField.length - 1; n >= 0; n--) {
var cDigit = strippedField.charAt(n);
nDigit = parseInt(cDigit, 10);
if (bEven) {
if ((nDigit *= 2) > 9) nDigit -= 9;
}
nCheck += nDigit;
bEven = !bEven;
}
return (nCheck % 10) === 0;
},
is_file_type: function(field,type) {
if (field.type !== 'file') {
return true;
}
var ext = field.value.substr((field.value.lastIndexOf('.') + 1)),
typeArray = type.split(','),
inArray = false,
i = 0,
len = typeArray.length;
for (i; i < len; i++) {
if (ext.toUpperCase() == typeArray[i].toUpperCase()) inArray = true;
}
return inArray;
},
greater_than_date: function (field, date) {
var enteredDate = this._getValidDate(field.value),
validDate = this._getValidDate(date);
if (!validDate || !enteredDate) {
return false;
}
return enteredDate > validDate;
},
less_than_date: function (field, date) {
var enteredDate = this._getValidDate(field.value),
validDate = this._getValidDate(date);
if (!validDate || !enteredDate) {
return false;
}
return enteredDate < validDate;
},
greater_than_or_equal_date: function (field, date) {
var enteredDate = this._getValidDate(field.value),
validDate = this._getValidDate(date);
if (!validDate || !enteredDate) {
return false;
}
return enteredDate >= validDate;
},
less_than_or_equal_date: function (field, date) {
var enteredDate = this._getValidDate(field.value),
validDate = this._getValidDate(date);
if (!validDate || !enteredDate) {
return false;
}
return enteredDate <= validDate;
}
};
window.FormValidator = FormValidator;
})(window, document);
/*
* Export as a CommonJS module
*/
if (typeof module !== 'undefined' && module.exports) {
module.exports = FormValidator;
}