validator.php 12 KB

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