forked from validatorjs/validator.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidator.js
322 lines (274 loc) · 10.9 KB
/
validator.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
/*!
* Copyright (c) 2014 Chris O'Hara <[email protected]>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
(function (name, definition) {
if (typeof module !== 'undefined') {
module.exports = definition();
} else if (typeof define === 'function' && typeof define.amd === 'object') {
define(definition);
} else {
this[name] = definition();
}
})('validator', function (validator) {
validator = { version: '3.1.0' };
var email = /^(?:[\w\!\#\$\%\&\'\*\+\-\/\=\?\^\`\{\|\}\~]+\.)*[\w\!\#\$\%\&\'\*\+\-\/\=\?\^\`\{\|\}\~]+@(?:(?:(?:[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]?)|(?:\[(?:(?:[01]?\d{1,2}|2[0-4]\d|25[0-5])\.){3}(?:[01]?\d{1,2}|2[0-4]\d|25[0-5])\]))$/;
var url = /^(?!mailto:)(?:(?:https?|ftp):\/\/)?(?:\S+(?::\S*)?@)?(?:(?:(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[0-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]+-?)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]+-?)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})))|localhost)(?::\d{2,5})?(?:\/[^\s]*)?$/i;
var creditCard = /^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$/;
var isbn10Maybe = /^(?:[0-9]{9}X|[0-9]{10})$/
, isbn13Maybe = /^(?:[0-9]{13})$/;
var ipv4Maybe = /^(\d?\d?\d)\.(\d?\d?\d)\.(\d?\d?\d)\.(\d?\d?\d)$/
, ipv6 = /^::|^::1|^([a-fA-F0-9]{1,4}::?){1,7}([a-fA-F0-9]{1,4})$/;
var uuid = {
'3': /^[0-9A-F]{8}-[0-9A-F]{4}-3[0-9A-F]{3}-[0-9A-F]{4}-[0-9A-F]{12}$/i
, '4': /^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i
, '5': /^[0-9A-F]{8}-[0-9A-F]{4}-5[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i
, all: /^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/i
};
var alpha = /^[a-zA-Z]+$/
, alphanumeric = /^[a-zA-Z0-9]+$/
, numeric = /^-?[0-9]+$/
, int = /^(?:-?(?:0|[1-9][0-9]*))$/
, float = /^(?:-?(?:[0-9]+))?(?:\.[0-9]*)?(?:[eE][\+\-]?(?:[0-9]+))?$/
, hexadecimal = /^[0-9a-fA-F]+$/
, hexcolor = /^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$/;
validator.toString = function (input) {
if (input === null || typeof input === 'undefined' || (isNaN(input) && !input.length)) {
input = '';
} else if (typeof input === 'object' && input.toString) {
input = input.toString();
}
return input + '';
};
validator.toDate = function (date) {
if (Object.prototype.toString.call(date) === '[object Date]') {
return date;
}
date = Date.parse(date);
return !isNaN(date) ? new Date(date) : null;
};
validator.toFloat = function (str) {
return parseFloat(str);
};
validator.toInt = function (str, radix) {
return parseInt(str, radix || 10);
};
validator.toBoolean = function (str, strict) {
if (strict) {
return str === '1' || str === 'true';
}
return str !== '0' && str !== 'false' && str !== '';
};
validator.equals = function (str, comparison) {
return str === validator.toString(comparison);
};
validator.contains = function (str, elem) {
return str.indexOf(validator.toString(elem)) >= 0;
};
validator.matches = function (str, pattern, modifiers) {
if (Object.prototype.toString.call(pattern) !== '[object RegExp]') {
pattern = new RegExp(pattern, modifiers);
}
return pattern.test(str);
};
validator.isEmail = function (str) {
return email.test(str);
};
validator.isURL = function (str) {
return str.length < 2083 && url.test(str);
};
validator.isIP = function (str, version) {
version = validator.toString(version);
if (!version) {
return validator.isIP(str, 4) || validator.isIP(str, 6);
} else if (version === '4') {
if (!ipv4Maybe.test(str)) {
return false;
}
var parts = str.split('.').sort();
return parts[3] <= 255;
}
return version === '6' && ipv6.test(str);
};
validator.isAlpha = function (str) {
return alpha.test(str);
};
validator.isAlphanumeric = function (str) {
return alphanumeric.test(str);
};
validator.isNumeric = function (str) {
return numeric.test(str);
};
validator.isHexadecimal = function (str) {
return hexadecimal.test(str);
};
validator.isHexColor = function (str) {
return hexcolor.test(str);
};
validator.isLowercase = function (str) {
return str === str.toLowerCase();
};
validator.isUppercase = function (str) {
return str === str.toUpperCase();
};
validator.isInt = function (str) {
return int.test(str);
};
validator.isFloat = function (str) {
return str !== '' && float.test(str);
};
validator.isDivisibleBy = function (str, num) {
return validator.toFloat(str) % validator.toInt(num) === 0;
};
validator.isNull = function (str) {
return str.length === 0;
};
validator.isLength = function (str, min, max) {
return str.length >= min && (typeof max === 'undefined' || str.length <= max);
};
validator.isUUID = function (str, version) {
var pattern = uuid[version ? version : 'all'];
return pattern && pattern.test(str);
};
validator.isDate = function (str) {
return !isNaN(Date.parse(str));
};
validator.isAfter = function (str, date) {
var comparison = validator.toDate(date || new Date())
, original = validator.toDate(str);
return original && comparison && original > comparison;
};
validator.isBefore = function (str, date) {
var comparison = validator.toDate(date || new Date())
, original = validator.toDate(str);
return original && comparison && original < comparison;
};
validator.isIn = function (str, options) {
if (!options || typeof options.indexOf !== 'function') {
return false;
}
if (Object.prototype.toString.call(options) === '[object Array]') {
var array = [];
for (var i = 0, len = options.length; i < len; i++) {
array[i] = validator.toString(options[i]);
}
options = array;
}
return options.indexOf(str) >= 0;
};
validator.isCreditCard = function (str) {
var sanitized = str.replace(/[^0-9]+/g, '');
if (!creditCard.test(sanitized)) {
return false;
}
var sum = 0, digit, tmpNum, shouldDouble;
for (var i = sanitized.length - 1; i >= 0; i--) {
digit = sanitized.substring(i, (i + 1));
tmpNum = parseInt(digit, 10);
if (shouldDouble) {
tmpNum *= 2;
if (tmpNum >= 10) {
sum += ((tmpNum % 10) + 1);
} else {
sum += tmpNum;
}
} else {
sum += tmpNum;
}
shouldDouble = !shouldDouble;
}
return (sum % 10) === 0 ? sanitized : false;
};
validator.isISBN = function (str, version) {
version = validator.toString(version);
if (!version) {
return validator.isISBN(str, 10) || validator.isISBN(str, 13);
}
var sanitized = str.replace(/[\s-]+/g, '')
, checksum = 0, i;
if (version === '10') {
if (!isbn10Maybe.test(sanitized)) {
return false;
}
for (i = 0; i < 9; i++) {
checksum += (i + 1) * sanitized.charAt(i);
}
if (sanitized.charAt(9) === 'X') {
checksum += 10 * 10;
} else {
checksum += 10 * sanitized.charAt(9);
}
if ((checksum % 11) === 0) {
return sanitized;
}
} else if (version === '13') {
if (!isbn13Maybe.test(sanitized)) {
return false;
}
var factor = [ 1, 3 ];
for (i = 0; i < 12; i++) {
checksum += factor[i % 2] * sanitized.charAt(i);
}
if (sanitized.charAt(12) - ((10 - (checksum % 10)) % 10) === 0) {
return sanitized;
}
}
return false;
};
validator.ltrim = function (str, chars) {
var pattern = chars ? new RegExp('^[' + chars + ']+', 'g') : /^\s+/g;
return str.replace(pattern, '');
};
validator.rtrim = function (str, chars) {
var pattern = chars ? new RegExp('[' + chars + ']+$', 'g') : /\s+$/g;
return str.replace(pattern, '');
};
validator.trim = function (str, chars) {
var pattern = chars ? new RegExp('^[' + chars + ']+|[' + chars + ']+$', 'g') : /^\s+|\s+$/g;
return str.replace(pattern, '');
};
validator.escape = function (str) {
return (str.replace(/&/g, '&')
.replace(/"/g, '"')
.replace(/</g, '<')
.replace(/>/g, '>'));
};
validator.whitelist = function (str, chars) {
return str.replace(new RegExp('[^' + chars + ']+', 'g'), '');
};
validator.blacklist = function (str, chars) {
return str.replace(new RegExp('[' + chars + ']+', 'g'), '');
};
for (var name in validator) {
if (name === 'toString' || name === 'toDate' || typeof validator[name] !== 'function') {
continue;
}
(function (name) {
var original = validator[name];
validator[name] = function () {
var args = Array.prototype.slice.call(arguments);
args[0] = validator.toString(args[0]);
return original.apply(validator, args);
};
})(name);
}
return validator;
});