request.php 4.1 KB

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