request.php 3.3 KB

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