request.php 3.2 KB

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