request.php 3.3 KB

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