request.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php namespace Laravel; use Closure;
  2. class Request {
  3. /**
  4. * The request URI for the current request.
  5. *
  6. * @var string
  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 for the current request.
  23. *
  24. * If the request is to the root of the application, a single forward slash
  25. * will be returned. Otherwise, the URI will be returned with all of the
  26. * leading and trailing slashes removed.
  27. *
  28. * @return string
  29. */
  30. public static function uri()
  31. {
  32. return URI::current();
  33. }
  34. /**
  35. * Get the request method.
  36. *
  37. * This will usually be the value of the REQUEST_METHOD $_SERVER variable
  38. * However, when the request method is spoofed using a hidden form value,
  39. * the method will be stored in the $_POST array.
  40. *
  41. * @return string
  42. */
  43. public static function method()
  44. {
  45. return (static::spoofed()) ? $_POST[Request::spoofer] : $_SERVER['REQUEST_METHOD'];
  46. }
  47. /**
  48. * Get an item from the $_SERVER array.
  49. *
  50. * Like most array retrieval methods, a default value may be specified.
  51. *
  52. * @param string $key
  53. * @param mixed $default
  54. * @return string
  55. */
  56. public static function server($key = null, $default = null)
  57. {
  58. return Arr::get($_SERVER, strtoupper($key), $default);
  59. }
  60. /**
  61. * Determine if the request method is being spoofed by a hidden Form element.
  62. *
  63. * @return bool
  64. */
  65. public static function spoofed()
  66. {
  67. return is_array($_POST) and array_key_exists(Request::spoofer, $_POST);
  68. }
  69. /**
  70. * Get the requestor's IP address.
  71. *
  72. * @param mixed $default
  73. * @return string
  74. */
  75. public static function ip($default = '0.0.0.0')
  76. {
  77. if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
  78. {
  79. return $_SERVER['HTTP_X_FORWARDED_FOR'];
  80. }
  81. elseif (isset($_SERVER['HTTP_CLIENT_IP']))
  82. {
  83. return $_SERVER['HTTP_CLIENT_IP'];
  84. }
  85. elseif (isset($_SERVER['REMOTE_ADDR']))
  86. {
  87. return $_SERVER['REMOTE_ADDR'];
  88. }
  89. return ($default instanceof Closure) ? call_user_func($default) : $default;
  90. }
  91. /**
  92. * Get the HTTP protocol for the request.
  93. *
  94. * @return string
  95. */
  96. public static function protocol()
  97. {
  98. return Arr::get($_SERVER, 'SERVER_PROTOCOL', 'HTTP/1.1');
  99. }
  100. /**
  101. * Determine if the current request is using HTTPS.
  102. *
  103. * @return bool
  104. */
  105. public static function secure()
  106. {
  107. return isset($_SERVER['HTTPS']) and strtolower($_SERVER['HTTPS']) !== 'off';
  108. }
  109. /**
  110. * Determine if the request has been forged.
  111. *
  112. * The session CSRF token will be compared to the CSRF token in the request input.
  113. *
  114. * @return bool
  115. */
  116. public static function forged()
  117. {
  118. return Input::get('csrf_token') !== IoC::core('session')->token();
  119. }
  120. /**
  121. * Determine if the current request is an AJAX request.
  122. *
  123. * @return bool
  124. */
  125. public static function ajax()
  126. {
  127. if ( ! isset($_SERVER['HTTP_X_REQUESTED_WITH'])) return false;
  128. return strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest';
  129. }
  130. /**
  131. * Get the route handling the current request.
  132. *
  133. * @return Route
  134. */
  135. public static function route()
  136. {
  137. return static::$route;
  138. }
  139. }