input.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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 or set of items.
  11. *
  12. * @return bool
  13. */
  14. public static function has()
  15. {
  16. foreach (func_get_args() as $key)
  17. {
  18. if (is_null(static::get($key)))
  19. {
  20. return false;
  21. }
  22. }
  23. return true;
  24. }
  25. /**
  26. * Determine if the input data contains an item or set of items that are not empty.
  27. *
  28. * @return bool
  29. */
  30. public static function filled()
  31. {
  32. foreach (func_get_args() as $key)
  33. {
  34. if ( ! static::has($key) or trim((string) static::get($key)) == '')
  35. {
  36. return false;
  37. }
  38. }
  39. return true;
  40. }
  41. /**
  42. * Get an item from the input data.
  43. *
  44. * @param string $key
  45. * @param mixed $default
  46. * @return string
  47. */
  48. public static function get($key = null, $default = null)
  49. {
  50. if (is_null(static::$input))
  51. {
  52. static::hydrate();
  53. }
  54. return static::from_array(static::$input, $key, $default);
  55. }
  56. /**
  57. * Determine if the old input data contains an item or set of items.
  58. *
  59. * @return bool
  60. */
  61. public static function had()
  62. {
  63. foreach (func_get_args() as $key)
  64. {
  65. if (is_null(static::old($key)))
  66. {
  67. return false;
  68. }
  69. }
  70. return true;
  71. }
  72. /**
  73. * Determine if the old input data contains an item or set of items that are not empty.
  74. *
  75. * @return bool
  76. */
  77. public static function was_filled()
  78. {
  79. foreach (func_get_args() as $key)
  80. {
  81. if ( ! static::had($key) or trim((string) static::old($key)) == '')
  82. {
  83. return false;
  84. }
  85. }
  86. return true;
  87. }
  88. /**
  89. * Get input data from the previous request.
  90. *
  91. * @param string $key
  92. * @param mixed $default
  93. * @return string
  94. */
  95. public static function old($key = null, $default = null)
  96. {
  97. if (Config::get('session.driver') == '')
  98. {
  99. throw new \Exception("Sessions must be enabled to retrieve old input data.");
  100. }
  101. return static::from_array(Session::get('laravel_old_input', array()), $key, $default);
  102. }
  103. /**
  104. * Get an item from an array. If no key is specified, the entire array will be returned.
  105. *
  106. * @param array $array
  107. * @param string $key
  108. * @param mixed $default
  109. * @return string
  110. */
  111. private static function from_array($array, $key, $default)
  112. {
  113. if (is_null($key))
  114. {
  115. return $array;
  116. }
  117. return (array_key_exists($key, $array)) ? $array[$key] : $default;
  118. }
  119. /**
  120. * Hydrate the input data for the request.
  121. *
  122. * @return void
  123. */
  124. public static function hydrate()
  125. {
  126. switch (Request::method())
  127. {
  128. case 'GET':
  129. static::$input =& $_GET;
  130. break;
  131. case 'POST':
  132. static::$input =& $_POST;
  133. break;
  134. case 'PUT':
  135. case 'DELETE':
  136. // ----------------------------------------------------------------------
  137. // Typically, browsers do not support PUT and DELETE methods on HTML
  138. // forms. So, we simulate them using a hidden POST variable.
  139. //
  140. // If the request method is being "spoofed", we'll move the POST array
  141. // into the PUT / DELETE array.
  142. // ----------------------------------------------------------------------
  143. if (isset($_POST['request_method']) and ($_POST['request_method'] == 'PUT' or $_POST['request_method'] == 'DELETE'))
  144. {
  145. static::$input =& $_POST;
  146. }
  147. // ----------------------------------------------------------------------
  148. // If the request is a true PUT request, read the php://input file.
  149. // ----------------------------------------------------------------------
  150. else
  151. {
  152. parse_str(file_get_contents('php://input'), static::$input);
  153. }
  154. }
  155. }
  156. }