validator.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. <?php namespace System;
  2. class Validator {
  3. /**
  4. * The array being validated.
  5. *
  6. * @var array
  7. */
  8. public $attributes;
  9. /**
  10. * The validation rules.
  11. *
  12. * @var array
  13. */
  14. public $rules;
  15. /**
  16. * The validation messages.
  17. *
  18. * @var array
  19. */
  20. public $messages;
  21. /**
  22. * The post-validation error messages.
  23. *
  24. * @var array
  25. */
  26. public $errors;
  27. /**
  28. * The language that should be used when retrieving error messages.
  29. *
  30. * @var string
  31. */
  32. public $language;
  33. /**
  34. * The "size" related validation rules.
  35. *
  36. * @var array
  37. */
  38. protected $size_rules = array('size', 'between', 'min', 'max');
  39. /**
  40. * Create a new validator instance.
  41. *
  42. * @param array $attributes
  43. * @param array $rules
  44. * @param array $messages
  45. * @return void
  46. */
  47. public function __construct($attributes, $rules, $messages = array())
  48. {
  49. foreach ($rules as $key => &$rule)
  50. {
  51. $rule = (is_string($rule)) ? explode('|', $rule) : $rule;
  52. }
  53. $this->attributes = $attributes;
  54. $this->messages = $messages;
  55. $this->rules = $rules;
  56. }
  57. /**
  58. * Factory for creating new validator instances.
  59. *
  60. * @param array $attributes
  61. * @param array $rules
  62. * @param array $messages
  63. * @return Validator
  64. */
  65. public static function make($attributes, $rules, $messages = array())
  66. {
  67. return new static($attributes, $rules, $messages);
  68. }
  69. /**
  70. * Validate the target array using the specified validation rules.
  71. *
  72. * @return bool
  73. */
  74. public function invalid()
  75. {
  76. return ! $this->valid();
  77. }
  78. /**
  79. * Validate the target array using the specified validation rules.
  80. *
  81. * @return bool
  82. */
  83. public function valid()
  84. {
  85. $this->errors = new Messages;
  86. foreach ($this->rules as $attribute => $rules)
  87. {
  88. foreach ($rules as $rule)
  89. {
  90. $this->check($attribute, $rule);
  91. }
  92. }
  93. return count($this->errors->messages) == 0;
  94. }
  95. /**
  96. * Evaluate an attribute against a validation rule.
  97. *
  98. * @param string $attribute
  99. * @param string $rule
  100. * @return void
  101. */
  102. protected function check($attribute, $rule)
  103. {
  104. list($rule, $parameters) = $this->parse($rule);
  105. if ( ! method_exists($this, $validator = 'validate_'.$rule))
  106. {
  107. throw new \Exception("Validation rule [$rule] doesn't exist.");
  108. }
  109. // No validation will be run for attributes that do not exist unless the rule being validated
  110. // is "required" or "accepted". No other rules have implicit "required" checks.
  111. if ( ! static::validate_required($attribute) and ! in_array($rule, array('required', 'accepted'))) return;
  112. if ( ! $this->$validator($attribute, $parameters))
  113. {
  114. $this->errors->add($attribute, $this->format_message($this->get_message($attribute, $rule), $attribute, $rule, $parameters));
  115. }
  116. }
  117. /**
  118. * Validate that a required attribute exists in the attributes array.
  119. *
  120. * @param string $attribute
  121. * @return bool
  122. */
  123. protected function validate_required($attribute)
  124. {
  125. if ( ! array_key_exists($attribute, $this->attributes)) return false;
  126. if (is_string($this->attributes[$attribute]) and trim($this->attributes[$attribute]) === '') return false;
  127. return true;
  128. }
  129. /**
  130. * Validate that an attribute has a matching confirmation attribute.
  131. *
  132. * @param string $attribute
  133. * @return bool
  134. */
  135. protected function validate_confirmed($attribute)
  136. {
  137. return array_key_exists($attribute.'_confirmation', $this->attributes) and $this->attributes[$attribute] == $this->attributes[$attribute.'_confirmation'];
  138. }
  139. /**
  140. * Validate that an attribute was "accepted".
  141. *
  142. * This validation rule implies the attribute is "required".
  143. *
  144. * @param string $attribute
  145. * @return bool
  146. */
  147. protected function validate_accepted($attribute)
  148. {
  149. return static::validate_required($attribute) and ($this->attributes[$attribute] == 'yes' or $this->attributes[$attribute] == '1');
  150. }
  151. /**
  152. * Validate that an attribute is numeric.
  153. *
  154. * @param string $attribute
  155. * @return bool
  156. */
  157. protected function validate_numeric($attribute)
  158. {
  159. return is_numeric($this->attributes[$attribute]);
  160. }
  161. /**
  162. * Validate that an attribute is an integer.
  163. *
  164. * @param string $attribute
  165. * @return bool
  166. */
  167. protected function validate_integer($attribute)
  168. {
  169. return filter_var($this->attributes[$attribute], FILTER_VALIDATE_INT) !== false;
  170. }
  171. /**
  172. * Validate the size of an attribute.
  173. *
  174. * @param string $attribute
  175. * @param array $parameters
  176. * @return bool
  177. */
  178. protected function validate_size($attribute, $parameters)
  179. {
  180. return $this->get_size($attribute) == $parameters[0];
  181. }
  182. /**
  183. * Validate the size of an attribute is between a set of values.
  184. *
  185. * @param string $attribute
  186. * @param array $parameters
  187. * @return bool
  188. */
  189. protected function validate_between($attribute, $parameters)
  190. {
  191. return $this->get_size($attribute) >= $parameters[0] and $this->get_size($attribute) <= $parameters[1];
  192. }
  193. /**
  194. * Validate the size of an attribute is greater than a minimum value.
  195. *
  196. * @param string $attribute
  197. * @param array $parameters
  198. * @return bool
  199. */
  200. protected function validate_min($attribute, $parameters)
  201. {
  202. return $this->get_size($attribute) >= $parameters[0];
  203. }
  204. /**
  205. * Validate the size of an attribute is less than a maximum value.
  206. *
  207. * @param string $attribute
  208. * @param array $parameters
  209. * @return bool
  210. */
  211. protected function validate_max($attribute, $parameters)
  212. {
  213. return $this->get_size($attribute) <= $parameters[0];
  214. }
  215. /**
  216. * Get the size of an attribute.
  217. *
  218. * @param string $attribute
  219. * @return mixed
  220. */
  221. protected function get_size($attribute)
  222. {
  223. if (is_numeric($this->attributes[$attribute])) return $this->attributes[$attribute];
  224. return (array_key_exists($attribute, $_FILES)) ? $this->attributes[$attribute]['size'] / 1024 : Str::length(trim($this->attributes[$attribute]));
  225. }
  226. /**
  227. * Validate an attribute is contained within a list of values.
  228. *
  229. * @param string $attribute
  230. * @param array $parameters
  231. * @return bool
  232. */
  233. protected function validate_in($attribute, $parameters)
  234. {
  235. return in_array($this->attributes[$attribute], $parameters);
  236. }
  237. /**
  238. * Validate an attribute is not contained within a list of values.
  239. *
  240. * @param string $attribute
  241. * @param array $parameters
  242. * @return bool
  243. */
  244. protected function validate_not_in($attribute, $parameters)
  245. {
  246. return ! in_array($this->attributes[$attribute], $parameters);
  247. }
  248. /**
  249. * Validate the uniqueness of an attribute value on a given database table.
  250. *
  251. * If a database column is not specified, the attribute name will be used.
  252. *
  253. * @param string $attribute
  254. * @param array $parameters
  255. * @return bool
  256. */
  257. protected function validate_unique($attribute, $parameters)
  258. {
  259. if ( ! isset($parameters[1])) $parameters[1] = $attribute;
  260. return DB\Manager::connection()->table($parameters[0])->where($parameters[1], '=', $this->attributes[$attribute])->count() == 0;
  261. }
  262. /**
  263. * Validate than an attribute is a valid e-mail address.
  264. *
  265. * @param string $attribute
  266. * @return bool
  267. */
  268. protected function validate_email($attribute)
  269. {
  270. return filter_var($this->attributes[$attribute], FILTER_VALIDATE_EMAIL) !== false;
  271. }
  272. /**
  273. * Validate than an attribute is a valid URL.
  274. *
  275. * @param string $attribute
  276. * @return bool
  277. */
  278. protected function validate_url($attribute)
  279. {
  280. return filter_var($this->attributes[$attribute], FILTER_VALIDATE_URL) !== false;
  281. }
  282. /**
  283. * Validate that an attribute is an active URL.
  284. *
  285. * @param string $attribute
  286. * @return bool
  287. */
  288. protected function validate_active_url($attribute)
  289. {
  290. $url = str_replace(array('http://', 'https://', 'ftp://'), '', Str::lower($this->attributes[$attribute]));
  291. return checkdnsrr($url);
  292. }
  293. /**
  294. * Validate the MIME type of a file is an image MIME type.
  295. *
  296. * @param string $attribute
  297. * @return bool
  298. */
  299. protected function validate_image($attribute)
  300. {
  301. return static::validate_mimes($attribute, array('jpg', 'png', 'gif', 'bmp'));
  302. }
  303. /**
  304. * Validate than an attribute contains only alphabetic characters.
  305. *
  306. * @param string $attribute
  307. * @return bool
  308. */
  309. protected function validate_alpha($attribute)
  310. {
  311. return preg_match('/^([a-z])+$/i', $this->attributes[$attribute]);
  312. }
  313. /**
  314. * Validate than an attribute contains only alpha-numeric characters.
  315. *
  316. * @param string $attribute
  317. * @return bool
  318. */
  319. protected function validate_alpha_num($attribute)
  320. {
  321. return preg_match('/^([a-z0-9])+$/i', $this->attributes[$attribute]);
  322. }
  323. /**
  324. * Validate than an attribute contains only alpha-numeric characters, dashes, and underscores.
  325. *
  326. * @param string $attribute
  327. * @return bool
  328. */
  329. protected function validate_alpha_dash($attribute)
  330. {
  331. return preg_match('/^([-a-z0-9_-])+$/i', $this->attributes[$attribute]);
  332. }
  333. /**
  334. * Validate the MIME type of a file upload attribute is in a set of MIME types.
  335. *
  336. * @param string $attribute
  337. * @param array $parameters
  338. * @return bool
  339. */
  340. protected function validate_mimes($attribute, $parameters)
  341. {
  342. foreach ($parameters as $extension)
  343. {
  344. if (File::is($extension, $this->attributes[$attribute]['tmp_name'])) return true;
  345. }
  346. return false;
  347. }
  348. /**
  349. * Get the proper error message for an attribute and rule.
  350. *
  351. * Developer specified attribute specific rules take first priority.
  352. * Developer specified error rules take second priority.
  353. *
  354. * If the message has not been specified by the developer, the default will be used
  355. * from the validation language file.
  356. *
  357. * @param string $attribute
  358. * @param string $rule
  359. * @return string
  360. */
  361. protected function get_message($attribute, $rule)
  362. {
  363. if (array_key_exists($attribute.'_'.$rule, $this->messages))
  364. {
  365. return $this->messages[$attribute.'_'.$rule];
  366. }
  367. elseif (array_key_exists($rule, $this->messages))
  368. {
  369. return $this->messages[$rule];
  370. }
  371. else
  372. {
  373. $message = Lang::line('validation.'.$rule)->get($this->language);
  374. // For "size" rules that are validating strings or files, we need to adjust
  375. // the default error message for the appropriate type.
  376. if (in_array($rule, $this->size_rules) and ! is_numeric($this->attributes[$attribute]))
  377. {
  378. return (array_key_exists($attribute, $_FILES))
  379. ? rtrim($message, '.').' '.Lang::line('validation.kilobytes')->get($this->language).'.'
  380. : rtrim($message, '.').' '.Lang::line('validation.characters')->get($this->language).'.';
  381. }
  382. return $message;
  383. }
  384. }
  385. /**
  386. * Replace all error message place-holders with actual values.
  387. *
  388. * @param string $message
  389. * @param string $attribute
  390. * @param string $rule
  391. * @param array $parameters
  392. * @return string
  393. */
  394. protected function format_message($message, $attribute, $rule, $parameters)
  395. {
  396. $display = Lang::line('attributes.'.$attribute)->get($this->language, str_replace('_', ' ', $attribute));
  397. $message = str_replace(':attribute', $display, $message);
  398. if (in_array($rule, $this->size_rules))
  399. {
  400. $max = ($rule == 'between') ? $parameters[1] : $parameters[0];
  401. $message = str_replace(array(':size', ':min', ':max'), array($parameters[0], $parameters[0], $max), $message);
  402. }
  403. elseif (in_array($rule, array('in', 'not_in', 'mimes')))
  404. {
  405. $message = str_replace(':values', implode(', ', $parameters), $message);
  406. }
  407. return $message;
  408. }
  409. /**
  410. * Determine if an attribute has a rule assigned to it.
  411. *
  412. * @param string $attribute
  413. * @param array $rules
  414. * @return bool
  415. */
  416. protected function has_rule($attribute, $rules)
  417. {
  418. foreach ($this->rules[$attribute] as $rule)
  419. {
  420. list($rule, $parameters) = $this->parse($rule);
  421. if (in_array($rule, $rules)) return true;
  422. }
  423. return false;
  424. }
  425. /**
  426. * Extract the rule name and parameters from a rule.
  427. *
  428. * @param string $rule
  429. * @return array
  430. */
  431. protected function parse($rule)
  432. {
  433. $parameters = (($colon = strpos($rule, ':')) !== false) ? explode(',', substr($rule, $colon + 1)) : array();
  434. return array(is_numeric($colon) ? substr($rule, 0, $colon) : $rule, $parameters);
  435. }
  436. /**
  437. * Set the language that should be used when retrieving error messages.
  438. *
  439. * @param string $language
  440. * @return Validator
  441. */
  442. public function lang($language)
  443. {
  444. $this->language = $language;
  445. return $this;
  446. }
  447. }