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
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
|
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* Validation library.
*
* $Id: Validation.php 4120 2009-03-25 19:22:31Z jheathco $
*
* @package Validation
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
*/
class Validation_Core extends ArrayObject {
// Filters
protected $pre_filters = array();
protected $post_filters = array();
// Rules and callbacks
protected $rules = array();
protected $callbacks = array();
// Rules that are allowed to run on empty fields
protected $empty_rules = array('required', 'matches');
// Errors
protected $errors = array();
protected $messages = array();
// Fields that are expected to be arrays
protected $array_fields = array();
// Checks if there is data to validate.
protected $submitted;
/**
* Creates a new Validation instance.
*
* @param array array to use for validation
* @return object
*/
public static function factory(array $array)
{
return new Validation($array);
}
/**
* Sets the unique "any field" key and creates an ArrayObject from the
* passed array.
*
* @param array array to validate
* @return void
*/
public function __construct(array $array)
{
// The array is submitted if the array is not empty
$this->submitted = ! empty($array);
parent::__construct($array, ArrayObject::ARRAY_AS_PROPS | ArrayObject::STD_PROP_LIST);
}
/**
* Magic clone method, clears errors and messages.
*
* @return void
*/
public function __clone()
{
$this->errors = array();
$this->messages = array();
}
/**
* Create a copy of the current validation rules and change the array.
*
* @chainable
* @param array new array to validate
* @return Validation
*/
public function copy(array $array)
{
$copy = clone $this;
$copy->exchangeArray($array);
return $copy;
}
/**
* Test if the data has been submitted.
*
* @return boolean
*/
public function submitted($value = NULL)
{
if (is_bool($value))
{
$this->submitted = $value;
}
return $this->submitted;
}
/**
* Returns an array of all the field names that have filters, rules, or callbacks.
*
* @return array
*/
public function field_names()
{
// All the fields that are being validated
$fields = array_keys(array_merge
(
$this->pre_filters,
$this->rules,
$this->callbacks,
$this->post_filters
));
// Remove wildcard fields
$fields = array_diff($fields, array('*'));
return $fields;
}
/**
* Returns the array values of the current object.
*
* @return array
*/
public function as_array()
{
return $this->getArrayCopy();
}
/**
* Returns the ArrayObject values, removing all inputs without rules.
* To choose specific inputs, list the field name as arguments.
*
* @param boolean return only fields with filters, rules, and callbacks
* @return array
*/
public function safe_array()
{
// Load choices
$choices = func_get_args();
$choices = empty($choices) ? NULL : array_combine($choices, $choices);
// Get field names
$fields = $this->field_names();
$safe = array();
foreach ($fields as $field)
{
if ($choices === NULL OR isset($choices[$field]))
{
if (isset($this[$field]))
{
$value = $this[$field];
if (is_object($value))
{
// Convert the value back into an array
$value = $value->getArrayCopy();
}
}
else
{
// Even if the field is not in this array, it must be set
$value = NULL;
}
// Add the field to the array
$safe[$field] = $value;
}
}
return $safe;
}
/**
* Add additional rules that will forced, even for empty fields. All arguments
* passed will be appended to the list.
*
* @chainable
* @param string rule name
* @return object
*/
public function allow_empty_rules($rules)
{
// Any number of args are supported
$rules = func_get_args();
// Merge the allowed rules
$this->empty_rules = array_merge($this->empty_rules, $rules);
return $this;
}
/**
* Converts a filter, rule, or callback into a fully-qualified callback array.
*
* @return mixed
*/
protected function callback($callback)
{
if (is_string($callback))
{
if (strpos($callback, '::') !== FALSE)
{
$callback = explode('::', $callback);
}
elseif (function_exists($callback))
{
// No need to check if the callback is a method
$callback = $callback;
}
elseif (method_exists($this, $callback))
{
// The callback exists in Validation
$callback = array($this, $callback);
}
elseif (method_exists('valid', $callback))
{
// The callback exists in valid::
$callback = array('valid', $callback);
}
}
if ( ! is_callable($callback, FALSE))
{
if (is_array($callback))
{
if (is_object($callback[0]))
{
// Object instance syntax
$name = get_class($callback[0]).'->'.$callback[1];
}
else
{
// Static class syntax
$name = $callback[0].'::'.$callback[1];
}
}
else
{
// Function syntax
$name = $callback;
}
throw new Kohana_Exception('validation.not_callable', $name);
}
return $callback;
}
/**
* Add a pre-filter to one or more inputs. Pre-filters are applied before
* rules or callbacks are executed.
*
* @chainable
* @param callback filter
* @param string fields to apply filter to, use TRUE for all fields
* @return object
*/
public function pre_filter($filter, $field = TRUE)
{
if ($field === TRUE OR $field === '*')
{
// Use wildcard
$fields = array('*');
}
else
{
// Add the filter to specific inputs
$fields = func_get_args();
$fields = array_slice($fields, 1);
}
// Convert to a proper callback
$filter = $this->callback($filter);
foreach ($fields as $field)
{
// Add the filter to specified field
$this->pre_filters[$field][] = $filter;
}
return $this;
}
/**
* Add a post-filter to one or more inputs. Post-filters are applied after
* rules and callbacks have been executed.
*
* @chainable
* @param callback filter
* @param string fields to apply filter to, use TRUE for all fields
* @return object
*/
public function post_filter($filter, $field = TRUE)
{
if ($field === TRUE)
{
// Use wildcard
$fields = array('*');
}
else
{
// Add the filter to specific inputs
$fields = func_get_args();
$fields = array_slice($fields, 1);
}
// Convert to a proper callback
$filter = $this->callback($filter);
foreach ($fields as $field)
{
// Add the filter to specified field
$this->post_filters[$field][] = $filter;
}
return $this;
}
/**
* Add rules to a field. Validation rules may only return TRUE or FALSE and
* can not manipulate the value of a field.
*
* @chainable
* @param string field name
* @param callback rules (one or more arguments)
* @return object
*/
public function add_rules($field, $rules)
{
// Get the rules
$rules = func_get_args();
$rules = array_slice($rules, 1);
if ($field === TRUE)
{
// Use wildcard
$field = '*';
}
foreach ($rules as $rule)
{
// Arguments for rule
$args = NULL;
if (is_string($rule))
{
if (preg_match('/^([^\[]++)\[(.+)\]$/', $rule, $matches))
{
// Split the rule into the function and args
$rule = $matches[1];
$args = preg_split('/(?<!\\\\),\s*/', $matches[2]);
// Replace escaped comma with comma
$args = str_replace('\,', ',', $args);
}
}
if ($rule === 'is_array')
{
// This field is expected to be an array
$this->array_fields[$field] = $field;
}
// Convert to a proper callback
$rule = $this->callback($rule);
// Add the rule, with args, to the field
$this->rules[$field][] = array($rule, $args);
}
return $this;
}
/**
* Add callbacks to a field. Callbacks must accept the Validation object
* and the input name. Callback returns are not processed.
*
* @chainable
* @param string field name
* @param callbacks callbacks (unlimited number)
* @return object
*/
public function add_callbacks($field, $callbacks)
{
// Get all callbacks as an array
$callbacks = func_get_args();
$callbacks = array_slice($callbacks, 1);
if ($field === TRUE)
{
// Use wildcard
$field = '*';
}
foreach ($callbacks as $callback)
{
// Convert to a proper callback
$callback = $this->callback($callback);
// Add the callback to specified field
$this->callbacks[$field][] = $callback;
}
return $this;
}
/**
* Validate by processing pre-filters, rules, callbacks, and post-filters.
* All fields that have filters, rules, or callbacks will be initialized if
* they are undefined. Validation will only be run if there is data already
* in the array.
*
* @param object Validation object, used only for recursion
* @param object name of field for errors
* @return bool
*/
public function validate($object = NULL, $field_name = NULL)
{
if ($object === NULL)
{
// Use the current object
$object = $this;
}
// Get all field names
$fields = $this->field_names();
// Copy the array from the object, to optimize multiple sets
$array = $this->getArrayCopy();
foreach ($fields as $field)
{
if ($field === '*')
{
// Ignore wildcard
continue;
}
if ( ! isset($array[$field]))
{
if (isset($this->array_fields[$field]))
{
// This field must be an array
$array[$field] = array();
}
else
{
$array[$field] = NULL;
}
}
}
// Swap the array back into the object
$this->exchangeArray($array);
// Get all defined field names
$fields = array_keys($array);
foreach ($this->pre_filters as $field => $callbacks)
{
foreach ($callbacks as $callback)
{
if ($field === '*')
{
foreach ($fields as $f)
{
$this[$f] = is_array($this[$f]) ? array_map($callback, $this[$f]) : call_user_func($callback, $this[$f]);
}
}
else
{
$this[$field] = is_array($this[$field]) ? array_map($callback, $this[$field]) : call_user_func($callback, $this[$field]);
}
}
}
if ($this->submitted === FALSE)
return FALSE;
foreach ($this->rules as $field => $callbacks)
{
foreach ($callbacks as $callback)
{
// Separate the callback and arguments
list ($callback, $args) = $callback;
// Function or method name of the rule
$rule = is_array($callback) ? $callback[1] : $callback;
if ($field === '*')
{
foreach ($fields as $f)
{
// Note that continue, instead of break, is used when
// applying rules using a wildcard, so that all fields
// will be validated.
if (isset($this->errors[$f]))
{
// Prevent other rules from being evaluated if an error has occurred
continue;
}
if (empty($this[$f]) AND ! in_array($rule, $this->empty_rules))
{
// This rule does not need to be processed on empty fields
continue;
}
if ($args === NULL)
{
if ( ! call_user_func($callback, $this[$f]))
{
$this->errors[$f] = $rule;
// Stop validating this field when an error is found
continue;
}
}
else
{
if ( ! call_user_func($callback, $this[$f], $args))
{
$this->errors[$f] = $rule;
// Stop validating this field when an error is found
continue;
}
}
}
}
else
{
if (isset($this->errors[$field]))
{
// Prevent other rules from being evaluated if an error has occurred
break;
}
if ( ! in_array($rule, $this->empty_rules) AND ! $this->required($this[$field]))
{
// This rule does not need to be processed on empty fields
continue;
}
if ($args === NULL)
{
if ( ! call_user_func($callback, $this[$field]))
{
$this->errors[$field] = $rule;
// Stop validating this field when an error is found
break;
}
}
else
{
if ( ! call_user_func($callback, $this[$field], $args))
{
$this->errors[$field] = $rule;
// Stop validating this field when an error is found
break;
}
}
}
}
}
foreach ($this->callbacks as $field => $callbacks)
{
foreach ($callbacks as $callback)
{
if ($field === '*')
{
foreach ($fields as $f)
{
// Note that continue, instead of break, is used when
// applying rules using a wildcard, so that all fields
// will be validated.
if (isset($this->errors[$f]))
{
// Stop validating this field when an error is found
continue;
}
call_user_func($callback, $this, $f);
}
}
else
{
if (isset($this->errors[$field]))
{
// Stop validating this field when an error is found
break;
}
call_user_func($callback, $this, $field);
}
}
}
foreach ($this->post_filters as $field => $callbacks)
{
foreach ($callbacks as $callback)
{
if ($field === '*')
{
foreach ($fields as $f)
{
$this[$f] = is_array($this[$f]) ? array_map($callback, $this[$f]) : call_user_func($callback, $this[$f]);
}
}
else
{
$this[$field] = is_array($this[$field]) ? array_map($callback, $this[$field]) : call_user_func($callback, $this[$field]);
}
}
}
// Return TRUE if there are no errors
return $this->errors === array();
}
/**
* Add an error to an input.
*
* @chainable
* @param string input name
* @param string unique error name
* @return object
*/
public function add_error($field, $name)
{
$this->errors[$field] = $name;
return $this;
}
/**
* Sets or returns the message for an input.
*
* @chainable
* @param string input key
* @param string message to set
* @return string|object
*/
public function message($input = NULL, $message = NULL)
{
if ($message === NULL)
{
if ($input === NULL)
{
$messages = array();
$keys = array_keys($this->messages);
foreach ($keys as $input)
{
$messages[] = $this->message($input);
}
return implode("\n", $messages);
}
// Return nothing if no message exists
if (empty($this->messages[$input]))
return '';
// Return the HTML message string
return $this->messages[$input];
}
else
{
$this->messages[$input] = $message;
}
return $this;
}
/**
* Return the errors array.
*
* @param boolean load errors from a lang file
* @return array
*/
public function errors($file = NULL)
{
if ($file === NULL)
{
return $this->errors;
}
else
{
$errors = array();
foreach ($this->errors as $input => $error)
{
// Key for this input error
$key = "$file.$input.$error";
if (($errors[$input] = Kohana::lang($key)) === $key)
{
// Get the default error message
$errors[$input] = Kohana::lang("$file.$input.default");
}
}
return $errors;
}
}
/**
* Rule: required. Generates an error if the field has an empty value.
*
* @param mixed input value
* @return bool
*/
public function required($str)
{
if (is_object($str) AND $str instanceof ArrayObject)
{
// Get the array from the ArrayObject
$str = $str->getArrayCopy();
}
if (is_array($str))
{
return ! empty($str);
}
else
{
return ! ($str === '' OR $str === NULL OR $str === FALSE);
}
}
/**
* Rule: matches. Generates an error if the field does not match one or more
* other fields.
*
* @param mixed input value
* @param array input names to match against
* @return bool
*/
public function matches($str, array $inputs)
{
foreach ($inputs as $key)
{
if ($str !== (isset($this[$key]) ? $this[$key] : NULL))
return FALSE;
}
return TRUE;
}
/**
* Rule: length. Generates an error if the field is too long or too short.
*
* @param mixed input value
* @param array minimum, maximum, or exact length to match
* @return bool
*/
public function length($str, array $length)
{
if ( ! is_string($str))
return FALSE;
$size = utf8::strlen($str);
$status = FALSE;
if (count($length) > 1)
{
list ($min, $max) = $length;
if ($size >= $min AND $size <= $max)
{
$status = TRUE;
}
}
else
{
$status = ($size === (int) $length[0]);
}
return $status;
}
/**
* Rule: depends_on. Generates an error if the field does not depend on one
* or more other fields.
*
* @param mixed field name
* @param array field names to check dependency
* @return bool
*/
public function depends_on($field, array $fields)
{
foreach ($fields as $depends_on)
{
if ( ! isset($this[$depends_on]) OR $this[$depends_on] == NULL)
return FALSE;
}
return TRUE;
}
/**
* Rule: chars. Generates an error if the field contains characters outside of the list.
*
* @param string field value
* @param array allowed characters
* @return bool
*/
public function chars($value, array $chars)
{
return ! preg_match('![^'.implode('', $chars).']!u', $value);
}
} // End Validation
|