input.php 2.4 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. * Determine if the input data contains an item.
  11. *
  12. * @param string $key
  13. * @return bool
  14. */
  15. public static function has($key)
  16. {
  17. return ( ! is_null(static::get($key)) and trim((string) static::get($key)) !== '');
  18. }
  19. /**
  20. * Get an item from the input data.
  21. *
  22. * @param string $key
  23. * @param mixed $default
  24. * @return string
  25. */
  26. public static function get($key = null, $default = null)
  27. {
  28. if (is_null(static::$input))
  29. {
  30. static::hydrate();
  31. }
  32. return Arr::get(static::$input, $key, $default);
  33. }
  34. /**
  35. * Determine if the old input data contains an item.
  36. *
  37. * @param string $key
  38. * @return bool
  39. */
  40. public static function had($key)
  41. {
  42. return ( ! is_null(static::old($key)) and trim((string) static::old($key)) !== '');
  43. }
  44. /**
  45. * Get input data from the previous request.
  46. *
  47. * @param string $key
  48. * @param mixed $default
  49. * @return string
  50. */
  51. public static function old($key = null, $default = null)
  52. {
  53. if (Config::get('session.driver') == '')
  54. {
  55. throw new \Exception("Sessions must be enabled to retrieve old input data.");
  56. }
  57. return Arr::get(Session::get('laravel_old_input', array()), $key, $default);
  58. }
  59. /**
  60. * Get an item from the uploaded file data.
  61. *
  62. * @param string $key
  63. * @param mixed $default
  64. * @return array
  65. */
  66. public static function file($key = null, $default = null)
  67. {
  68. if (strpos($key, '.') !== false)
  69. {
  70. list($file, $key) = explode('.', $key);
  71. return Arr::get($_FILES[$file], $key, $default);
  72. }
  73. return Arr::get($_FILES, $key, $default);
  74. }
  75. /**
  76. * Hydrate the input data for the request.
  77. *
  78. * @return void
  79. */
  80. public static function hydrate()
  81. {
  82. switch (Request::method())
  83. {
  84. case 'GET':
  85. static::$input =& $_GET;
  86. break;
  87. case 'POST':
  88. static::$input =& $_POST;
  89. break;
  90. case 'PUT':
  91. case 'DELETE':
  92. // The request method can be spoofed by specifying a "REQUEST_METHOD" in the $_POST array.
  93. // If the method is being spoofed, the $_POST array will be considered the input.
  94. if (isset($_POST['REQUEST_METHOD']) and in_array($_POST['REQUEST_METHOD'], array('PUT', 'DELETE')))
  95. {
  96. static::$input =& $_POST;
  97. }
  98. else
  99. {
  100. parse_str(file_get_contents('php://input'), static::$input);
  101. }
  102. }
  103. }
  104. }