validator.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  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]) and $this->has_rule($attribute, array('integer', 'numeric')))
  224. {
  225. return $this->attributes[$attribute];
  226. }
  227. return (array_key_exists($attribute, $_FILES)) ? $this->attributes[$attribute]['size'] / 1024 : Str::length(trim($this->attributes[$attribute]));
  228. }
  229. /**
  230. * Validate an attribute is contained within a list of values.
  231. *
  232. * @param string $attribute
  233. * @param array $parameters
  234. * @return bool
  235. */
  236. protected function validate_in($attribute, $parameters)
  237. {
  238. return in_array($this->attributes[$attribute], $parameters);
  239. }
  240. /**
  241. * Validate an attribute is not contained within a list of values.
  242. *
  243. * @param string $attribute
  244. * @param array $parameters
  245. * @return bool
  246. */
  247. protected function validate_not_in($attribute, $parameters)
  248. {
  249. return ! in_array($this->attributes[$attribute], $parameters);
  250. }
  251. /**
  252. * Validate the uniqueness of an attribute value on a given database table.
  253. *
  254. * If a database column is not specified, the attribute name will be used.
  255. *
  256. * @param string $attribute
  257. * @param array $parameters
  258. * @return bool
  259. */
  260. protected function validate_unique($attribute, $parameters)
  261. {
  262. if ( ! isset($parameters[1])) $parameters[1] = $attribute;
  263. return DB\Manager::connection()->table($parameters[0])->where($parameters[1], '=', $this->attributes[$attribute])->count() == 0;
  264. }
  265. /**
  266. * Validate than an attribute is a valid e-mail address.
  267. *
  268. * @param string $attribute
  269. * @return bool
  270. */
  271. protected function validate_email($attribute)
  272. {
  273. return filter_var($this->attributes[$attribute], FILTER_VALIDATE_EMAIL) !== false;
  274. }
  275. /**
  276. * Validate than an attribute is a valid URL.
  277. *
  278. * @param string $attribute
  279. * @return bool
  280. */
  281. protected function validate_url($attribute)
  282. {
  283. return filter_var($this->attributes[$attribute], FILTER_VALIDATE_URL) !== false;
  284. }
  285. /**
  286. * Validate that an attribute is an active URL.
  287. *
  288. * @param string $attribute
  289. * @return bool
  290. */
  291. protected function validate_active_url($attribute)
  292. {
  293. $url = str_replace(array('http://', 'https://', 'ftp://'), '', Str::lower($this->attributes[$attribute]));
  294. return checkdnsrr($url);
  295. }
  296. /**
  297. * Validate the MIME type of a file is an image MIME type.
  298. *
  299. * @param string $attribute
  300. * @return bool
  301. */
  302. protected function validate_image($attribute)
  303. {
  304. return static::validate_mimes($attribute, array('jpg', 'png', 'gif', 'bmp'));
  305. }
  306. /**
  307. * Validate than an attribute contains only alphabetic characters.
  308. *
  309. * @param string $attribute
  310. * @return bool
  311. */
  312. protected function validate_alpha($attribute)
  313. {
  314. return preg_match('/^([a-z])+$/i', $this->attributes[$attribute]);
  315. }
  316. /**
  317. * Validate than an attribute contains only alpha-numeric characters.
  318. *
  319. * @param string $attribute
  320. * @return bool
  321. */
  322. protected function validate_alpha_num($attribute)
  323. {
  324. return preg_match('/^([a-z0-9])+$/i', $this->attributes[$attribute]);
  325. }
  326. /**
  327. * Validate than an attribute contains only alpha-numeric characters, dashes, and underscores.
  328. *
  329. * @param string $attribute
  330. * @return bool
  331. */
  332. protected function validate_alpha_dash($attribute)
  333. {
  334. return preg_match('/^([-a-z0-9_-])+$/i', $this->attributes[$attribute]);
  335. }
  336. /**
  337. * Validate the MIME type of a file upload attribute is in a set of MIME types.
  338. *
  339. * @param string $attribute
  340. * @param array $parameters
  341. * @return bool
  342. */
  343. protected function validate_mimes($attribute, $parameters)
  344. {
  345. foreach ($parameters as $extension)
  346. {
  347. if (File::is($extension, $this->attributes[$attribute]['tmp_name'])) return true;
  348. }
  349. return false;
  350. }
  351. /**
  352. * Get the proper error message for an attribute and rule.
  353. *
  354. * Developer specified attribute specific rules take first priority.
  355. * Developer specified error rules take second priority.
  356. *
  357. * If the message has not been specified by the developer, the default will be used
  358. * from the validation language file.
  359. *
  360. * @param string $attribute
  361. * @param string $rule
  362. * @return string
  363. */
  364. protected function get_message($attribute, $rule)
  365. {
  366. if (array_key_exists($attribute.'_'.$rule, $this->messages))
  367. {
  368. return $this->messages[$attribute.'_'.$rule];
  369. }
  370. elseif (array_key_exists($rule, $this->messages))
  371. {
  372. return $this->messages[$rule];
  373. }
  374. else
  375. {
  376. $message = Lang::line('validation.'.$rule)->get($this->language);
  377. // For "size" rules that are validating strings or files, we need to adjust
  378. // the default error message for the appropriate type.
  379. if (in_array($rule, $this->size_rules) and ! $this->has_rule($attribute, array('numeric', 'integer')))
  380. {
  381. return (array_key_exists($attribute, $_FILES))
  382. ? rtrim($message, '.').' '.Lang::line('validation.kilobytes')->get($this->language).'.'
  383. : rtrim($message, '.').' '.Lang::line('validation.characters')->get($this->language).'.';
  384. }
  385. return $message;
  386. }
  387. }
  388. /**
  389. * Replace all error message place-holders with actual values.
  390. *
  391. * @param string $message
  392. * @param string $attribute
  393. * @param string $rule
  394. * @param array $parameters
  395. * @return string
  396. */
  397. protected function format_message($message, $attribute, $rule, $parameters)
  398. {
  399. $display = Lang::line('attributes.'.$attribute)->get($this->language, str_replace('_', ' ', $attribute));
  400. $message = str_replace(':attribute', $display, $message);
  401. if (in_array($rule, $this->size_rules))
  402. {
  403. $max = ($rule == 'between') ? $parameters[1] : $parameters[0];
  404. $message = str_replace(array(':size', ':min', ':max'), array($parameters[0], $parameters[0], $max), $message);
  405. }
  406. elseif (in_array($rule, array('in', 'not_in', 'mimes')))
  407. {
  408. $message = str_replace(':values', implode(', ', $parameters), $message);
  409. }
  410. return $message;
  411. }
  412. /**
  413. * Determine if an attribute has a rule assigned to it.
  414. *
  415. * @param string $attribute
  416. * @param array $rules
  417. * @return bool
  418. */
  419. protected function has_rule($attribute, $rules)
  420. {
  421. foreach ($this->rules[$attribute] as $rule)
  422. {
  423. list($rule, $parameters) = $this->parse($rule);
  424. if (in_array($rule, $rules)) return true;
  425. }
  426. return false;
  427. }
  428. /**
  429. * Extract the rule name and parameters from a rule.
  430. *
  431. * @param string $rule
  432. * @return array
  433. */
  434. protected function parse($rule)
  435. {
  436. $parameters = (($colon = strpos($rule, ':')) !== false) ? explode(',', substr($rule, $colon + 1)) : array();
  437. return array(is_numeric($colon) ? substr($rule, 0, $colon) : $rule, $parameters);
  438. }
  439. /**
  440. * Set the language that should be used when retrieving error messages.
  441. *
  442. * @param string $language
  443. * @return Validator
  444. */
  445. public function lang($language)
  446. {
  447. $this->language = $language;
  448. return $this;
  449. }
  450. }