request.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <?php namespace System;
  2. class Request {
  3. /**
  4. * The route handling the current request.
  5. *
  6. * @var Route
  7. */
  8. public static $route;
  9. /**
  10. * The request URI.
  11. *
  12. * @var string
  13. */
  14. public static $uri;
  15. /**
  16. * The request URI segments.
  17. *
  18. * @var array
  19. */
  20. public static $segments;
  21. /**
  22. * Get the request URI.
  23. *
  24. * If the request is to the root of application, a single forward slash will be returned.
  25. *
  26. * @return string
  27. */
  28. public static function uri()
  29. {
  30. if ( ! is_null(static::$uri)) return static::$uri;
  31. $uri = static::raw_uri();
  32. if (strpos($uri, $base = parse_url(Config::get('application.url'), PHP_URL_PATH)) === 0)
  33. {
  34. $uri = substr($uri, strlen($base));
  35. }
  36. if (strpos($uri, $index = '/index.php') === 0)
  37. {
  38. $uri = substr($uri, strlen($index));
  39. }
  40. return static::$uri = (($uri = trim($uri, '/')) == '') ? '/' : $uri;
  41. }
  42. /**
  43. * Get the request URI from the $_SERVER array.
  44. *
  45. * The server PATH_INFO will be used if available. Otherwise, the REQUEST_URI will be used.
  46. * The application URL and index will be removed from the URI.
  47. *
  48. * @return string
  49. */
  50. private static function raw_uri()
  51. {
  52. if (isset($_SERVER['PATH_INFO']))
  53. {
  54. $uri = $_SERVER['PATH_INFO'];
  55. }
  56. elseif (isset($_SERVER['REQUEST_URI']))
  57. {
  58. $uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
  59. }
  60. else
  61. {
  62. throw new \Exception('Unable to determine the request URI.');
  63. }
  64. if ($uri === false)
  65. {
  66. throw new \Exception("Malformed request URI. Request terminated.");
  67. }
  68. return $uri;
  69. }
  70. /**
  71. * Get a segment of the request URI.
  72. *
  73. * @param int $segment
  74. * @return string
  75. */
  76. public static function segment($segment)
  77. {
  78. if (is_null(static::$segments)) static::$segments = explode('/', static::uri());
  79. return (isset(static::$segments[$index = $segment - 1])) ? static::$segments[$index] : null;
  80. }
  81. /**
  82. * Get the request method.
  83. *
  84. * @return string
  85. */
  86. public static function method()
  87. {
  88. return (static::spoofed()) ? $_POST['REQUEST_METHOD'] : $_SERVER['REQUEST_METHOD'];
  89. }
  90. /**
  91. * Determine if the request method is being spoofed by a hidden Form element.
  92. *
  93. * Hidden form elements are used to spoof PUT and DELETE requests since
  94. * they are not supported by HTML forms.
  95. *
  96. * @return bool
  97. */
  98. public static function spoofed()
  99. {
  100. return is_array($_POST) and array_key_exists('REQUEST_METHOD', $_POST);
  101. }
  102. /**
  103. * Get the requestor's IP address.
  104. *
  105. * @return string
  106. */
  107. public static function ip()
  108. {
  109. if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
  110. {
  111. return $_SERVER['HTTP_X_FORWARDED_FOR'];
  112. }
  113. elseif (isset($_SERVER['HTTP_CLIENT_IP']))
  114. {
  115. return $_SERVER['HTTP_CLIENT_IP'];
  116. }
  117. elseif (isset($_SERVER['REMOTE_ADDR']))
  118. {
  119. return $_SERVER['REMOTE_ADDR'];
  120. }
  121. }
  122. /**
  123. * Get the HTTP protocol for the request.
  124. *
  125. * @return string
  126. */
  127. public static function protocol()
  128. {
  129. return (isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
  130. }
  131. /**
  132. * Determine if the request is using HTTPS.
  133. *
  134. * @return bool
  135. */
  136. public static function is_secure()
  137. {
  138. return (static::protocol() == 'https');
  139. }
  140. /**
  141. * Determine if the request is an AJAX request.
  142. *
  143. * @return bool
  144. */
  145. public static function is_ajax()
  146. {
  147. return (isset($_SERVER['HTTP_X_REQUESTED_WITH']) and strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest');
  148. }
  149. /**
  150. * Determine if the route handling the request is a given name.
  151. *
  152. * @param string $name
  153. * @return bool
  154. */
  155. public static function route_is($name)
  156. {
  157. return (is_array(static::$route->callback) and isset(static::$route->callback['name']) and static::$route->callback['name'] === $name);
  158. }
  159. /**
  160. * Magic Method to handle dynamic static methods.
  161. */
  162. public static function __callStatic($method, $parameters)
  163. {
  164. // Dynamically determine if a given route is handling the request.
  165. if (strpos($method, 'route_is_') === 0)
  166. {
  167. return static::route_is(substr($method, 9));
  168. }
  169. }
  170. }