request.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. $uri = trim(str_replace('/index.php', '', $uri), '/');
  60. // -------------------------------------------------------
  61. // If the requests is to the root of the application, we
  62. // always return a single forward slash.
  63. // -------------------------------------------------------
  64. return ($uri == '') ? '/' : Str::lower($uri);
  65. }
  66. /**
  67. * Determine if the route handling the request is a given name.
  68. *
  69. * @param string $name
  70. * @return bool
  71. */
  72. public static function is($name)
  73. {
  74. return (is_array(static::$route->callback) and isset(static::$route->callback['name']) and static::$route->callback['name'] === $name);
  75. }
  76. /**
  77. * Get the request method.
  78. *
  79. * @return string
  80. */
  81. public static function method()
  82. {
  83. // --------------------------------------------------------------
  84. // The method can be spoofed using a POST variable, allowing HTML
  85. // forms to simulate PUT and DELETE requests.
  86. // --------------------------------------------------------------
  87. return Arr::get($_POST, 'REQUEST_METHOD', $_SERVER['REQUEST_METHOD']);
  88. }
  89. /**
  90. * Get the requestor's IP address.
  91. *
  92. * @return string
  93. */
  94. public static function ip()
  95. {
  96. if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
  97. {
  98. return $_SERVER['HTTP_X_FORWARDED_FOR'];
  99. }
  100. elseif (isset($_SERVER['HTTP_CLIENT_IP']))
  101. {
  102. return $_SERVER['HTTP_CLIENT_IP'];
  103. }
  104. elseif (isset($_SERVER['REMOTE_ADDR']))
  105. {
  106. return $_SERVER['REMOTE_ADDR'];
  107. }
  108. }
  109. /**
  110. * Determine if the request is using HTTPS.
  111. *
  112. * @return bool
  113. */
  114. public static function secure()
  115. {
  116. return (static::protocol() == 'https');
  117. }
  118. /**
  119. * Get the HTTP protocol for the request.
  120. *
  121. * @return string
  122. */
  123. public static function protocol()
  124. {
  125. return (isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
  126. }
  127. /**
  128. * Determine if the request is an AJAX request.
  129. *
  130. * @return bool
  131. */
  132. public static function ajax()
  133. {
  134. return (isset($_SERVER['HTTP_X_REQUESTED_WITH']) and Str::lower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest');
  135. }
  136. /**
  137. * Magic Method to handle dynamic static methods.
  138. */
  139. public static function __callStatic($method, $parameters)
  140. {
  141. // --------------------------------------------------------------
  142. // Dynamically call the "is" method using the given name.
  143. //
  144. // Example: Request::is_login()
  145. // --------------------------------------------------------------
  146. if (strpos($method, 'is_') === 0)
  147. {
  148. return static::is(substr($method, 3));
  149. }
  150. }
  151. }