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