forked from bekos/php-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseValidator.php
451 lines (393 loc) · 12.2 KB
/
BaseValidator.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
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
<?php
/**
* Validation library.
*
* This abstract class contains the skeleton of the validation library.
* Extend to provide specific rules and error messages.
*
* @author Tasos Bekos <tbekos@gmail.com>
* @see https://github.com/bekos/php-validation
* @see Based on idea: http://brettic.us/2010/06/18/form-validation-class-using-php-5-3/
* @abstract
*/
abstract class BaseValidator {
/**
* Error messages.
*
* @var array
*/
protected $errors = array();
/**
* Vaildation rules.
*
* Each rule contains the ID, used to define the rule function
* we are going to use to validate it.
* It may contains arguments used in validation and
* default message creation.
* It may contains a custom message template.
*
* @var array with arrays
*/
protected $rules = array();
/**
* Field labels used in error messages.
*
* @var array
*/
protected $fields = array();
/**
* Function's per rule.
*
* @var array of functions
*/
protected $functions = array();
/**
* Data to be validated.
*
* If string POST|GET we use the corresponding array without the need
* to copy the whole array in our class member.
*
* @var string|array
*/
protected $data = null;
/**
* Default date format used in date validation rules.
*
* @var string
*/
protected $defaultDateFormat = 'm/d/Y';
/**
* Default field label if none is provided or unknown.
*
* @var string
*/
protected static $defaultFieldLabel = 'Field with the name of "%s"';
/**
* Global default error message,
* if message for a specific rule is not defined in $errorMessages.
*
* @var string
*/
protected static $defaultErrorMessage = '%s has an error.';
/**
* If a specific default error message is not present in $errorMessages,
* then allow or not to search the parent class
* for the corresponding message.
*
* Override for i18n purposes.
*
* @var bool
*/
protected $searchErrorMessageInParent = FALSE;
/**
* Default error messages for each rule.
*
* @var array
*/
private $errorMessages = array();
/**
* Constructor.
* Define values to validate.
*
* @param string|array $data POST | GET | actual array
*/
function __construct($data = null) {
if (is_null($data)) {
$data = 'POST'; // No need to duplicate POST variables
}
$this->data = (is_string($data)) ? strtoupper($data) : $data;
// Error messages
$this->errorMessages = $this->buildErrorMessages();
}
/**
* Set default date format.
*
* @param string $format
*/
public static function setDateFormat($format) {
self::$defaultDateFormat = $format;
}
/**
* Get proper date from value.
*
* @param integer|string $val
* @return DateTime
*/
protected function getProperDate($val, $format) {
if (is_numeric($val)) {
$date = new DateTime($val . ' days'); // Days difference from today
} else {
// Date is contained in another field
$date = $this->getVal($val);
if ($date === FALSE) {
// Lastly, the actual date is passed as argument.
$date = $val;
}
// Create DateTime object with the specified format.
$date = DateTime::createFromFormat($format, $date);
if ($date === FALSE) {
die(__FUNCTION__ . ': Could not define proper date.');
return $this;
}
}
return $date;
}
/**
* Callback to custom validation function.
*
* @param string $name
* @param mixed $function
* @param string $message
* @return Validator
*/
public function callback($name, $function, $message = '') {
if (is_callable($function)) {
// set rule and function
$this->setRule($name, $function, $message);
} elseif (is_string($function) && preg_match($function, 'callback') !== FALSE) {
// we can parse this as a regexp. set rule function accordingly.
$this->setRule($name, function($value) use ($function) {
return (preg_match($function, $value));
}, $message);
} else {
// just set a rule function to check equality.
$this->setRule($name, function($value) use ( $function) {
return ((string) $value === (string) $function);
}, $message);
}
return $this;
}
/**
* Whether errors have been found.
*
* @return bool
*/
public function hasErrors() {
return (count($this->errors) > 0);
}
/**
* Get specific error.
*
* @param string $field
* @return string
*/
public function getError($field) {
return (isset($this->errors[$field])) ? $this->errors[$field] : FALSE;
}
/**
* Get all errors.
*
* @return array
*/
public function getAllErrors($keys = TRUE) {
return ($keys === TRUE) ? $this->errors : array_values($this->errors);
}
/**
* Get specific value.
*
* @param string $key
* @return mixed
*/
protected function getVal($key) {
$pos = strpos($key, '.'); // Whether we have array with dot key notation
$index = FALSE;
if ($pos !== FALSE) {
$index = substr($key, $pos + 1);
$key = substr($key, 0, $pos);
}
if (is_string($this->data)) {
switch ($this->data) {
case 'POST':
$value = (isset($_POST[$key])) ? $_POST[$key] : FALSE;
break;
case 'GET':
$value = (isset($_GET[$key])) ? $_GET[$key] : FALSE;
break;
default:
return FALSE;
break;
}
} else {
$value = (isset($this->data[$key])) ? $this->data[$key] : FALSE;
}
if ($index !== FALSE && $value !== FALSE && is_array($value)) {
// Get value in multidimensional array with dot key notation
$value = self::_getVal(explode('.', $index), $value);
}
return $value;
}
/**
* Navigate through a [multidimensional] array looking for a particular index.
*
* @param array $index The index sequence we are navigating down.
* @param array $value The portion of the array to process.
* @return mixed
*/
private static function _getVal($index, $value) {
if (is_array($index) && count($index)) {
$currentIndex = array_shift($index);
}
if (isset($currentIndex) && isset($value[$currentIndex])) {
$value = $value[$currentIndex];
} else {
return FALSE;
}
if (is_array($value) && count($value)) {
return self::_getVal($index, $value);
} else {
return $value;
}
}
/**
* Set rule.
*
* @param string $rule Rule name.
* @param closure $function Rule function.
* @param string $message Custom error message if rule is violated.
* @param array $args Arguments used in rule's validation and error message.
*/
protected function setRule($rule, $function, $message = null, $args = array()) {
$aRule = array('id' => $rule);
// Custom arguments
if (!empty($args)) {
$aRule['args'] = $args; // Specific arguments for this rule
}
// Custom message
if (!empty($message)) {
$aRule['msg'] = $message; // User provides his own error template
}
// Add rule
$this->rules[] = $aRule;
// Cache rule's function
if (!array_key_exists($rule, $this->functions)) {
if (!is_callable($function)) {
die('Invalid function for rule: ' . $rule);
}
$this->functions[$rule] = $function;
}
}
/**
* Get field label.
*
* If no label is provided from user,
* try to find if label for specific $key is previously defined,
* else return the default one.
*
* @param string $key
* @param string $label
* @return string
*/
protected function getFieldLabel($key, $label) {
if (empty($label)) {
return (isset($this->fields[$key])) ?
$this->fields[$key] :
sprintf(static::$defaultFieldLabel, $key);
} else {
return $label;
}
}
/**
* Validate rules.
*
* @param string $key Field name.
* @param string $label Field label.
* @return mixed Value of field if successfully validated, FALSE otherwise.
*/
public function validate($key, $label = '') {
// set up field name for error message
$this->fields[$key] = $this->getFieldLabel($key, $label);
// Keep value for use in each rule
$val = $this->getVal($key);
$valid = $this->_validate($val, $key);
$this->rules = array(); // Reset rules
return ($valid === FALSE) ? FALSE : $val /* TRUE */;
}
/**
* Validate each rule.
*
* @param string $val Value to be examined.
* @param string $key
* @return boolean TRUE if no error found, FALSE otherwise.
*/
private function _validate($val, $key) {
if (is_array($val)) {
// Run validations on every element of array.
// If one of them fails, return FALSE.
foreach ($val as $_val) {
if ($this->_validate($_val, $key) === FALSE) {
return FALSE;
}
}
} else {
// Try each rule function
foreach ($this->rules as $rule) {
$ruleId = $rule['id'];
$function = $this->functions[$ruleId];
$valid = (isset($rule['args'])) ? $function($val, $rule['args']) : $function($val);
if ($valid === FALSE) {
$this->registerError($rule, $key);
return FALSE;
}
}
}
return TRUE;
}
/**
* Register error.
*
* @param array $rule Rule's id, arguments and custom message.
* @param string $key Field key.
*/
private function registerError($rule, $key) {
if (isset($rule['msg'])) {
$message = $rule['msg']; // Custom message
} else {
$ruleId = $rule['id'];
$args = (isset($rule['args'])) ? $rule['args'] : null;
$message = $this->getErrorMessage($ruleId, $args);
}
$this->errors[$key] = sprintf($message, $this->fields[$key]);
}
/**
* Get default error message for $key rule.
*
* @param string $key Rule id.
* @param array $args
* @return string Message template.
*/
protected function getErrorMessage($key, $args = null) {
if (isset($this->errorMessages[$key])) {
$_message = $this->errorMessages[$key];
if (is_callable($_message)) {
$_message = $_message($args);
}
} else {
if ($this->searchErrorMessageInParent === TRUE && ($className = get_parent_class($this)) !== FALSE) {
$rc = new ReflectionClass($className);
$class = $rc->newInstance();
$_message = $class->getErrorMessage($key, $args);
} else {
$_message = static::$defaultErrorMessage;
}
}
return $_message;
}
/**
* Set default error message for rule.
*
* This way you can override the default error message, if you don't
* want to extend the class you use.
*
* @param string $key Rule id.
* @param string $message Message template.
* @return bool TRUE if successfully set, FALSE otherwise.
*/
public function setErrorMessage($key, $message) {
if (empty($message)) {
return FALSE;
}
$this->errorMessages[$key] = $message;
return TRUE;
}
}
?>