request.php 3.7 KB

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