request.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php namespace System;
  2. class Request {
  3. /**
  4. * The request URI.
  5. *
  6. * @var string
  7. */
  8. public static $uri;
  9. /**
  10. * Get the request URI.
  11. *
  12. * @return string
  13. */
  14. public static function uri()
  15. {
  16. if ( ! is_null(static::$uri))
  17. {
  18. return static::$uri;
  19. }
  20. // -------------------------------------------------------
  21. // Use the PATH_INFO variable if it is available.
  22. // -------------------------------------------------------
  23. if (isset($_SERVER['PATH_INFO']))
  24. {
  25. $uri = $_SERVER['PATH_INFO'];
  26. }
  27. // -------------------------------------------------------
  28. // No PATH_INFO? Let's try REQUEST_URI.
  29. // -------------------------------------------------------
  30. elseif (isset($_SERVER['REQUEST_URI']))
  31. {
  32. $uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
  33. if ($uri === false)
  34. {
  35. throw new \Exception("Malformed request URI. Request terminated.");
  36. }
  37. }
  38. else
  39. {
  40. throw new \Exception('Unable to determine the request URI.');
  41. }
  42. // -------------------------------------------------------
  43. // Remove the application URL.
  44. // -------------------------------------------------------
  45. $base_url = parse_url(Config::get('application.url'), PHP_URL_PATH);
  46. if (strpos($uri, $base_url) === 0)
  47. {
  48. $uri = (string) substr($uri, strlen($base_url));
  49. }
  50. // -------------------------------------------------------
  51. // Remove the application index and any extra slashes.
  52. // -------------------------------------------------------
  53. $uri = trim(str_replace('/index.php', '', $uri), '/');
  54. // -------------------------------------------------------
  55. // If the requests is to the root of the application, we
  56. // always return a single forward slash.
  57. // -------------------------------------------------------
  58. return ($uri == '') ? '/' : Str::lower($uri);
  59. }
  60. /**
  61. * Check the URI against a string or set of strings.
  62. *
  63. * @return bool
  64. */
  65. public static function is()
  66. {
  67. $parameters = func_get_args();
  68. // -------------------------------------------------------
  69. // If any of the parameters match the URI, return true.
  70. // -------------------------------------------------------
  71. if (count($parameters) > 1)
  72. {
  73. return in_array(static::uri(), $parameters);
  74. }
  75. if (count($parameters) === 1)
  76. {
  77. return static::uri() == $parameters[0];
  78. }
  79. return false;
  80. }
  81. /**
  82. * Get the request method.
  83. *
  84. * @return string
  85. */
  86. public static function method()
  87. {
  88. // --------------------------------------------------------------
  89. // The method can be spoofed using a POST variable, allowing HTML
  90. // forms to simulate PUT and DELETE requests.
  91. // --------------------------------------------------------------
  92. return Arr::get($_POST, 'REQUEST_METHOD', $_SERVER['REQUEST_METHOD']);
  93. }
  94. /**
  95. * Get the requestor's IP address.
  96. *
  97. * @return string
  98. */
  99. public static function ip()
  100. {
  101. if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
  102. {
  103. return $_SERVER['HTTP_X_FORWARDED_FOR'];
  104. }
  105. elseif (isset($_SERVER['HTTP_CLIENT_IP']))
  106. {
  107. return $_SERVER['HTTP_CLIENT_IP'];
  108. }
  109. elseif (isset($_SERVER['REMOTE_ADDR']))
  110. {
  111. return $_SERVER['REMOTE_ADDR'];
  112. }
  113. }
  114. /**
  115. * Determine if the request is using HTTPS.
  116. *
  117. * @return bool
  118. */
  119. public static function is_secure()
  120. {
  121. return (static::protocol() == 'https');
  122. }
  123. /**
  124. * Get the HTTP protocol for the request.
  125. *
  126. * @return string
  127. */
  128. public static function protocol()
  129. {
  130. return (isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
  131. }
  132. /**
  133. * Determine if the request is an AJAX request.
  134. *
  135. * @return bool
  136. */
  137. public static function is_ajax()
  138. {
  139. return (isset($_SERVER['HTTP_X_REQUESTED_WITH']) and Str::lower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest');
  140. }
  141. }