upload_of.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php namespace System\Validation\Rules;
  2. use System\File;
  3. use System\Input;
  4. use System\Validation\Rule;
  5. class Upload_Of extends Rule {
  6. /**
  7. * The acceptable file extensions.
  8. *
  9. * @var array
  10. */
  11. public $extensions;
  12. /**
  13. * The maximum file size in bytes.
  14. *
  15. * @var int
  16. */
  17. public $maximum;
  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, Input::file()))
  28. {
  29. return true;
  30. }
  31. $file = Input::file($attribute);
  32. if ( ! is_null($this->maximum) and $file['size'] > $this->maximum)
  33. {
  34. return false;
  35. }
  36. if ( ! is_null($this->extensions) and ! in_array(File::extension($file['name']), $this->extensions))
  37. {
  38. return false;
  39. }
  40. return true;
  41. }
  42. /**
  43. * Set the acceptable file extensions.
  44. *
  45. * @return Upload_Of
  46. */
  47. public function has_extension()
  48. {
  49. $this->extensions = func_get_args();
  50. return $this;
  51. }
  52. /**
  53. * Set the maximum file size in bytes.
  54. *
  55. * @param int $maximum
  56. * @return Upload_Of
  57. */
  58. public function less_than($maximum)
  59. {
  60. $this->maximum = $maximum;
  61. return $this;
  62. }
  63. }