request.php 3.0 KB

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