request.php 3.3 KB

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