forked from rickharrison/validate.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidate.js
More file actions
431 lines (343 loc) · 13.8 KB
/
validate.js
File metadata and controls
431 lines (343 loc) · 13.8 KB
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
/*
* validate.js 1.0.1
* Copyright (c) 2011 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.',
valid_email: 'The %s field must contain a valid email address.',
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.'
},
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-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,6}$/i,
alphaRegex = /^[a-z]+$/i,
alphaNumericRegex = /^[a-z0-9]+$/i,
alphaDashRegex = /^[a-z0-9_-]+$/i;
/*
* The exposed public object to validate a form:
*
* @param formName - String - The name attribute of the form (i.e. <form name="myForm"></form>)
* @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(formName, fields, callback) {
this.callback = callback || defaults.callback;
this.errors = [];
this.fields = {};
this.form = document.forms[formName] || {};
this.messages = {};
this.handlers = {};
this.waitingForHandler = false;
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.rules) {
continue;
}
/*
* Build the master fields array that has all the information needed to validate
*/
this.fields[field.name] = {
name: field.name,
display: field.display || field.name,
rules: field.rules,
type: null,
value: null,
checked: null
}
}
/*
* Attach an event callback for the form submission
*/
this.form.onsubmit = (function(that) {
return function(event) {
try {
return that._validateForm(event);
} catch(e) {}
}
})(this);
};
/*
* @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, async) {
if (name && typeof name === 'string' && handler && typeof handler === 'function') {
var self = this;
this.handlers[name] = {
handler: handler,
async: (async === true) ? true : false,
completed: false,
result: true,
callback: function(result) {
var handler = self.handlers[name];
handler.completed = true;
handler.result = (result === false) ? false : true;
self._checkForCompletedHandlers();
}
};
}
// return this for chaining
return this;
};
/*
* @private
* Runs the validation when the form is submitted.
*/
FormValidator.prototype._validateForm = function(event) {
/*
* Reset the state
*/
this.errors = [];
this.waitingForHandler = false;
for (var name in this.handlers) {
var handler = this.handlers[name];
handler.completed = false;
handler.result = true;
}
/*
* Perform validation on each field
*/
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.type = element.type;
field.value = element.value;
field.checked = element.checked;
}
/*
* Run through the rules for each field.
*/
this._validateField(field);
}
}
/*
* If no asynchronous handlers are running, call back with the results
*/
if (typeof this.callback === 'function' && this.waitingForHandler === false) {
this.callback(this.errors, event);
}
/*
* Prevent the form submission if there are errors or async handlers running
*/
if (this.errors.length > 0 || this.waitingForHandler === true) {
if (event && event.preventDefault) {
event.preventDefault();
} else {
// IE6 doesn't pass in an event parameter so return false
return false;
}
}
return true;
};
/*
* @private
* Looks at the fields value and evaluates it against the given rules
*/
FormValidator.prototype._validateField = function(field) {
var rules = field.rules.split('|');
/*
* If the value is null and not required, we don't need to run through validation
*/
if (field.rules.indexOf('required') === -1 && (!field.value || field.value === '' || field.value === undefined)) {
return;
}
/*
* Run through the rules and execute the validation methods as needed
*/
for (var i = 0, ruleLength = rules.length; i < ruleLength; i++) {
var method = rules[i],
param = null,
failed = false;
/*
* If the rule has a parameter (i.e. matches[param]) split it out
*/
if (parts = ruleRegex.exec(method)) {
method = parts[1];
param = parts[2];
}
/*
* 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);
var handler = this.handlers[method];
if (typeof handler.handler === 'function') {
var result = handler.handler.apply(this, [field.value, handler.callback]);
if (handler.async === true) {
this.waitingForHandler = true;
} else if (result === false) {
failed = true;
handler.completed = true;
handler.result = false;
}
}
}
/*
* 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[method] || defaults.messages[method];
if (source) {
var message = source.replace('%s', field.display);
if (param) {
message = message.replace('%s', (this.fields[param]) ? this.fields[param].display : param);
}
this.errors.push(message);
} else {
this.errors.push('An error has occurred with the ' + field.display + ' field.');
}
// Break out so as to not spam with validation errors (i.e. required and valid_email)
break;
}
}
};
FormValidator.prototype._pushError = function(method, param, field) {
// Make sure we have a message for this rule
var source = this.messages[method] || defaults.messages[method];
if (source) {
var message = source.replace('%s', field.display);
if (param) {
message = message.replace('%s', (this.fields[param]) ? this.fields[param].display : param);
}
this.errors.push(message);
} else {
this.errors.push('An error has occurred with the ' + field.display + ' field.');
}
};
FormValidator.prototype._checkForCompletedHandlers = function() {
var completed = true;
for (var name in this.handlers) {
if (this.handlers[name].completed === false) {
completed = false;
} else if (this.handlers[name].result === false) {
// TODO: how to attach this error to a particular field
this._pushError(name, null, {});
}
}
if (completed) {
this.waitingForHandler = false;
if (typeof this.callback === 'function' && this.waitingForHandler === false) {
this.callback(this.errors, event);
}
}
};
/*
* @private
* Object containing all of the validation hooks
*/
FormValidator.prototype._hooks = {
required: function(field) {
var value = field.value;
if (field.type === 'checkbox') {
return (field.checked === true);
}
return (value !== null && value !== '');
},
matches: function(field, matchName) {
if (el = this.form[matchName]) {
return field.value === el.value;
}
return false;
},
valid_email: function(field) {
return emailRegex.test(field.value);
},
min_length: function(field, length) {
if (!numericRegex.test(length)) {
return false;
}
return (field.value.length >= length);
},
max_length: function(field, length) {
if (!numericRegex.test(length)) {
return false;
}
return (field.value.length <= length);
},
exact_length: function(field, length) {
if (!numericRegex.test(length)) {
return false;
}
return (field.value.length == length);
},
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 (decimalRegex.test(field.value));
},
integer: function(field) {
return (integerRegex.test(field.value));
}
};
window.FormValidator = FormValidator;
})(window, document);