input.php 3.0 KB

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