request.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php namespace Laravel; use Closure;
  2. class Request {
  3. /**
  4. * The request URI for the current request.
  5. *
  6. * @var URI
  7. */
  8. public static $uri;
  9. /**
  10. * The route handling the current request.
  11. *
  12. * @var Routing\Route
  13. */
  14. public static $route;
  15. /**
  16. * The request data key that is used to indicate a spoofed request method.
  17. *
  18. * @var string
  19. */
  20. const spoofer = '__spoofer';
  21. /**
  22. * Get the URI instance for the current request.
  23. *
  24. * @return URI
  25. */
  26. public static function uri()
  27. {
  28. return (is_null(static::$uri)) ? static::$uri = new URI($_SERVER) : static::$uri;
  29. }
  30. /**
  31. * Get the request method.
  32. *
  33. * This will usually be the value of the REQUEST_METHOD $_SERVER variable
  34. * However, when the request method is spoofed using a hidden form value,
  35. * the method will be stored in the $_POST array.
  36. *
  37. * @return string
  38. */
  39. public static function method()
  40. {
  41. return (static::spoofed()) ? $_POST[Request::spoofer] : $_SERVER['REQUEST_METHOD'];
  42. }
  43. /**
  44. * Get an item from the $_SERVER array.
  45. *
  46. * Like most array retrieval methods, a default value may be specified.
  47. *
  48. * @param string $key
  49. * @param mixed $default
  50. * @return string
  51. */
  52. public static function server($key = null, $default = null)
  53. {
  54. return Arr::get($_SERVER, strtoupper($key), $default);
  55. }
  56. /**
  57. * Determine if the request method is being spoofed by a hidden Form element.
  58. *
  59. * @return bool
  60. */
  61. public static function spoofed()
  62. {
  63. return is_array($_POST) and array_key_exists(Request::spoofer, $_POST);
  64. }
  65. /**
  66. * Get the requestor's IP address.
  67. *
  68. * @param mixed $default
  69. * @return string
  70. */
  71. public static function ip($default = '0.0.0.0')
  72. {
  73. if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
  74. {
  75. return $_SERVER['HTTP_X_FORWARDED_FOR'];
  76. }
  77. elseif (isset($_SERVER['HTTP_CLIENT_IP']))
  78. {
  79. return $_SERVER['HTTP_CLIENT_IP'];
  80. }
  81. elseif (isset($_SERVER['REMOTE_ADDR']))
  82. {
  83. return $_SERVER['REMOTE_ADDR'];
  84. }
  85. return ($default instanceof Closure) ? call_user_func($default) : $default;
  86. }
  87. /**
  88. * Get the HTTP protocol for the request.
  89. *
  90. * @return string
  91. */
  92. public static function protocol()
  93. {
  94. return Arr::get($_SERVER, 'SERVER_PROTOCOL', 'HTTP/1.1');
  95. }
  96. /**
  97. * Determine if the current request is using HTTPS.
  98. *
  99. * @return bool
  100. */
  101. public static function secure()
  102. {
  103. return isset($_SERVER['HTTPS']) and strtolower($_SERVER['HTTPS']) !== 'off';
  104. }
  105. /**
  106. * Determine if the current request is an AJAX request.
  107. *
  108. * @return bool
  109. */
  110. public static function ajax()
  111. {
  112. if ( ! isset($_SERVER['HTTP_X_REQUESTED_WITH'])) return false;
  113. return strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest';
  114. }
  115. /**
  116. * Get the route handling the current request.
  117. *
  118. * @return Route
  119. */
  120. public static function route()
  121. {
  122. return static::$route;
  123. }
  124. }