validator.php 12 KB

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