size_of.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php namespace System\Validation\Rules;
  2. use System\Str;
  3. use System\Validation\Rule;
  4. class Size_Of extends Rule {
  5. /**
  6. * The exact size the attribute must be.
  7. *
  8. * @var int
  9. */
  10. public $length;
  11. /**
  12. * The maximum size of the attribute.
  13. *
  14. * @var int
  15. */
  16. public $maximum;
  17. /**
  18. * The minimum size of the attribute.
  19. *
  20. * @var int
  21. */
  22. public $minimum;
  23. /**
  24. * Evaluate the validity of an attribute.
  25. *
  26. * @param string $attribute
  27. * @param array $attributes
  28. * @return void
  29. */
  30. public function check($attribute, $attributes)
  31. {
  32. if ( ! array_key_exists($attribute, $attributes))
  33. {
  34. return true;
  35. }
  36. if (is_numeric($attributes[$attribute]))
  37. {
  38. return $this->check_number($attribute, $attributes);
  39. }
  40. else
  41. {
  42. return $this->check_string($attribute, $attributes);
  43. }
  44. }
  45. /**
  46. * Evaluate the validity of a numeric attribute.
  47. *
  48. * @param string $attribute
  49. * @param array $attributes
  50. * @return void
  51. */
  52. private function check_number($attribute, $attributes)
  53. {
  54. if ( ! is_null($this->length) and $attributes[$attribute] !== $this->length)
  55. {
  56. return false;
  57. }
  58. if ( ! is_null($this->maximum) and $attributes[$attribute] > $this->maximum)
  59. {
  60. return false;
  61. }
  62. if ( ! is_null($this->minimum and $attributes[$attribute] < $this->minimum))
  63. {
  64. return false;
  65. }
  66. return true;
  67. }
  68. /**
  69. * Evaluate the validity of a string attribute.
  70. *
  71. * @param string $attribute
  72. * @param array $attributes
  73. * @return void
  74. */
  75. public function check_string($attribute, $attributes)
  76. {
  77. $value = trim((string) $attributes[$attribute]);
  78. if ( ! is_null($this->length) and Str::length($value) !== $this->length)
  79. {
  80. return false;
  81. }
  82. if ( ! is_null($this->maximum) and Str::length($value) > $this->maximum)
  83. {
  84. return false;
  85. }
  86. if ( ! is_null($this->minimum) and Str::length($value) < $this->minimum)
  87. {
  88. return false;
  89. }
  90. return true;
  91. }
  92. /**
  93. * Set the exact size the attribute must be.
  94. *
  95. * @param int $length
  96. * @return Size_Of
  97. */
  98. public function is($length)
  99. {
  100. $this->length = $length;
  101. return $this;
  102. }
  103. /**
  104. * Set the minimum and maximize size of the attribute.
  105. *
  106. * @param int $minimum
  107. * @param int $maximum
  108. * @return Size_Of
  109. */
  110. public function between($minimum, $maximum)
  111. {
  112. $this->minimum = $minimum;
  113. $this->maximum = $maximum;
  114. return $this;
  115. }
  116. /**
  117. * Set the minimum size the attribute.
  118. *
  119. * @param int $minimum
  120. * @return Size_Of
  121. */
  122. public function at_least($minimum)
  123. {
  124. $this->minimum = $minimum;
  125. return $this;
  126. }
  127. /**
  128. * Set the maximum size the attribute.
  129. *
  130. * @param int $maximum
  131. * @return Size_Of
  132. */
  133. public function less_than($maximum)
  134. {
  135. $this->maximum = $maximum;
  136. return $this;
  137. }
  138. }