validator.php 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226
  1. <?php namespace Laravel; use Closure;
  2. class Validator {
  3. /**
  4. * The array being validated.
  5. *
  6. * @var array
  7. */
  8. public $attributes;
  9. /**
  10. * The post-validation error messages.
  11. *
  12. * @var Messages
  13. */
  14. public $errors;
  15. /**
  16. * The validation rules.
  17. *
  18. * @var array
  19. */
  20. protected $rules = array();
  21. /**
  22. * The validation messages.
  23. *
  24. * @var array
  25. */
  26. protected $messages = array();
  27. /**
  28. * The database connection that should be used by the validator.
  29. *
  30. * @var Database\Connection
  31. */
  32. protected $db;
  33. /**
  34. * The bundle for which the validation is being run.
  35. *
  36. * @var string
  37. */
  38. protected $bundle = DEFAULT_BUNDLE;
  39. /**
  40. * The language that should be used when retrieving error messages.
  41. *
  42. * @var string
  43. */
  44. protected $language;
  45. /**
  46. * The size related validation rules.
  47. *
  48. * @var array
  49. */
  50. protected $size_rules = array('size', 'between', 'min', 'max');
  51. /**
  52. * The numeric related validation rules.
  53. *
  54. * @var array
  55. */
  56. protected $numeric_rules = array('numeric', 'integer');
  57. /**
  58. * The registered custom validators.
  59. *
  60. * @var array
  61. */
  62. protected static $validators = array();
  63. /**
  64. * Create a new validator instance.
  65. *
  66. * @param mixed $attributes
  67. * @param array $rules
  68. * @param array $messages
  69. * @return void
  70. */
  71. public function __construct($attributes, $rules, $messages = array())
  72. {
  73. foreach ($rules as $key => &$rule)
  74. {
  75. $rule = (is_string($rule)) ? explode('|', $rule) : $rule;
  76. }
  77. $this->rules = $rules;
  78. $this->messages = $messages;
  79. $this->attributes = (is_object($attributes)) ? get_object_vars($attributes) : $attributes;
  80. }
  81. /**
  82. * Create a new validator instance.
  83. *
  84. * @param array $attributes
  85. * @param array $rules
  86. * @param array $messages
  87. * @return Validator
  88. */
  89. public static function make($attributes, $rules, $messages = array())
  90. {
  91. return new static($attributes, $rules, $messages);
  92. }
  93. /**
  94. * Register a custom validator.
  95. *
  96. * @param string $name
  97. * @param Closure $validator
  98. * @return void
  99. */
  100. public static function register($name, $validator)
  101. {
  102. static::$validators[$name] = $validator;
  103. }
  104. /**
  105. * Validate the target array using the specified validation rules.
  106. *
  107. * @return bool
  108. */
  109. public function passes()
  110. {
  111. return $this->valid();
  112. }
  113. /**
  114. * Validate the target array using the specified validation rules.
  115. *
  116. * @return bool
  117. */
  118. public function fails()
  119. {
  120. return $this->invalid();
  121. }
  122. /**
  123. * Validate the target array using the specified validation rules.
  124. *
  125. * @return bool
  126. */
  127. public function invalid()
  128. {
  129. return ! $this->valid();
  130. }
  131. /**
  132. * Validate the target array using the specified validation rules.
  133. *
  134. * @return bool
  135. */
  136. public function valid()
  137. {
  138. $this->errors = new Messages;
  139. foreach ($this->rules as $attribute => $rules)
  140. {
  141. foreach ($rules as $rule) $this->check($attribute, $rule);
  142. }
  143. return count($this->errors->messages) == 0;
  144. }
  145. /**
  146. * Evaluate an attribute against a validation rule.
  147. *
  148. * @param string $attribute
  149. * @param string $rule
  150. * @return void
  151. */
  152. protected function check($attribute, $rule)
  153. {
  154. list($rule, $parameters) = $this->parse($rule);
  155. $value = array_get($this->attributes, $attribute);
  156. // Before running the validator, we need to verify that the attribute and rule
  157. // combination is actually validatable. Only the "accepted" rule implies that
  158. // the attribute is "required", so if the attribute does not exist, the other
  159. // rules will not be run for the attribute.
  160. $validatable = $this->validatable($rule, $attribute, $value);
  161. if ($validatable and ! $this->{'validate_'.$rule}($attribute, $value, $parameters, $this))
  162. {
  163. $this->error($attribute, $rule, $parameters);
  164. }
  165. }
  166. /**
  167. * Determine if an attribute is validatable.
  168. *
  169. * To be considered validatable, the attribute must either exist, or the rule
  170. * being checked must implicitly validate "required", such as the "required"
  171. * rule or the "accepted" rule.
  172. *
  173. * @param string $rule
  174. * @param string $attribute
  175. * @param mixed $value
  176. * @return bool
  177. */
  178. protected function validatable($rule, $attribute, $value)
  179. {
  180. return $this->validate_required($attribute, $value) or $this->implicit($rule);
  181. }
  182. /**
  183. * Determine if a given rule implies that the attribute is required.
  184. *
  185. * @param string $rule
  186. * @return bool
  187. */
  188. protected function implicit($rule)
  189. {
  190. return $rule == 'required' or $rule == 'accepted' or $rule == 'required_with';
  191. }
  192. /**
  193. * Add an error message to the validator's collection of messages.
  194. *
  195. * @param string $attribute
  196. * @param string $rule
  197. * @param array $parameters
  198. * @return void
  199. */
  200. protected function error($attribute, $rule, $parameters)
  201. {
  202. $message = $this->replace($this->message($attribute, $rule), $attribute, $rule, $parameters);
  203. $this->errors->add($attribute, $message);
  204. }
  205. /**
  206. * Validate that a required attribute exists in the attributes array.
  207. *
  208. * @param string $attribute
  209. * @param mixed $value
  210. * @return bool
  211. */
  212. protected function validate_required($attribute, $value)
  213. {
  214. if (is_null($value))
  215. {
  216. return false;
  217. }
  218. elseif (is_string($value) and trim($value) === '')
  219. {
  220. return false;
  221. }
  222. elseif ( ! is_null(Input::file($attribute)) and is_array($value) and $value['tmp_name'] == '')
  223. {
  224. return false;
  225. }
  226. return true;
  227. }
  228. /**
  229. * Validate that an attribute exists in the attributes array, if another
  230. * attribute exists in the attributes array.
  231. *
  232. * @param string $attribute
  233. * @param mixed $value
  234. * @param array $parameters
  235. * @return bool
  236. */
  237. protected function validate_required_with($attribute, $value, $parameters)
  238. {
  239. $other = $parameters[0];
  240. $other_value = array_get($this->attributes, $other);
  241. if ($this->validate_required($other, $other_value))
  242. {
  243. return $this->validate_required($attribute, $value);
  244. }
  245. return true;
  246. }
  247. /**
  248. * Validate that an attribute has a matching confirmation attribute.
  249. *
  250. * @param string $attribute
  251. * @param mixed $value
  252. * @return bool
  253. */
  254. protected function validate_confirmed($attribute, $value)
  255. {
  256. return $this->validate_same($attribute, $value, array($attribute.'_confirmation'));
  257. }
  258. /**
  259. * Validate that an attribute was "accepted".
  260. *
  261. * This validation rule implies the attribute is "required".
  262. *
  263. * @param string $attribute
  264. * @param mixed $value
  265. * @return bool
  266. */
  267. protected function validate_accepted($attribute, $value)
  268. {
  269. return $this->validate_required($attribute, $value) and ($value == 'yes' or $value == '1' or $value == 'on');
  270. }
  271. /**
  272. * Validate that an attribute is the same as another attribute.
  273. *
  274. * @param string $attribute
  275. * @param mixed $value
  276. * @param array $parameters
  277. * @return bool
  278. */
  279. protected function validate_same($attribute, $value, $parameters)
  280. {
  281. $other = $parameters[0];
  282. return isset($this->attributes[$other]) and $value == $this->attributes[$other];
  283. }
  284. /**
  285. * Validate that an attribute is different from another attribute.
  286. *
  287. * @param string $attribute
  288. * @param mixed $value
  289. * @param array $parameters
  290. * @return bool
  291. */
  292. protected function validate_different($attribute, $value, $parameters)
  293. {
  294. $other = $parameters[0];
  295. return isset($this->attributes[$other]) and $value != $this->attributes[$other];
  296. }
  297. /**
  298. * Validate that an attribute is numeric.
  299. *
  300. * @param string $attribute
  301. * @param mixed $value
  302. * @return bool
  303. */
  304. protected function validate_numeric($attribute, $value)
  305. {
  306. return is_numeric($value);
  307. }
  308. /**
  309. * Validate that an attribute is an integer.
  310. *
  311. * @param string $attribute
  312. * @param mixed $value
  313. * @return bool
  314. */
  315. protected function validate_integer($attribute, $value)
  316. {
  317. return filter_var($value, FILTER_VALIDATE_INT) !== false;
  318. }
  319. /**
  320. * Validate the size of an attribute.
  321. *
  322. * @param string $attribute
  323. * @param mixed $value
  324. * @param array $parameters
  325. * @return bool
  326. */
  327. protected function validate_size($attribute, $value, $parameters)
  328. {
  329. return $this->size($attribute, $value) == $parameters[0];
  330. }
  331. /**
  332. * Validate the size of an attribute is between a set of values.
  333. *
  334. * @param string $attribute
  335. * @param mixed $value
  336. * @param array $parameters
  337. * @return bool
  338. */
  339. protected function validate_between($attribute, $value, $parameters)
  340. {
  341. $size = $this->size($attribute, $value);
  342. return $size >= $parameters[0] and $size <= $parameters[1];
  343. }
  344. /**
  345. * Validate the size of an attribute is greater than a minimum value.
  346. *
  347. * @param string $attribute
  348. * @param mixed $value
  349. * @param array $parameters
  350. * @return bool
  351. */
  352. protected function validate_min($attribute, $value, $parameters)
  353. {
  354. return $this->size($attribute, $value) >= $parameters[0];
  355. }
  356. /**
  357. * Validate the size of an attribute is less than a maximum value.
  358. *
  359. * @param string $attribute
  360. * @param mixed $value
  361. * @param array $parameters
  362. * @return bool
  363. */
  364. protected function validate_max($attribute, $value, $parameters)
  365. {
  366. return $this->size($attribute, $value) <= $parameters[0];
  367. }
  368. /**
  369. * Get the size of an attribute.
  370. *
  371. * @param string $attribute
  372. * @param mixed $value
  373. * @return mixed
  374. */
  375. protected function size($attribute, $value)
  376. {
  377. // This method will determine if the attribute is a number, string, or file and
  378. // return the proper size accordingly. If it is a number, the number itself is
  379. // the size; if it is a file, the kilobytes is the size; if it is a
  380. // string, the length is the size.
  381. if (is_numeric($value) and $this->has_rule($attribute, $this->numeric_rules))
  382. {
  383. return $this->attributes[$attribute];
  384. }
  385. elseif (array_key_exists($attribute, Input::file()))
  386. {
  387. return $value['size'] / 1024;
  388. }
  389. else
  390. {
  391. return Str::length(trim($value));
  392. }
  393. }
  394. /**
  395. * Validate an attribute is contained within a list of values.
  396. *
  397. * @param string $attribute
  398. * @param mixed $value
  399. * @param array $parameters
  400. * @return bool
  401. */
  402. protected function validate_in($attribute, $value, $parameters)
  403. {
  404. return in_array($value, $parameters);
  405. }
  406. /**
  407. * Validate an attribute is not contained within a list of values.
  408. *
  409. * @param string $attribute
  410. * @param mixed $value
  411. * @param array $parameters
  412. * @return bool
  413. */
  414. protected function validate_not_in($attribute, $value, $parameters)
  415. {
  416. return ! in_array($value, $parameters);
  417. }
  418. /**
  419. * Validate the uniqueness of an attribute value on a given database table.
  420. *
  421. * If a database column is not specified, the attribute will be used.
  422. *
  423. * @param string $attribute
  424. * @param mixed $value
  425. * @param array $parameters
  426. * @return bool
  427. */
  428. protected function validate_unique($attribute, $value, $parameters)
  429. {
  430. // We allow the table column to be specified just in case the column does
  431. // not have the same name as the attribute. It must be within the second
  432. // parameter position, right after the database table name.
  433. if (isset($parameters[1]))
  434. {
  435. $attribute = $parameters[1];
  436. }
  437. $query = $this->db()->table($parameters[0])->where($attribute, '=', $value);
  438. // We also allow an ID to be specified that will not be included in the
  439. // uniqueness check. This makes updating columns easier since it is
  440. // fine for the given ID to exist in the table.
  441. if (isset($parameters[2]))
  442. {
  443. $id = (isset($parameters[3])) ? $parameters[3] : 'id';
  444. $query->where($id, '<>', $parameters[2]);
  445. }
  446. return $query->count() == 0;
  447. }
  448. /**
  449. * Validate the existence of an attribute value in a database table.
  450. *
  451. * @param string $attribute
  452. * @param mixed $value
  453. * @param array $parameters
  454. * @return bool
  455. */
  456. protected function validate_exists($attribute, $value, $parameters)
  457. {
  458. if (isset($parameters[1])) $attribute = $parameters[1];
  459. // Grab the number of elements we are looking for. If the given value is
  460. // in array, we'll count all of the values in the array, otherwise we
  461. // can just make sure the count is greater or equal to one.
  462. $count = (is_array($value)) ? count($value) : 1;
  463. $query = $this->db()->table($parameters[0]);
  464. // If the given value is an array, we will check for the existence of
  465. // all the values in the database, otherwise we'll check for the
  466. // presence of the single given value in the database.
  467. if (is_array($value))
  468. {
  469. $query = $query->where_in($attribute, $value);
  470. }
  471. else
  472. {
  473. $query = $query->where($attribute, '=', $value);
  474. }
  475. return $query->count() >= $count;
  476. }
  477. /**
  478. * Validate that an attribute is a valid IP.
  479. *
  480. * @param string $attribute
  481. * @param mixed $value
  482. * @return bool
  483. */
  484. protected function validate_ip($attribute, $value)
  485. {
  486. return filter_var($value, FILTER_VALIDATE_IP) !== false;
  487. }
  488. /**
  489. * Validate that an attribute is a valid e-mail address.
  490. *
  491. * @param string $attribute
  492. * @param mixed $value
  493. * @return bool
  494. */
  495. protected function validate_email($attribute, $value)
  496. {
  497. return filter_var($value, FILTER_VALIDATE_EMAIL) !== false;
  498. }
  499. /**
  500. * Validate that an attribute is a valid URL.
  501. *
  502. * @param string $attribute
  503. * @param mixed $value
  504. * @return bool
  505. */
  506. protected function validate_url($attribute, $value)
  507. {
  508. return filter_var($value, FILTER_VALIDATE_URL) !== false;
  509. }
  510. /**
  511. * Validate that an attribute is an active URL.
  512. *
  513. * @param string $attribute
  514. * @param mixed $value
  515. * @return bool
  516. */
  517. protected function validate_active_url($attribute, $value)
  518. {
  519. $url = str_replace(array('http://', 'https://', 'ftp://'), '', Str::lower($value));
  520. return (trim($url) !== '') ? checkdnsrr($url) : false;
  521. }
  522. /**
  523. * Validate the MIME type of a file is an image MIME type.
  524. *
  525. * @param string $attribute
  526. * @param mixed $value
  527. * @return bool
  528. */
  529. protected function validate_image($attribute, $value)
  530. {
  531. return $this->validate_mimes($attribute, $value, array('jpg', 'png', 'gif', 'bmp'));
  532. }
  533. /**
  534. * Validate that an attribute contains only alphabetic characters.
  535. *
  536. * @param string $attribute
  537. * @param mixed $value
  538. * @return bool
  539. */
  540. protected function validate_alpha($attribute, $value)
  541. {
  542. return preg_match('/^([a-z])+$/i', $value);
  543. }
  544. /**
  545. * Validate that an attribute contains only alpha-numeric characters.
  546. *
  547. * @param string $attribute
  548. * @param mixed $value
  549. * @return bool
  550. */
  551. protected function validate_alpha_num($attribute, $value)
  552. {
  553. return preg_match('/^([a-z0-9])+$/i', $value);
  554. }
  555. /**
  556. * Validate that an attribute contains only alpha-numeric characters, dashes, and underscores.
  557. *
  558. * @param string $attribute
  559. * @param mixed $value
  560. * @return bool
  561. */
  562. protected function validate_alpha_dash($attribute, $value)
  563. {
  564. return preg_match('/^([-a-z0-9_-])+$/i', $value);
  565. }
  566. /**
  567. * Validate that an attribute passes a regular expression check.
  568. *
  569. * @param string $attribute
  570. * @param mixed $value
  571. * @param array $parameters
  572. * @return bool
  573. */
  574. protected function validate_match($attribute, $value, $parameters)
  575. {
  576. return preg_match($parameters[0], $value);
  577. }
  578. /**
  579. * Validate the MIME type of a file upload attribute is in a set of MIME types.
  580. *
  581. * @param string $attribute
  582. * @param array $value
  583. * @param array $parameters
  584. * @return bool
  585. */
  586. protected function validate_mimes($attribute, $value, $parameters)
  587. {
  588. if ( ! is_array($value) or array_get($value, 'tmp_name', '') == '') return true;
  589. foreach ($parameters as $extension)
  590. {
  591. if (File::is($extension, $value['tmp_name']))
  592. {
  593. return true;
  594. }
  595. }
  596. return false;
  597. }
  598. /**
  599. * Validate that an attribute is an array
  600. *
  601. * @param string $attribute
  602. * @param mixed $value
  603. * @return bool
  604. */
  605. protected function validate_array($attribute, $value)
  606. {
  607. return is_array($value);
  608. }
  609. /**
  610. * Validate that an attribute of type array has a specific count
  611. *
  612. * @param string $attribute
  613. * @param mixed $value
  614. * @param array $parameters
  615. * @return bool
  616. */
  617. protected function validate_count($attribute, $value, $parameters)
  618. {
  619. return (is_array($value) && count($value) == $parameters[0]);
  620. }
  621. /**
  622. * Validate that an attribute of type array has a minimum of elements.
  623. *
  624. * @param string $attribute
  625. * @param mixed $value
  626. * @param array $parameters
  627. * @return bool
  628. */
  629. protected function validate_countmin($attribute, $value, $parameters)
  630. {
  631. return (is_array($value) && count($value) >= $parameters[0]);
  632. }
  633. /**
  634. * Validate that an attribute of type array has a maximum of elements.
  635. *
  636. * @param string $attribute
  637. * @param mixed $value
  638. * @param array $parameters
  639. * @return bool
  640. */
  641. protected function validate_countmax($attribute, $value, $parameters)
  642. {
  643. return (is_array($value) && count($value) <= $parameters[0]);
  644. }
  645. /**
  646. * Validate that an attribute of type array has elements between max and min.
  647. *
  648. * @param string $attribute
  649. * @param mixed $value
  650. * @param array $parameters
  651. * @return bool
  652. */
  653. protected function validate_countbetween($attribute, $value, $parameters)
  654. {
  655. return (is_array($value) && count($value) >= $parameters[0] && count($value) <= $parameters[1] );
  656. }
  657. /**
  658. * Validate the date is before a given date.
  659. *
  660. * @param string $attribute
  661. * @param mixed $value
  662. * @param array $parameters
  663. * @return bool
  664. */
  665. protected function validate_before($attribute, $value, $parameters)
  666. {
  667. return (strtotime($value) < strtotime($parameters[0]));
  668. }
  669. /**
  670. * Validate the date is after a given date.
  671. *
  672. * @param string $attribute
  673. * @param mixed $value
  674. * @param array $parameters
  675. * @return bool
  676. */
  677. protected function validate_after($attribute, $value, $parameters)
  678. {
  679. return (strtotime($value) > strtotime($parameters[0]));
  680. }
  681. /**
  682. * Get the proper error message for an attribute and rule.
  683. *
  684. * @param string $attribute
  685. * @param string $rule
  686. * @return string
  687. */
  688. protected function message($attribute, $rule)
  689. {
  690. $bundle = Bundle::prefix($this->bundle);
  691. // First we'll check for developer specified, attribute specific messages.
  692. // These messages take first priority. They allow the fine-grained tuning
  693. // of error messages for each rule.
  694. $custom = $attribute.'_'.$rule;
  695. if (array_key_exists($custom, $this->messages))
  696. {
  697. return $this->messages[$custom];
  698. }
  699. elseif (Lang::has($custom = "{$bundle}validation.custom.{$custom}", $this->language))
  700. {
  701. return Lang::line($custom)->get($this->language);
  702. }
  703. // Next we'll check for developer specified, rule specific error messages.
  704. // These allow the developer to override the error message for an entire
  705. // rule, regardless of the attribute being validated by that rule.
  706. elseif (array_key_exists($rule, $this->messages))
  707. {
  708. return $this->messages[$rule];
  709. }
  710. // If the rule being validated is a "size" rule, we will need to gather
  711. // the specific size message for the type of attribute being validated,
  712. // either a number, file, or string.
  713. elseif (in_array($rule, $this->size_rules))
  714. {
  715. return $this->size_message($bundle, $attribute, $rule);
  716. }
  717. // If no developer specified messages have been set, and no other special
  718. // messages apply to the rule, we will just pull the default validation
  719. // message from the validation language file.
  720. else
  721. {
  722. $line = "{$bundle}validation.{$rule}";
  723. return Lang::line($line)->get($this->language);
  724. }
  725. }
  726. /**
  727. * Get the proper error message for an attribute and size rule.
  728. *
  729. * @param string $bundle
  730. * @param string $attribute
  731. * @param string $rule
  732. * @return string
  733. */
  734. protected function size_message($bundle, $attribute, $rule)
  735. {
  736. // There are three different types of size validations. The attribute
  737. // may be either a number, file, or a string, so we'll check a few
  738. // things to figure out which one it is.
  739. if ($this->has_rule($attribute, $this->numeric_rules))
  740. {
  741. $line = 'numeric';
  742. }
  743. // We assume that attributes present in the $_FILES array are files,
  744. // which makes sense. If the attribute doesn't have numeric rules
  745. // and isn't a file, it's a string.
  746. elseif (array_key_exists($attribute, Input::file()))
  747. {
  748. $line = 'file';
  749. }
  750. else
  751. {
  752. $line = 'string';
  753. }
  754. return Lang::line("{$bundle}validation.{$rule}.{$line}")->get($this->language);
  755. }
  756. /**
  757. * Replace all error message place-holders with actual values.
  758. *
  759. * @param string $message
  760. * @param string $attribute
  761. * @param string $rule
  762. * @param array $parameters
  763. * @return string
  764. */
  765. protected function replace($message, $attribute, $rule, $parameters)
  766. {
  767. $message = str_replace(':attribute', $this->attribute($attribute), $message);
  768. if (method_exists($this, $replacer = 'replace_'.$rule))
  769. {
  770. $message = $this->$replacer($message, $attribute, $rule, $parameters);
  771. }
  772. return $message;
  773. }
  774. /**
  775. * Replace all place-holders for the required_with rule.
  776. *
  777. * @param string $message
  778. * @param string $attribute
  779. * @param string $rule
  780. * @param array $parameters
  781. * @return string
  782. */
  783. protected function replace_required_with($message, $attribute, $rule, $parameters)
  784. {
  785. return str_replace(':field', $this->attribute($parameters[0]), $message);
  786. }
  787. /**
  788. * Replace all place-holders for the between rule.
  789. *
  790. * @param string $message
  791. * @param string $attribute
  792. * @param string $rule
  793. * @param array $parameters
  794. * @return string
  795. */
  796. protected function replace_between($message, $attribute, $rule, $parameters)
  797. {
  798. return str_replace(array(':min', ':max'), $parameters, $message);
  799. }
  800. /**
  801. * Replace all place-holders for the size rule.
  802. *
  803. * @param string $message
  804. * @param string $attribute
  805. * @param string $rule
  806. * @param array $parameters
  807. * @return string
  808. */
  809. protected function replace_size($message, $attribute, $rule, $parameters)
  810. {
  811. return str_replace(':size', $parameters[0], $message);
  812. }
  813. /**
  814. * Replace all place-holders for the min rule.
  815. *
  816. * @param string $message
  817. * @param string $attribute
  818. * @param string $rule
  819. * @param array $parameters
  820. * @return string
  821. */
  822. protected function replace_min($message, $attribute, $rule, $parameters)
  823. {
  824. return str_replace(':min', $parameters[0], $message);
  825. }
  826. /**
  827. * Replace all place-holders for the max rule.
  828. *
  829. * @param string $message
  830. * @param string $attribute
  831. * @param string $rule
  832. * @param array $parameters
  833. * @return string
  834. */
  835. protected function replace_max($message, $attribute, $rule, $parameters)
  836. {
  837. return str_replace(':max', $parameters[0], $message);
  838. }
  839. /**
  840. * Replace all place-holders for the in rule.
  841. *
  842. * @param string $message
  843. * @param string $attribute
  844. * @param string $rule
  845. * @param array $parameters
  846. * @return string
  847. */
  848. protected function replace_in($message, $attribute, $rule, $parameters)
  849. {
  850. return str_replace(':values', implode(', ', $parameters), $message);
  851. }
  852. /**
  853. * Replace all place-holders for the not_in rule.
  854. *
  855. * @param string $message
  856. * @param string $attribute
  857. * @param string $rule
  858. * @param array $parameters
  859. * @return string
  860. */
  861. protected function replace_not_in($message, $attribute, $rule, $parameters)
  862. {
  863. return str_replace(':values', implode(', ', $parameters), $message);
  864. }
  865. /**
  866. * Replace all place-holders for the mimes rule.
  867. *
  868. * @param string $message
  869. * @param string $attribute
  870. * @param string $rule
  871. * @param array $parameters
  872. * @return string
  873. */
  874. protected function replace_mimes($message, $attribute, $rule, $parameters)
  875. {
  876. return str_replace(':values', implode(', ', $parameters), $message);
  877. }
  878. /**
  879. * Replace all place-holders for the same rule.
  880. *
  881. * @param string $message
  882. * @param string $attribute
  883. * @param string $rule
  884. * @param array $parameters
  885. * @return string
  886. */
  887. protected function replace_same($message, $attribute, $rule, $parameters)
  888. {
  889. return str_replace(':other', $this->attribute($parameters[0]), $message);
  890. }
  891. /**
  892. * Replace all place-holders for the different rule.
  893. *
  894. * @param string $message
  895. * @param string $attribute
  896. * @param string $rule
  897. * @param array $parameters
  898. * @return string
  899. */
  900. protected function replace_different($message, $attribute, $rule, $parameters)
  901. {
  902. return str_replace(':other', $this->attribute($parameters[0]), $message);
  903. }
  904. /**
  905. * Replace all place-holders for the before rule.
  906. *
  907. * @param string $message
  908. * @param string $attribute
  909. * @param string $rule
  910. * @param array $parameters
  911. * @return string
  912. */
  913. protected function replace_before($message, $attribute, $rule, $parameters)
  914. {
  915. return str_replace(':date', $parameters[0], $message);
  916. }
  917. /**
  918. * Replace all place-holders for the after rule.
  919. *
  920. * @param string $message
  921. * @param string $attribute
  922. * @param string $rule
  923. * @param array $parameters
  924. * @return string
  925. */
  926. protected function replace_after($message, $attribute, $rule, $parameters)
  927. {
  928. return str_replace(':date', $parameters[0], $message);
  929. }
  930. /**
  931. * Replace all place-holders for the count rule.
  932. *
  933. * @param string $message
  934. * @param string $attribute
  935. * @param string $rule
  936. * @param array $parameters
  937. * @return string
  938. */
  939. protected function replace_count($message, $attribute, $rule, $parameters)
  940. {
  941. return str_replace(':count', $parameters[0], $message);
  942. }
  943. /**
  944. * Replace all place-holders for the countmin rule.
  945. *
  946. * @param string $message
  947. * @param string $attribute
  948. * @param string $rule
  949. * @param array $parameters
  950. * @return string
  951. */
  952. protected function replace_countmin($message, $attribute, $rule, $parameters)
  953. {
  954. return str_replace(':min', $parameters[0], $message);
  955. }
  956. /**
  957. * Replace all place-holders for the countmax rule.
  958. *
  959. * @param string $message
  960. * @param string $attribute
  961. * @param string $rule
  962. * @param array $parameters
  963. * @return string
  964. */
  965. protected function replace_countmax($message, $attribute, $rule, $parameters)
  966. {
  967. return str_replace(':max', $parameters[0], $message);
  968. }
  969. /**
  970. * Replace all place-holders for the between rule.
  971. *
  972. * @param string $message
  973. * @param string $attribute
  974. * @param string $rule
  975. * @param array $parameters
  976. * @return string
  977. */
  978. protected function replace_countbetween($message, $attribute, $rule, $parameters)
  979. {
  980. return str_replace(array(':min', ':max'), $parameters, $message);
  981. }
  982. /**
  983. * Get the displayable name for a given attribute.
  984. *
  985. * @param string $attribute
  986. * @return string
  987. */
  988. protected function attribute($attribute)
  989. {
  990. $bundle = Bundle::prefix($this->bundle);
  991. // More reader friendly versions of the attribute names may be stored
  992. // in the validation language file, allowing a more readable version
  993. // of the attribute name in the message.
  994. $line = "{$bundle}validation.attributes.{$attribute}";
  995. if (Lang::has($line, $this->language))
  996. {
  997. return Lang::line($line)->get($this->language);
  998. }
  999. // If no language line has been specified for the attribute, all of
  1000. // the underscores are removed from the attribute name and that
  1001. // will be used as the attribute name.
  1002. else
  1003. {
  1004. return str_replace('_', ' ', $attribute);
  1005. }
  1006. }
  1007. /**
  1008. * Determine if an attribute has a rule assigned to it.
  1009. *
  1010. * @param string $attribute
  1011. * @param array $rules
  1012. * @return bool
  1013. */
  1014. protected function has_rule($attribute, $rules)
  1015. {
  1016. foreach ($this->rules[$attribute] as $rule)
  1017. {
  1018. list($rule, $parameters) = $this->parse($rule);
  1019. if (in_array($rule, $rules)) return true;
  1020. }
  1021. return false;
  1022. }
  1023. /**
  1024. * Extract the rule name and parameters from a rule.
  1025. *
  1026. * @param string $rule
  1027. * @return array
  1028. */
  1029. protected function parse($rule)
  1030. {
  1031. $parameters = array();
  1032. // The format for specifying validation rules and parameters follows a
  1033. // {rule}:{parameters} formatting convention. For instance, the rule
  1034. // "max:3" specifies that the value may only be 3 characters long.
  1035. if (($colon = strpos($rule, ':')) !== false)
  1036. {
  1037. $parameters = str_getcsv(substr($rule, $colon + 1));
  1038. }
  1039. return array(is_numeric($colon) ? substr($rule, 0, $colon) : $rule, $parameters);
  1040. }
  1041. /**
  1042. * Set the bundle that the validator is running for.
  1043. *
  1044. * The bundle determines which bundle the language lines will be loaded from.
  1045. *
  1046. * @param string $bundle
  1047. * @return Validator
  1048. */
  1049. public function bundle($bundle)
  1050. {
  1051. $this->bundle = $bundle;
  1052. return $this;
  1053. }
  1054. /**
  1055. * Set the language that should be used when retrieving error messages.
  1056. *
  1057. * @param string $language
  1058. * @return Validator
  1059. */
  1060. public function speaks($language)
  1061. {
  1062. $this->language = $language;
  1063. return $this;
  1064. }
  1065. /**
  1066. * Set the database connection that should be used by the validator.
  1067. *
  1068. * @param Database\Connection $connection
  1069. * @return Validator
  1070. */
  1071. public function connection(Database\Connection $connection)
  1072. {
  1073. $this->db = $connection;
  1074. return $this;
  1075. }
  1076. /**
  1077. * Get the database connection for the Validator.
  1078. *
  1079. * @return Database\Connection
  1080. */
  1081. protected function db()
  1082. {
  1083. if ( ! is_null($this->db)) return $this->db;
  1084. return $this->db = Database::connection();
  1085. }
  1086. /**
  1087. * Dynamically handle calls to custom registered validators.
  1088. */
  1089. public function __call($method, $parameters)
  1090. {
  1091. // First we will slice the "validate_" prefix off of the validator since
  1092. // custom validators aren't registered with such a prefix, then we can
  1093. // just call the method with the given parameters.
  1094. if (isset(static::$validators[$method = substr($method, 9)]))
  1095. {
  1096. return call_user_func_array(static::$validators[$method], $parameters);
  1097. }
  1098. throw new \Exception("Method [$method] does not exist.");
  1099. }
  1100. }