mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
128 lines
3.0 KiB
PHP
128 lines
3.0 KiB
PHP
<?php namespace System;
|
|
|
|
class Request {
|
|
|
|
/**
|
|
* The request URI.
|
|
*
|
|
* @var string
|
|
*/
|
|
public static $uri;
|
|
|
|
/**
|
|
* Get the request URI.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function uri()
|
|
{
|
|
// -------------------------------------------------------
|
|
// If we have already determined the URI, return it.
|
|
// -------------------------------------------------------
|
|
if ( ! is_null(static::$uri))
|
|
{
|
|
return static::$uri;
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
// If the PATH_INFO is available, use it.
|
|
// -------------------------------------------------------
|
|
if (isset($_SERVER['PATH_INFO']))
|
|
{
|
|
$uri = $_SERVER['PATH_INFO'];
|
|
}
|
|
// -------------------------------------------------------
|
|
// No PATH_INFO? Let's try REQUEST_URI.
|
|
// -------------------------------------------------------
|
|
elseif (isset($_SERVER['REQUEST_URI']))
|
|
{
|
|
$uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
|
|
|
|
if ($uri === false)
|
|
{
|
|
throw new \Exception("Malformed request URI. Request terminated.");
|
|
}
|
|
}
|
|
// -------------------------------------------------------
|
|
// Neither PATH_INFO or REQUEST_URI are available.
|
|
// -------------------------------------------------------
|
|
else
|
|
{
|
|
throw new \Exception('Unable to determine the request URI.');
|
|
}
|
|
|
|
$uri = trim($uri, '/');
|
|
|
|
// -------------------------------------------------------
|
|
// If the requests is to the root of the application, we
|
|
// always return a single forward slash.
|
|
// -------------------------------------------------------
|
|
return static::$uri = ($uri == '') ? '/' : Str::lower($uri);
|
|
}
|
|
|
|
/**
|
|
* Get the request method.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function method()
|
|
{
|
|
// --------------------------------------------------------------
|
|
// The method can be spoofed using a POST variable, allowing HTML
|
|
// forms to simulate PUT and DELETE requests.
|
|
// --------------------------------------------------------------
|
|
return (isset($_POST['request_method'])) ? $_POST['request_method'] : $_SERVER['REQUEST_METHOD'];
|
|
}
|
|
|
|
/**
|
|
* Get the requestor's IP address.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function ip()
|
|
{
|
|
if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
|
|
{
|
|
return $_SERVER['HTTP_X_FORWARDED_FOR'];
|
|
}
|
|
elseif (isset($_SERVER['HTTP_CLIENT_IP']))
|
|
{
|
|
return $_SERVER['HTTP_CLIENT_IP'];
|
|
}
|
|
elseif (isset($_SERVER['REMOTE_ADDR']))
|
|
{
|
|
return $_SERVER['REMOTE_ADDR'];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Determine if the request is using HTTPS.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function is_secure()
|
|
{
|
|
return (static::protocol() == 'https');
|
|
}
|
|
|
|
/**
|
|
* Get the HTTP protocol for the request.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function protocol()
|
|
{
|
|
return (isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
|
|
}
|
|
|
|
/**
|
|
* Determine if the request is an AJAX request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function is_ajax()
|
|
{
|
|
return (isset($_SERVER['HTTP_X_REQUESTED_WITH']) and Str::lower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest');
|
|
}
|
|
|
|
} |