validator.php 12 KB

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