request.php 3.3 KB

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