input.php 2.6 KB

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