rule.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php namespace System\Validation;
  2. abstract class Rule {
  3. /**
  4. * The attributes being validated.
  5. *
  6. * @var array
  7. */
  8. public $attributes;
  9. /**
  10. * The validation error message.
  11. *
  12. * @var string
  13. */
  14. public $message;
  15. /**
  16. * Create a new validation Rule instance.
  17. *
  18. * @param array $attributes
  19. * @param Validator $class
  20. * @return void
  21. */
  22. public function __construct($attributes)
  23. {
  24. $this->attributes = $attributes;
  25. }
  26. /**
  27. * Run the validation rule.
  28. *
  29. * @param array $attributes
  30. * @param Error_Collector $errors
  31. * @return void
  32. */
  33. public function validate($attributes, $errors)
  34. {
  35. if (is_null($this->message))
  36. {
  37. throw new \Exception("An error message must be specified for every Eloquent validation rule.");
  38. }
  39. foreach ($this->attributes as $attribute)
  40. {
  41. if ( ! $this->check($attribute, $attributes))
  42. {
  43. $errors->add($attribute, $this->prepare_message($attribute));
  44. }
  45. }
  46. }
  47. /**
  48. * Prepare the message to be added to the error collector.
  49. *
  50. * Attribute and size place-holders will replace with their actual values.
  51. *
  52. * @param string $attribute
  53. * @return string
  54. */
  55. private function prepare_message($attribute)
  56. {
  57. $message = $this->message;
  58. if (strpos($message, ':attribute'))
  59. {
  60. $message = str_replace(':attribute', Lang::line('attributes.'.$attribute)->get(), $message);
  61. }
  62. if ($this instanceof Rules\Size_Of)
  63. {
  64. $message = str_replace(':max', $this->maximum, $message);
  65. $message = str_replace(':min', $this->minimum, $message);
  66. $message = str_replace(':size', $this->length, $message);
  67. }
  68. return $message;
  69. }
  70. /**
  71. * Set the validation error message.
  72. *
  73. * @param string $message
  74. * @return Rule
  75. */
  76. public function message($message)
  77. {
  78. $this->message = $message;
  79. return $this;
  80. }
  81. }