validator.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. <?php namespace Laravel\Validation;
  2. use Closure;
  3. use Laravel\Arr;
  4. use Laravel\IoC;
  5. use Laravel\Str;
  6. use Laravel\Lang;
  7. use Laravel\Input;
  8. use Laravel\Database\Manager as DB;
  9. class Validator {
  10. /**
  11. * The database connection that should be used by the validator.
  12. *
  13. * @var Database\Connection
  14. */
  15. public $connection;
  16. /**
  17. * The array being validated.
  18. *
  19. * @var array
  20. */
  21. public $attributes;
  22. /**
  23. * The post-validation error messages.
  24. *
  25. * @var Messages
  26. */
  27. public $errors;
  28. /**
  29. * The validation rules.
  30. *
  31. * @var array
  32. */
  33. protected $rules = array();
  34. /**
  35. * The validation messages.
  36. *
  37. * @var array
  38. */
  39. protected $messages = array();
  40. /**
  41. * The language that should be used when retrieving error messages.
  42. *
  43. * @var string
  44. */
  45. protected $language;
  46. /**
  47. * The size related validation rules.
  48. *
  49. * @var array
  50. */
  51. protected $size_rules = array('size', 'between', 'min', 'max');
  52. /**
  53. * The numeric related validation rules.
  54. *
  55. * @var array
  56. */
  57. protected $numeric_rules = array('numeric', 'integer');
  58. /**
  59. * The registered custom validators.
  60. *
  61. * @var array
  62. */
  63. protected static $validators = array();
  64. /**
  65. * Create a new validator instance.
  66. *
  67. * @param array $attributes
  68. * @param array $rules
  69. * @param array $messages
  70. * @return void
  71. */
  72. public function __construct($attributes, $rules, $messages = array())
  73. {
  74. foreach ($rules as $key => &$rule)
  75. {
  76. $rule = (is_string($rule)) ? explode('|', $rule) : $rule;
  77. }
  78. $this->rules = $rules;
  79. $this->messages = $messages;
  80. $this->attributes = $attributes;
  81. }
  82. /**
  83. * Create a new validator instance.
  84. *
  85. * @param array $attributes
  86. * @param array $rules
  87. * @param array $messages
  88. * @return Validator
  89. */
  90. public static function make($attributes, $rules, $messages = array())
  91. {
  92. return new static($attributes, $rules, $messages);
  93. }
  94. /**
  95. * Register a custom validator.
  96. *
  97. * @param string $name
  98. * @param Closure $validator
  99. * @return void
  100. */
  101. public static function register($name, $validator)
  102. {
  103. static::$validators[$name] = $validator;
  104. }
  105. /**
  106. * Validate the target array using the specified validation rules.
  107. *
  108. * @return bool
  109. */
  110. public function invalid()
  111. {
  112. return ! $this->valid();
  113. }
  114. /**
  115. * Validate the target array using the specified validation rules.
  116. *
  117. * @return bool
  118. */
  119. public function valid()
  120. {
  121. $this->errors = new Messages;
  122. foreach ($this->rules as $attribute => $rules)
  123. {
  124. foreach ($rules as $rule)
  125. {
  126. $this->check($attribute, $rule);
  127. }
  128. }
  129. return count($this->errors->messages) == 0;
  130. }
  131. /**
  132. * Evaluate an attribute against a validation rule.
  133. *
  134. * @param string $attribute
  135. * @param string $rule
  136. * @return void
  137. */
  138. protected function check($attribute, $rule)
  139. {
  140. list($rule, $parameters) = $this->parse($rule);
  141. if ( ! method_exists($this, $validator = 'validate_'.$rule) and ! isset(static::$validators[$rule]))
  142. {
  143. throw new \Exception("Validation rule [$rule] doesn't exist.");
  144. }
  145. // Extract the actual value for the attribute. We don't want every rule
  146. // to worry about obtaining the value from the array of attributes.
  147. $value = Arr::get($this->attributes, $attribute);
  148. // No validation will be run for attributes that do not exist unless the
  149. // rule being validated is "required" or "accepted". No other rules have
  150. // implicit "required" checks for validation.
  151. if ( ! $this->validate_required($attribute, $value) and ! in_array($rule, array('required', 'accepted')))
  152. {
  153. return;
  154. }
  155. if ( ! $this->$validator($attribute, $value, $parameters, $this))
  156. {
  157. $this->error($attribute, $rule, $parameters);
  158. }
  159. }
  160. /**
  161. * Add an error message to the validator's collection of messages.
  162. *
  163. * @param string $attribute
  164. * @param string $rule
  165. * @param array $parameters
  166. * @return void
  167. */
  168. protected function error($attribute, $rule, $parameters)
  169. {
  170. $message = $this->get_message($attribute, $rule);
  171. $message = $this->format_message($message, $attribute, $rule, $parameters);
  172. $this->errors->add($attribute, $message);
  173. }
  174. /**
  175. * Validate that a required attribute exists in the attributes array.
  176. *
  177. * @param string $attribute
  178. * @param mixed $value
  179. * @return bool
  180. */
  181. protected function validate_required($attribute, $value)
  182. {
  183. return (is_null($value) or (is_string($value) and trim($value) === ''));
  184. }
  185. /**
  186. * Validate that an attribute has a matching confirmation attribute.
  187. *
  188. * @param string $attribute
  189. * @param mixed $value
  190. * @return bool
  191. */
  192. protected function validate_confirmed($attribute, $value)
  193. {
  194. $confirmation = $this->attributes[$attribute.'_confirmation'];
  195. return array_key_exists($attribute.'_confirmation', $this->attributes) and $value == $confirmation;
  196. }
  197. /**
  198. * Validate that an attribute was "accepted".
  199. *
  200. * This validation rule implies the attribute is "required".
  201. *
  202. * @param string $attribute
  203. * @param mixed $value
  204. * @return bool
  205. */
  206. protected function validate_accepted($attribute, $value)
  207. {
  208. return $this->validate_required($attribute) and ($value == 'yes' or $value == '1');
  209. }
  210. /**
  211. * Validate that an attribute is numeric.
  212. *
  213. * @param string $attribute
  214. * @param mixed $value
  215. * @return bool
  216. */
  217. protected function validate_numeric($attribute, $value)
  218. {
  219. return is_numeric($value);
  220. }
  221. /**
  222. * Validate that an attribute is an integer.
  223. *
  224. * @param string $attribute
  225. * @param mixed $value
  226. * @return bool
  227. */
  228. protected function validate_integer($attribute, $value)
  229. {
  230. return filter_var($value, FILTER_VALIDATE_INT) !== false;
  231. }
  232. /**
  233. * Validate the size of an attribute.
  234. *
  235. * @param string $attribute
  236. * @param mixed $value
  237. * @param array $parameters
  238. * @return bool
  239. */
  240. protected function validate_size($attribute, $value, $parameters)
  241. {
  242. return $this->get_size($attribute) == $parameters[0];
  243. }
  244. /**
  245. * Validate the size of an attribute is between a set of values.
  246. *
  247. * @param string $attribute
  248. * @param mixed $value
  249. * @param array $parameters
  250. * @return bool
  251. */
  252. protected function validate_between($attribute, $value, $parameters)
  253. {
  254. return $this->get_size($attribute) >= $parameters[0] and $this->get_size($attribute) <= $parameters[1];
  255. }
  256. /**
  257. * Validate the size of an attribute is greater than a minimum value.
  258. *
  259. * @param string $attribute
  260. * @param mixed $value
  261. * @param array $parameters
  262. * @return bool
  263. */
  264. protected function validate_min($attribute, $value, $parameters)
  265. {
  266. return $this->get_size($attribute) >= $parameters[0];
  267. }
  268. /**
  269. * Validate the size of an attribute is less than a maximum value.
  270. *
  271. * @param string $attribute
  272. * @param mixed $value
  273. * @param array $parameters
  274. * @return bool
  275. */
  276. protected function validate_max($attribute, $value, $parameters)
  277. {
  278. return $this->get_size($attribute) <= $parameters[0];
  279. }
  280. /**
  281. * Get the size of an attribute.
  282. *
  283. * @param string $attribute
  284. * @return mixed
  285. */
  286. protected function get_size($attribute)
  287. {
  288. if (is_numeric($this->attributes[$attribute]) and $this->has_rule($attribute, $this->numeric_rules))
  289. {
  290. return $this->attributes[$attribute];
  291. }
  292. $value = $this->attributes[$attribute];
  293. if (array_key_exists($attribute, Input::file()))
  294. {
  295. return $value['size'] / 1024;
  296. }
  297. else
  298. {
  299. return Str::length(trim($value));
  300. }
  301. }
  302. /**
  303. * Validate an attribute is contained within a list of values.
  304. *
  305. * @param string $attribute
  306. * @param mixed $value
  307. * @param array $parameters
  308. * @return bool
  309. */
  310. protected function validate_in($attribute, $value, $parameters)
  311. {
  312. return in_array($value, $parameters);
  313. }
  314. /**
  315. * Validate an attribute is not contained within a list of values.
  316. *
  317. * @param string $attribute
  318. * @param mixed $value
  319. * @param array $parameters
  320. * @return bool
  321. */
  322. protected function validate_not_in($attribute, $value, $parameters)
  323. {
  324. return ! in_array($value, $parameters);
  325. }
  326. /**
  327. * Validate the uniqueness of an attribute value on a given database table.
  328. *
  329. * If a database column is not specified, the attribute name will be used.
  330. *
  331. * @param string $attribute
  332. * @param mixed $value
  333. * @param array $parameters
  334. * @return bool
  335. */
  336. protected function validate_unique($attribute, $value, $parameters)
  337. {
  338. if ( ! isset($parameters[1])) $parameters[1] = $attribute;
  339. if (is_null($this->connection)) $this->connection = DB::connection();
  340. return $this->connection->table($parameters[0])->where($parameters[1], '=', $value)->count() == 0;
  341. }
  342. /**
  343. * Validate than an attribute is a valid e-mail address.
  344. *
  345. * @param string $attribute
  346. * @param mixed $value
  347. * @return bool
  348. */
  349. protected function validate_email($attribute, $value)
  350. {
  351. return filter_var($value, FILTER_VALIDATE_EMAIL) !== false;
  352. }
  353. /**
  354. * Validate than an attribute is a valid URL.
  355. *
  356. * @param string $attribute
  357. * @param mixed $value
  358. * @return bool
  359. */
  360. protected function validate_url($attribute, $value)
  361. {
  362. return filter_var($value, FILTER_VALIDATE_URL) !== false;
  363. }
  364. /**
  365. * Validate that an attribute is an active URL.
  366. *
  367. * @param string $attribute
  368. * @param mixed $value
  369. * @return bool
  370. */
  371. protected function validate_active_url($attribute, $value)
  372. {
  373. $url = str_replace(array('http://', 'https://', 'ftp://'), '', Str::lower($value));
  374. return checkdnsrr($url);
  375. }
  376. /**
  377. * Validate the MIME type of a file is an image MIME type.
  378. *
  379. * @param string $attribute
  380. * @param mixed $value
  381. * @return bool
  382. */
  383. protected function validate_image($attribute, $value)
  384. {
  385. return $this->validate_mimes($attribute, array('jpg', 'png', 'gif', 'bmp'));
  386. }
  387. /**
  388. * Validate than an attribute contains only alphabetic characters.
  389. *
  390. * @param string $attribute
  391. * @param mixed $value
  392. * @return bool
  393. */
  394. protected function validate_alpha($attribute, $value)
  395. {
  396. return preg_match('/^([a-z])+$/i', $value);
  397. }
  398. /**
  399. * Validate than an attribute contains only alpha-numeric characters.
  400. *
  401. * @param string $attribute
  402. * @param mixed $value
  403. * @return bool
  404. */
  405. protected function validate_alpha_num($attribute, $value)
  406. {
  407. return preg_match('/^([a-z0-9])+$/i', $value);
  408. }
  409. /**
  410. * Validate than an attribute contains only alpha-numeric characters, dashes, and underscores.
  411. *
  412. * @param string $attribute
  413. * @param mixed $value
  414. * @return bool
  415. */
  416. protected function validate_alpha_dash($attribute, $value)
  417. {
  418. return preg_match('/^([-a-z0-9_-])+$/i', $value);
  419. }
  420. /**
  421. * Validate the MIME type of a file upload attribute is in a set of MIME types.
  422. *
  423. * @param string $attribute
  424. * @param array $parameters
  425. * @return bool
  426. */
  427. protected function validate_mimes($attribute, $parameters)
  428. {
  429. foreach ($parameters as $extension)
  430. {
  431. if (File::is($extension, $this->attributes[$attribute]['tmp_name'])) return true;
  432. }
  433. return false;
  434. }
  435. /**
  436. * Get the proper error message for an attribute and rule.
  437. *
  438. * Developer specified attribute specific rules take first priority.
  439. * Developer specified error rules take second priority.
  440. *
  441. * If the message has not been specified by the developer, the default
  442. * will be used from the validation language file.
  443. *
  444. * @param string $attribute
  445. * @param string $rule
  446. * @return string
  447. */
  448. protected function get_message($attribute, $rule)
  449. {
  450. if (array_key_exists($attribute.'_'.$rule, $this->messages))
  451. {
  452. return $this->messages[$attribute.'_'.$rule];
  453. }
  454. elseif (array_key_exists($rule, $this->messages))
  455. {
  456. return $this->messages[$rule];
  457. }
  458. else
  459. {
  460. $message = Lang::line('validation.'.$rule)->get($this->language);
  461. // For "size" rules that are validating strings or files, we need to adjust
  462. // the default error message for the appropriate units.
  463. if (in_array($rule, $this->size_rules) and ! $this->has_rule($attribute, $this->numeric_rules))
  464. {
  465. return (array_key_exists($attribute, Input::file()))
  466. ? rtrim($message, '.').' '.Lang::line('validation.kilobytes')->get($this->language).'.'
  467. : rtrim($message, '.').' '.Lang::line('validation.characters')->get($this->language).'.';
  468. }
  469. return $message;
  470. }
  471. }
  472. /**
  473. * Replace all error message place-holders with actual values.
  474. *
  475. * @param string $message
  476. * @param string $attribute
  477. * @param string $rule
  478. * @param array $parameters
  479. * @return string
  480. */
  481. protected function format_message($message, $attribute, $rule, $parameters)
  482. {
  483. // First we will get the language line for the attribute being validated.
  484. // Storing attribute names in a validation file allows the easily replacement
  485. // of attribute names (email) with more reader friendly versions (E-Mail).
  486. $display = Lang::line('validation.attributes.'.$attribute)->get($this->language, str_replace('_', ' ', $attribute));
  487. $message = str_replace(':attribute', $display, $message);
  488. // The "size" family of rules all have place-holders for the values applicable
  489. // to their function. For example, the "max" rule has a ":max" place-holder.
  490. if (in_array($rule, $this->size_rules))
  491. {
  492. $max = ($rule == 'between') ? $parameters[1] : $parameters[0];
  493. $message = str_replace(array(':size', ':min', ':max'), array($parameters[0], $parameters[0], $max), $message);
  494. }
  495. // The "inclusion" rules, which are rules that check if a value is within
  496. // a list of values, all have a place-holder to display the allowed values.
  497. elseif (in_array($rule, array('in', 'not_in', 'mimes')))
  498. {
  499. $message = str_replace(':values', implode(', ', $parameters), $message);
  500. }
  501. return $message;
  502. }
  503. /**
  504. * Determine if an attribute has a rule assigned to it.
  505. *
  506. * @param string $attribute
  507. * @param array $rules
  508. * @return bool
  509. */
  510. protected function has_rule($attribute, $rules)
  511. {
  512. foreach ($this->rules[$attribute] as $rule)
  513. {
  514. list($rule, $parameters) = $this->parse($rule);
  515. if (in_array($rule, $rules)) return true;
  516. }
  517. return false;
  518. }
  519. /**
  520. * Extract the rule name and parameters from a rule.
  521. *
  522. * @param string $rule
  523. * @return array
  524. */
  525. protected function parse($rule)
  526. {
  527. // The format for specifying validation rules and parameters follows
  528. // a {rule}:{parameters} convention. For instance, "max:3" specifies
  529. // that the value may only be 3 characters in length.
  530. $parameters = (($colon = strpos($rule, ':')) !== false) ? explode(',', substr($rule, $colon + 1)) : array();
  531. return array(is_numeric($colon) ? substr($rule, 0, $colon) : $rule, $parameters);
  532. }
  533. /**
  534. * Set the language that should be used when retrieving error messages.
  535. *
  536. * @param string $language
  537. * @return Validator
  538. */
  539. public function speaks($language)
  540. {
  541. $this->language = $language;
  542. return $this;
  543. }
  544. /**
  545. * Set the database connection that should be used by the validator.
  546. *
  547. * @param Database\Connection $connection
  548. * @return Validator
  549. */
  550. public function connection(\Laravel\Database\Connection $connection)
  551. {
  552. $this->connection = $connection;
  553. return $this;
  554. }
  555. /**
  556. * Dynamically handle calls to custom registered validators.
  557. */
  558. public function __call($method, $parameters)
  559. {
  560. // First we will slice the "validate_" prefix off of the validator
  561. // since custom validators are not registered with such a prefix.
  562. // Then, if a custom validator exists, we will call it.
  563. if (isset(static::$validators[$method = substr($method, 9)]))
  564. {
  565. return call_user_func_array(static::$validators[$method], $parameters);
  566. }
  567. throw new \Exception("Call to undefined method [$method] on Validator instance.");
  568. }
  569. }