request.php 3.5 KB

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