request.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. if (strpos($uri, '/index.php') === 0)
  41. {
  42. $uri = str_replace('/index.php', '', $uri);
  43. }
  44. }
  45. // -------------------------------------------------------
  46. // Neither PATH_INFO or REQUEST_URI are available.
  47. // -------------------------------------------------------
  48. else
  49. {
  50. throw new \Exception('Unable to determine the request URI.');
  51. }
  52. $uri = trim($uri, '/');
  53. // -------------------------------------------------------
  54. // If the requests is to the root of the application, we
  55. // always return a single forward slash.
  56. // -------------------------------------------------------
  57. return static::$uri = ($uri == '') ? '/' : Str::lower($uri);
  58. }
  59. /**
  60. * Get the request method.
  61. *
  62. * @return string
  63. */
  64. public static function method()
  65. {
  66. // --------------------------------------------------------------
  67. // The method can be spoofed using a POST variable, allowing HTML
  68. // forms to simulate PUT and DELETE requests.
  69. // --------------------------------------------------------------
  70. return (isset($_POST['request_method'])) ? $_POST['request_method'] : $_SERVER['REQUEST_METHOD'];
  71. }
  72. /**
  73. * Get the requestor's IP address.
  74. *
  75. * @return string
  76. */
  77. public static function ip()
  78. {
  79. if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
  80. {
  81. return $_SERVER['HTTP_X_FORWARDED_FOR'];
  82. }
  83. elseif (isset($_SERVER['HTTP_CLIENT_IP']))
  84. {
  85. return $_SERVER['HTTP_CLIENT_IP'];
  86. }
  87. elseif (isset($_SERVER['REMOTE_ADDR']))
  88. {
  89. return $_SERVER['REMOTE_ADDR'];
  90. }
  91. }
  92. /**
  93. * Determine if the request is using HTTPS.
  94. *
  95. * @return bool
  96. */
  97. public static function is_secure()
  98. {
  99. return (static::protocol() == 'https');
  100. }
  101. /**
  102. * Get the HTTP protocol for the request.
  103. *
  104. * @return string
  105. */
  106. public static function protocol()
  107. {
  108. return (isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
  109. }
  110. /**
  111. * Determine if the request is an AJAX request.
  112. *
  113. * @return bool
  114. */
  115. public static function is_ajax()
  116. {
  117. return (isset($_SERVER['HTTP_X_REQUESTED_WITH']) and Str::lower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest');
  118. }
  119. }