input.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?php namespace Laravel;
  2. class Input {
  3. /**
  4. * The applicable input for the request.
  5. *
  6. * @var array
  7. */
  8. public static $input;
  9. /**
  10. * The key used to store old input in the session.
  11. *
  12. * @var string
  13. */
  14. const old_input = 'laravel_old_input';
  15. /**
  16. * Get all of the input data for the request, including files.
  17. *
  18. * @return array
  19. */
  20. public static function all()
  21. {
  22. return array_merge(static::get(), static::file());
  23. }
  24. /**
  25. * Determine if the input data contains an item.
  26. *
  27. * If the input item is an empty string, false will be returned.
  28. *
  29. * @param string $key
  30. * @return bool
  31. */
  32. public static function has($key)
  33. {
  34. return trim((string) static::get($key)) !== '';
  35. }
  36. /**
  37. * Get an item from the input data.
  38. *
  39. * This method is used for all request verbs (GET, POST, PUT, and DELETE).
  40. *
  41. * <code>
  42. * // Get the "email" item from the input array
  43. * $email = Input::get('email');
  44. *
  45. * // Return a default value if the specified item doesn't exist
  46. * $email = Input::get('name', 'Taylor');
  47. * </code>
  48. *
  49. * @param string $key
  50. * @param mixed $default
  51. * @return mixed
  52. */
  53. public static function get($key = null, $default = null)
  54. {
  55. return array_get(static::$input, $key, $default);
  56. }
  57. /**
  58. * Get a subset of the items from the input data.
  59. *
  60. * <code>
  61. * // Get only the email from the input data
  62. * $value = Input::only('email');
  63. *
  64. * // Get only the username and email from the input data
  65. * $input = Input::only(array('username', 'email'));
  66. * </code>
  67. *
  68. * @param array $keys
  69. * @return array
  70. */
  71. public static function only($keys)
  72. {
  73. return array_intersect_key(static::get(), array_flip((array) $keys));
  74. }
  75. /**
  76. * Get all of the input data except for a specified array of items.
  77. *
  78. * <code>
  79. * // Get all of the input data except for username
  80. * $input = Input::except('username');
  81. *
  82. * // Get all of the input data except for username and email
  83. * $input = Input::except(array('username', 'email'));
  84. * </code>
  85. *
  86. * @param array $keys
  87. * @return array
  88. */
  89. public static function except($keys)
  90. {
  91. return array_diff_key(static::get(), array_flip($keys));
  92. }
  93. /**
  94. * Determine if the old input data contains an item.
  95. *
  96. * @param string $key
  97. * @return bool
  98. */
  99. public static function had($key)
  100. {
  101. return trim((string) static::old($key)) !== '';
  102. }
  103. /**
  104. * Get input data from the previous request.
  105. *
  106. * <code>
  107. * // Get the "email" item from the old input
  108. * $email = Input::old('email');
  109. *
  110. * // Return a default value if the specified item doesn't exist
  111. * $email = Input::old('name', 'Taylor');
  112. * </code>
  113. *
  114. * @param string $key
  115. * @param mixed $default
  116. * @return string
  117. */
  118. public static function old($key = null, $default = null)
  119. {
  120. return array_get(Session::get(Input::old_input, array()), $key, $default);
  121. }
  122. /**
  123. * Get an item from the uploaded file data.
  124. *
  125. * <code>
  126. * // Get the array of information for the "picture" upload
  127. * $picture = Input::file('picture');
  128. *
  129. * // Get a specific element from within the file's data array
  130. * $size = Input::file('picture.size');
  131. * </code>
  132. *
  133. * @param string $key
  134. * @param mixed $default
  135. * @return array
  136. */
  137. public static function file($key = null, $default = null)
  138. {
  139. return array_get($_FILES, $key, $default);
  140. }
  141. /**
  142. * Move an uploaded file to permanent storage.
  143. *
  144. * This method is simply a convenient wrapper around move_uploaded_file.
  145. *
  146. * <code>
  147. * // Move the "picture" file to a permanent location on disk
  148. * Input::upload('picture', 'path/to/photos/picture.jpg');
  149. * </code>
  150. *
  151. * @param string $key
  152. * @param string $path
  153. * @return bool
  154. */
  155. public static function upload($key, $path)
  156. {
  157. if (is_null(static::file($key))) return false;
  158. return move_uploaded_file(static::file("{$key}.tmp_name"), $path);
  159. }
  160. /**
  161. * Flash the input for the current request to the session.
  162. *
  163. * <code>
  164. * // Flash all of the input to the session
  165. * Input::flash();
  166. *
  167. * // Flash only a few input items to the session
  168. * Input::flash('only', array('name', 'email'));
  169. *
  170. * // Flash all but a few input items to the session
  171. * Input::flash('except', array('password', 'social_number'));
  172. * </code>
  173. *
  174. * @param string $filter
  175. * @param array $keys
  176. * @return void
  177. */
  178. public static function flash($filter = null, $keys = array())
  179. {
  180. $flash = ( ! is_null($filter)) ? static::$filter($keys) : static::get();
  181. Session::flash(Input::old_input, $flash);
  182. }
  183. /**
  184. * Flush all of the old input from the session.
  185. *
  186. * @return void
  187. */
  188. public static function flush()
  189. {
  190. Session::flash(Input::old_input, array());
  191. }
  192. }