input.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php namespace System;
  2. class Input {
  3. /**
  4. * The input data for the request.
  5. *
  6. * @var array
  7. */
  8. public static $input;
  9. /**
  10. * Get all of the input data for the request.
  11. *
  12. * This method returns a merged array containing Input::get and Input::file.
  13. *
  14. * @return array
  15. */
  16. public static function all()
  17. {
  18. return array_merge(static::get(), static::file());
  19. }
  20. /**
  21. * Determine if the input data contains an item.
  22. *
  23. * @param string $key
  24. * @return bool
  25. */
  26. public static function has($key)
  27. {
  28. return ( ! is_null(static::get($key)) and trim((string) static::get($key)) !== '');
  29. }
  30. /**
  31. * Get an item from the input data.
  32. *
  33. * @param string $key
  34. * @param mixed $default
  35. * @return string
  36. */
  37. public static function get($key = null, $default = null)
  38. {
  39. if (is_null(static::$input)) static::hydrate();
  40. return Arr::get(static::$input, $key, $default);
  41. }
  42. /**
  43. * Determine if the old input data contains an item.
  44. *
  45. * @param string $key
  46. * @return bool
  47. */
  48. public static function had($key)
  49. {
  50. return ( ! is_null(static::old($key)) and trim((string) static::old($key)) !== '');
  51. }
  52. /**
  53. * Get input data from the previous request.
  54. *
  55. * @param string $key
  56. * @param mixed $default
  57. * @return string
  58. */
  59. public static function old($key = null, $default = null)
  60. {
  61. if (Config::get('session.driver') == '')
  62. {
  63. throw new \Exception("Sessions must be enabled to retrieve old input data.");
  64. }
  65. return Arr::get(Session::get('laravel_old_input', array()), $key, $default);
  66. }
  67. /**
  68. * Get an item from the uploaded file data.
  69. *
  70. * @param string $key
  71. * @param mixed $default
  72. * @return array
  73. */
  74. public static function file($key = null, $default = null)
  75. {
  76. return Arr::get($_FILES, $key, $default);
  77. }
  78. /**
  79. * Hydrate the input data for the request.
  80. *
  81. * @return void
  82. */
  83. public static function hydrate()
  84. {
  85. switch (Request::method())
  86. {
  87. case 'GET':
  88. static::$input =& $_GET;
  89. break;
  90. case 'POST':
  91. static::$input =& $_POST;
  92. break;
  93. case 'PUT':
  94. case 'DELETE':
  95. if (Request::spoofed())
  96. {
  97. static::$input =& $_POST;
  98. }
  99. else
  100. {
  101. parse_str(file_get_contents('php://input'), static::$input);
  102. }
  103. }
  104. }
  105. }