input.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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 (array_key_exists($key, static::$input)) ? 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. * Since input data is flashed to the session, a session driver must be specified
  48. * in order to use this method.
  49. *
  50. * @param string $key
  51. * @param mixed $default
  52. * @return string
  53. */
  54. public static function old($key = null, $default = null)
  55. {
  56. if (Config::get('session.driver') == '')
  57. {
  58. throw new \Exception("Sessions must be enabled to retrieve old input data.");
  59. }
  60. return (array_key_exists($key, $old = Session::get('laravel_old_input', array()))) ? $old[$key] : $default;
  61. }
  62. /**
  63. * Get an item from the uploaded file data.
  64. *
  65. * If a "dot" is present in the key. A specific element will be returned from
  66. * the specified file array.
  67. *
  68. * Example: Input::file('picture.size');
  69. *
  70. * The statement above will return the value of $_FILES['picture']['size'].
  71. *
  72. * @param string $key
  73. * @param mixed $default
  74. * @return array
  75. */
  76. public static function file($key = null, $default = null)
  77. {
  78. if (strpos($key, '.') !== false)
  79. {
  80. list($file, $key) = explode('.', $key);
  81. return (isset($_FILES[$file][$key])) ? $_FILES[$file][$key] : $default;
  82. }
  83. return (array_key_exists($key, $_FILES)) ? $_FILES[$key] : $default;
  84. }
  85. /**
  86. * Hydrate the input data for the request.
  87. *
  88. * Typically, browsers do not support PUT and DELETE methods on HTML forms. So, they are simulated
  89. * by Laravel using a hidden POST element. If the request method is being "spoofed", the POST
  90. * array will be moved into the PUT / DELETE array. True "PUT" or "DELETE" rqeuests will be read
  91. * from the php://input file.
  92. *
  93. * @return void
  94. */
  95. public static function hydrate()
  96. {
  97. switch (Request::method())
  98. {
  99. case 'GET':
  100. static::$input =& $_GET;
  101. break;
  102. case 'POST':
  103. static::$input =& $_POST;
  104. break;
  105. case 'PUT':
  106. case 'DELETE':
  107. if (isset($_POST['REQUEST_METHOD']) and in_array($_POST['REQUEST_METHOD'], array('PUT', 'DELETE')))
  108. {
  109. static::$input =& $_POST;
  110. }
  111. else
  112. {
  113. parse_str(file_get_contents('php://input'), static::$input);
  114. }
  115. }
  116. }
  117. }