-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValidation.php
406 lines (348 loc) · 15.1 KB
/
Validation.php
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
<?php
/*--------------------------------------------------------------------------------------------*\
validation.php
--------------
v2.3.3, Apr 2010
This script provides generic validation for any web form. For a discussion and example usage
of this script, go to http://www.benjaminkeen.com/software/php_validation
This script is written by Ben Keen with additional code contributed by Mihai Ionescu and
Nathan Howard. It is free to distribute, to re-write - to do what ever you want with it.
Before using it, please read the following disclaimer.
THIS SOFTWARE IS PROVIDED ON AN "AS-IS" BASIS WITHOUT WARRANTY OF ANY KIND. BENJAMINKEEN.COM
SPECIFICALLY DISCLAIMS ANY OTHER WARRANTY, EXPRESS OR IMPLIED, INCLUDING ANY WARRANTY OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL BENJAMINKEEN.COM BE
LIABLE FOR ANY CONSEQUENTIAL, INDIRECT, SPECIAL OR INCIDENTAL DAMAGES, EVEN IF BENJAMINKEEN.COM
HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH POTENTIAL LOSS OR DAMAGE. USER AGREES TO HOLD
BENJAMINKEEN.COM HARMLESS FROM AND AGAINST ANY AND ALL CLAIMS, LOSSES, LIABILITIES AND EXPENSES.
\*--------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------*\
Function: validateFields()
Purpose: generic form field validation.
Parameters: field - the POST / GET fields from a form which need to be validated.
rules - an array of the validation rules. Each rule is a string of the form:
"[if:FIELDNAME=VALUE,]REQUIREMENT,fieldname[,fieldname2 [,fieldname3, date_flag]],error message"
if:FIELDNAME=VALUE, This allows us to only validate a field
only if a fieldname FIELDNAME has a value VALUE. This
option allows for nesting; i.e. you can have multiple
if clauses, separated by a comma. They will be examined
in the order in which they appear in the line.
Valid REQUIREMENT strings are:
"required" - field must be filled in
"digits_only" - field must contain digits only
"is_alpha" - field must only contain alphanumeric characters (0-9, a-Z)
"custom_alpha" - field must be of the custom format specified.
fieldname: the name of the field
fieldname2: a character or sequence of special characters. These characters are:
L An uppercase Letter. V An uppercase Vowel.
l A lowercase letter. v A lowercase vowel.
D A letter (upper or lower). F A vowel (upper or lower).
C An uppercase Consonant. x Any number, 0-9.
c A lowercase consonant. X Any number, 1-9.
E A consonant (upper or lower).
"reg_exp" - field must match the supplied regular expression.
fieldname: the name of the field
fieldname2: the regular expression
fieldname3: (optional) flags for the reg exp (like i for case insensitive
"letters_only" - field must only contains letters (a-Z)
"length=X" - field has to be X characters long
"length=X-Y" - field has to be between X and Y (inclusive) characters long
"length>X" - field has to be greater than X characters long
"length>=X" - field has to be greater than or equal to X characters long
"length<X" - field has to be less than X characters long
"length<=X" - field has to be less than or equal to X characters long
"valid_email" - field has to be valid email address
"valid_date" - field has to be a valid date
fieldname: MONTH
fieldname2: DAY
fieldname3: YEAR
date_flag: "later_date" / "any_date"
"same_as" - fieldname is the same as fieldname2 (for password comparison)
"range=X-Y" - field must be a number between the range of X and Y inclusive
"range>X" - field must be a number greater than X
"range>=X" - field must be a number greater than or equal to X
"range<X" - field must be a number less than X
"range<=X" - field must be a number less than or equal to X
Comments: With both digits_only, valid_email and is_alpha options, if the empty string is passed
in it won't generate an error, thus allowing validation of non-required fields. So,
for example, if you want a field to be a valid email address, provide validation for
both "required" and "valid_email".
\*--------------------------------------------------------------------------------------------*/
class Validation
{
function validate ($fields, $rules)
{
$errors = array();
// loop through rules
for ($i = 0; $i < count($rules); $i++)
{
// split row into component parts
$row = explode(",", $rules[$i]);
// while the row begins with "if:..." test the condition. If true, strip the if:..., part and
// continue evaluating the rest of the line. Keep repeating this while the line begins with an
// if-condition. If it fails any of the conditions, don't bother validating the rest of the line
$satisfies_if_conditions = true;
while (preg_match("/^if:/", $row[0]))
{
$condition = preg_replace("/^if:/", "", $row[0]);
// check if it's a = or != test
$comparison = "equal";
$parts = array();
if (preg_match("/!=/", $condition))
{
$parts = explode("!=", $condition);
$comparison = "not_equal";
}
else $parts = explode("=", $condition);
$field_to_check = $parts[0];
$value_to_check = $parts[1];
// if the VALUE is NOT the same, we don't need to validate this field. Return.
if ($comparison == "equal" && $fields[$field_to_check] != $value_to_check)
{
$satisfies_if_conditions = false;
break;
}
else if ($comparison == "not_equal" && $fields[$field_to_check] == $value_to_check)
{
$satisfies_if_conditions = false;
break;
}
else array_shift($row); // remove this if-condition from line, and continue validating line
}
if (!$satisfies_if_conditions) continue;
$requirement = $row[0];
$field_name = $row[1];
// depending on the validation test, store the incoming strings for use later...
if (count($row) == 6) // valid_date
{
$field_name2 = $row[2];
$field_name3 = $row[3];
$date_flag = $row[4];
$error_message = $row[5];
}
else if (count($row) == 5) // reg_exp (WITH flags like g, i, m)
{
$field_name2 = $row[2];
$field_name3 = $row[3];
$error_message = $row[4];
}
else if (count($row) == 4) // same_as, custom_alpha, reg_exp (without flags like g, i, m)
{
$field_name2 = $row[2];
$error_message = $row[3];
}
else $error_message = $row[2]; // everything else!
// if the requirement is "length=...", rename requirement to "length" for switch statement
if (preg_match("/^length/", $requirement))
{
$length_requirements = $requirement;
$requirement = "length";
}
// if the requirement is "range=...", rename requirement to "range" for switch statement
if (preg_match("/^range/", $requirement))
{
$range_requirements = $requirement;
$requirement = "range";
}
// now, validate whatever is required of the field
switch ($requirement)
{
case "required":
if (!isset($fields[$field_name]) || $fields[$field_name] == "") $errors[] = $field_name.':'.$error_message;
break;
case "digits_only":
if (isset($fields[$field_name]) && preg_match("/\D/", $fields[$field_name])) $errors[] = $field_name.':'.$error_message;
break;
case "letters_only":
if (isset($fields[$field_name]) && preg_match("/[^a-zA-Z]/", $fields[$field_name])) $errors[] = $field_name.':'.$error_message;
break;
// doesn't fail if field is empty
case "valid_email":
$regexp = "/^[a-z0-9]+([_+\\.-][a-z0-9]+)*@([a-z0-9]+([\.-][a-z0-9]+)*)+\\.[a-z]{2,}$/i";
if (isset($fields[$field_name]) && !empty($fields[$field_name]) && !preg_match($regexp, $fields[$field_name])) $errors[] = $field_name.':'.$error_message;
break;
case "length":
$comparison_rule = "";
$rule_string = "";
if (preg_match("/length=/", $length_requirements))
{
$comparison_rule = "equal";
$rule_string = preg_replace("/length=/", "", $length_requirements);
}
else if (preg_match("/length>=/", $length_requirements))
{
$comparison_rule = "greater_than_or_equal";
$rule_string = preg_replace("/length>=/", "", $length_requirements);
}
else if (preg_match("/length<=/", $length_requirements))
{
$comparison_rule = "less_than_or_equal";
$rule_string = preg_replace("/length<=/", "", $length_requirements);
}
else if (preg_match("/length>/", $length_requirements))
{
$comparison_rule = "greater_than";
$rule_string = preg_replace("/length>/", "", $length_requirements);
}
else if (preg_match("/length</", $length_requirements))
{
$comparison_rule = "less_than";
$rule_string = preg_replace("/length</", "", $length_requirements);
}
switch ($comparison_rule)
{
case "greater_than_or_equal":
if (!(strlen($fields[$field_name]) >= $rule_string)) $errors[] = $field_name.':'.$error_message;
break;
case "less_than_or_equal":
if (!(strlen($fields[$field_name]) <= $rule_string)) $errors[] = $field_name.':'.$error_message;
break;
case "greater_than":
if (!(strlen($fields[$field_name]) > $rule_string)) $errors[] = $field_name.':'.$error_message;
break;
case "less_than":
if (!(strlen($fields[$field_name]) < $rule_string)) $errors[] = $field_name.':'.$error_message;
break;
case "equal":
// if the user supplied two length fields, make sure the field is within that range
if (preg_match("/-/", $rule_string))
{
list($start, $end) = explode("-", $rule_string);
if (strlen($fields[$field_name]) < $start || strlen($fields[$field_name]) > $end) $errors[] = $field_name.':'.$error_message;
}
// otherwise, check it's EXACTLY the size the user specified
else
{
if (strlen($fields[$field_name]) != $rule_string) $errors[] = $field_name.':'.$error_message;
}
break;
}
break;
case "range":
$comparison_rule = "";
$rule_string = "";
if (preg_match("/range=/", $range_requirements))
{
$comparison_rule = "equal";
$rule_string = preg_replace("/range=/", "", $range_requirements);
}
else if (preg_match("/range>=/", $range_requirements))
{
$comparison_rule = "greater_than_or_equal";
$rule_string = preg_replace("/range>=/", "", $range_requirements);
}
else if (preg_match("/range<=/", $range_requirements))
{
$comparison_rule = "less_than_or_equal";
$rule_string = preg_replace("/range<=/", "", $range_requirements);
}
else if (preg_match("/range>/", $range_requirements))
{
$comparison_rule = "greater_than";
$rule_string = preg_replace("/range>/", "", $range_requirements);
}
else if (preg_match("/range</", $range_requirements))
{
$comparison_rule = "less_than";
$rule_string = preg_replace("/range</", "", $range_requirements);
}
switch ($comparison_rule)
{
case "greater_than":
if (!($fields[$field_name] > $rule_string)) $errors[] = $field_name.':'.$error_message;
break;
case "less_than":
if (!($fields[$field_name] < $rule_string)) $errors[] = $field_name.':'.$error_message;
break;
case "greater_than_or_equal":
if (!($fields[$field_name] >= $rule_string)) $errors[] = $field_name.':'.$error_message;
break;
case "less_than_or_equal":
if (!($fields[$field_name] <= $rule_string)) $errors[] = $field_name.':'.$error_message;
break;
case "equal":
list($start, $end) = explode("-", $rule_string);
if (($fields[$field_name] < $start) || ($fields[$field_name] > $end)) $errors[] = $field_name.':'.$error_message;
break;
}
break;
case "same_as":
if ($fields[$field_name] != $fields[$field_name2]) $errors[] = $field_name.':'.$error_message;
break;
case "valid_date":
// this is written for future extensibility of isValidDate function to allow
// checking for dates BEFORE today, AFTER today, IS today and ANY day.
$is_later_date = false;
if ($date_flag == "later_date") $is_later_date = true;
else if ($date_flag == "any_date") $is_later_date = false;
if (!$this->is_valid_date($fields[$field_name], $fields[$field_name2], $fields[$field_name3], $is_later_date)) $errors[] = $field_name.':'.$error_message;
break;
case "is_alpha":
if (preg_match('/[^A-Za-z0-9]/', $fields[$field_name])) $errors[] = $field_name.':'.$error_message;
break;
case "custom_alpha":
$chars = array();
$chars["L"] = "[A-Z]";
$chars["V"] = "[AEIOU]";
$chars["l"] = "[a-z]";
$chars["v"] = "[aeiou]";
$chars["D"] = "[a-zA-Z]";
$chars["F"] = "[aeiouAEIOU]";
$chars["C"] = "[BCDFGHJKLMNPQRSTVWXYZ]";
$chars["x"] = "[0-9]";
$chars["c"] = "[bcdfghjklmnpqrstvwxyz]";
$chars["X"] = "[1-9]";
$chars["E"] = "[bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ]";
$reg_exp_str = "";
for ($j = 0; $j < strlen($field_name2); $j++)
{
if (array_key_exists($field_name2[$j], $chars)) $reg_exp_str .= $chars[$field_name2[$j]];
else $reg_exp_str .= $field_name2[$j];
}
if (!empty($fields[$field_name]) && !preg_match("/$reg_exp_str/", $fields[$field_name])) $errors[] = $field_name.':'.$error_message;
break;
case "reg_exp":
$reg_exp_str = $field_name2;
// rather crumby, but...
if (count($row) == 5) $reg_exp = "/".$reg_exp_str."/".$row[3];
else $reg_exp = "/".$reg_exp_str."/";
if (!empty($fields[$field_name]) && !preg_match($reg_exp, $fields[$field_name])) $errors[] = $field_name.':'.$error_message;
break;
default:
die("Unknown requirement flag in validate_fields(): $requirement");
break;
}
}
return $errors;
}
/*------------------------------------------------------------------------------------------------*\
Function: is_valid_date
Purpose: checks a date is valid / is later than current date
Parameters: $month - an integer between 1 and 12
$day - an integer between 1 and 31 (depending on month)
$year - a 4-digit integer value
$is_later_date - a boolean value. If true, the function verifies the date being passed
in is LATER than the current date.
\*------------------------------------------------------------------------------------------------*/
function is_valid_date ($month, $day, $year, $is_later_date)
{
// depending on the year, calculate the number of days in the month
if ($year % 4 == 0) // LEAP YEAR
$days_in_month = array(31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
else $days_in_month = array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
// first, check the incoming month and year are valid.
if (!$month || !$day || !$year) return false;
if (1 > $month || $month > 12) return false;
if ($year < 0) return false;
if (1 > $day || $day > $days_in_month[$month - 1]) return false;
// if required, verify the incoming date is LATER than the current date.
if ($is_later_date)
{
// get current date
$today = date("U");
$date = mktime(0, 0, 0, $month, $day, $year);
if ($date < $today) return false;
}
return true;
}
}
?>