uniqueness_of.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php namespace System\Validation\Rules;
  2. use System\DB;
  3. use System\DB\Eloquent;
  4. use System\Validation\Rule;
  5. class Uniqueness_Of extends Rule {
  6. /**
  7. * The database table that should be checked.
  8. *
  9. * @var string
  10. */
  11. public $table;
  12. /**
  13. * The database column that should be checked.
  14. *
  15. * @var string
  16. */
  17. public $column;
  18. /**
  19. * Evaluate the validity of an attribute.
  20. *
  21. * @param string $attribute
  22. * @param array $attributes
  23. * @return void
  24. */
  25. public function check($attribute, $attributes)
  26. {
  27. if ( ! array_key_exists($attribute, $attributes))
  28. {
  29. return true;
  30. }
  31. if (is_null($this->column))
  32. {
  33. $this->column = $attribute;
  34. }
  35. return DB::table($this->table)->where($this->column, '=', $attributes[$attribute])->count() == 0;
  36. }
  37. /**
  38. * Set the database table and column.
  39. *
  40. * @param string $table
  41. * @param string $column
  42. * @return Uniqueness_Of
  43. */
  44. public function on($table, $column = null)
  45. {
  46. $this->table = $table;
  47. $this->column = $column;
  48. return $this;
  49. }
  50. }