input.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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($value = static::get($key)) or trim((string) $value) == '')
  19. {
  20. return false;
  21. }
  22. }
  23. return true;
  24. }
  25. /**
  26. * Get an item from the input data.
  27. *
  28. * @param string $key
  29. * @param mixed $default
  30. * @return string
  31. */
  32. public static function get($key = null, $default = null)
  33. {
  34. // -----------------------------------------------------
  35. // Has the input data been hydrated for the request?
  36. // -----------------------------------------------------
  37. if (is_null(static::$input))
  38. {
  39. static::hydrate();
  40. }
  41. return static::from_array(static::$input, $key, $default);
  42. }
  43. /**
  44. * Determine if the old input data contains an item.
  45. *
  46. * @param string $key
  47. * @return bool
  48. */
  49. public static function has_old($key)
  50. {
  51. return ( ! is_null(static::old($key)));
  52. }
  53. /**
  54. * Get input data from the previous request.
  55. *
  56. * @param string $key
  57. * @param mixed $default
  58. * @return string
  59. */
  60. public static function old($key = null, $default = null)
  61. {
  62. if (Config::get('session.driver') == '')
  63. {
  64. throw new \Exception("Sessions must be enabled to retrieve old input data.");
  65. }
  66. return static::from_array(Session::get('laravel_old_input', array()), $key, $default);
  67. }
  68. /**
  69. * Get an item from an array. If no key is specified, the entire array will be returned.
  70. *
  71. * @param array $array
  72. * @param string $key
  73. * @param mixed $default
  74. * @return string
  75. */
  76. private static function from_array($array, $key, $default)
  77. {
  78. if (is_null($key))
  79. {
  80. return $array;
  81. }
  82. return (array_key_exists($key, $array)) ? $array[$key] : $default;
  83. }
  84. /**
  85. * Hydrate the input data for the request.
  86. *
  87. * @return void
  88. */
  89. public static function hydrate()
  90. {
  91. switch (Request::method())
  92. {
  93. case 'GET':
  94. static::$input =& $_GET;
  95. break;
  96. case 'POST':
  97. static::$input =& $_POST;
  98. break;
  99. case 'PUT':
  100. case 'DELETE':
  101. // ----------------------------------------------------------------------
  102. // Typically, browsers do not support PUT and DELETE methods on HTML
  103. // forms. So, we simulate them using a hidden POST variable.
  104. //
  105. // If the request method is being "spoofed", we'll move the POST array
  106. // into the PUT / DELETE array.
  107. // ----------------------------------------------------------------------
  108. if (isset($_POST['request_method']) and ($_POST['request_method'] == 'PUT' or $_POST['request_method'] == 'DELETE'))
  109. {
  110. static::$input =& $_POST;
  111. }
  112. // ----------------------------------------------------------------------
  113. // If the request is a true PUT request, read the php://input file.
  114. // ----------------------------------------------------------------------
  115. else
  116. {
  117. parse_str(file_get_contents('php://input'), static::$input);
  118. }
  119. }
  120. }
  121. }