request.php 3.1 KB

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