request.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. * Get the request method.
  55. *
  56. * @return string
  57. */
  58. public static function method()
  59. {
  60. // --------------------------------------------------------------
  61. // The method can be spoofed using a POST variable, allowing HTML
  62. // forms to simulate PUT and DELETE requests.
  63. // --------------------------------------------------------------
  64. return Arr::get($_POST, 'REQUEST_METHOD', $_SERVER['REQUEST_METHOD']);
  65. }
  66. /**
  67. * Get the requestor's IP address.
  68. *
  69. * @return string
  70. */
  71. public static function ip()
  72. {
  73. if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
  74. {
  75. return $_SERVER['HTTP_X_FORWARDED_FOR'];
  76. }
  77. elseif (isset($_SERVER['HTTP_CLIENT_IP']))
  78. {
  79. return $_SERVER['HTTP_CLIENT_IP'];
  80. }
  81. elseif (isset($_SERVER['REMOTE_ADDR']))
  82. {
  83. return $_SERVER['REMOTE_ADDR'];
  84. }
  85. }
  86. /**
  87. * Determine if the request is using HTTPS.
  88. *
  89. * @return bool
  90. */
  91. public static function is_secure()
  92. {
  93. return (static::protocol() == 'https');
  94. }
  95. /**
  96. * Get the HTTP protocol for the request.
  97. *
  98. * @return string
  99. */
  100. public static function protocol()
  101. {
  102. return (isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
  103. }
  104. /**
  105. * Determine if the request is an AJAX request.
  106. *
  107. * @return bool
  108. */
  109. public static function is_ajax()
  110. {
  111. return (isset($_SERVER['HTTP_X_REQUESTED_WITH']) and Str::lower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest');
  112. }
  113. }