request.php 3.5 KB

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