request.php 3.1 KB

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