batufa/system/classes/request.php

661 lines
15 KiB
PHP

<?php defined('SYSPATH') or die('No direct script access.');
/**
* Request and response wrapper.
*
* @package Kohana
* @author Kohana Team
* @copyright (c) 2008-2009 Kohana Team
* @license http://kohanaphp.com/license.html
*/
class Request_Core {
// HTTP status codes and messages
public static $messages = array(
// Informational 1xx
100 => 'Continue',
101 => 'Switching Protocols',
// Success 2xx
200 => 'OK',
201 => 'Created',
202 => 'Accepted',
203 => 'Non-Authoritative Information',
204 => 'No Content',
205 => 'Reset Content',
206 => 'Partial Content',
// Redirection 3xx
300 => 'Multiple Choices',
301 => 'Moved Permanently',
302 => 'Found', // 1.1
303 => 'See Other',
304 => 'Not Modified',
305 => 'Use Proxy',
// 306 is deprecated but reserved
307 => 'Temporary Redirect',
// Client Error 4xx
400 => 'Bad Request',
401 => 'Unauthorized',
402 => 'Payment Required',
403 => 'Forbidden',
404 => 'Not Found',
405 => 'Method Not Allowed',
406 => 'Not Acceptable',
407 => 'Proxy Authentication Required',
408 => 'Request Timeout',
409 => 'Conflict',
410 => 'Gone',
411 => 'Length Required',
412 => 'Precondition Failed',
413 => 'Request Entity Too Large',
414 => 'Request-URI Too Long',
415 => 'Unsupported Media Type',
416 => 'Requested Range Not Satisfiable',
417 => 'Expectation Failed',
// Server Error 5xx
500 => 'Internal Server Error',
501 => 'Not Implemented',
502 => 'Bad Gateway',
503 => 'Service Unavailable',
504 => 'Gateway Timeout',
505 => 'HTTP Version Not Supported',
509 => 'Bandwidth Limit Exceeded'
);
/**
* @var string method: GET, POST, PUT, DELETE, etc
*/
public static $method = 'GET';
/**
* @var string protocol: http, https, ftp, cli, etc
*/
public static $protocol = 'http';
/**
* @var string referring URL
*/
public static $referrer;
/**
* @var boolean AJAX-generated request
*/
public static $is_ajax = FALSE;
/**
* @var Request primary request
*/
public static $instance;
/**
* Main request singleton instance. If no URI is provided, the URI will
* be automatically detected using PATH_INFO, REQUEST_URI, or PHP_SELF.
*
* @param string URI of the request
* @return Request
*/
public static function instance( & $uri = FALSE)
{
if (Request::$instance === NULL)
{
if (Kohana::$is_cli)
{
// Default protocol for command line is cli://
Request::$protocol = 'cli';
// Get the command line options
$options = cli::options('uri', 'method', 'get', 'post');
if (isset($options['uri']))
{
// Use the specified URI
$uri = $options['uri'];
}
if (isset($options['method']))
{
// Use the specified method
Request::$method = strtoupper($options['method']);
}
if (isset($options['get']))
{
// Overload the global GET data
parse_str($options['get'], $_GET);
}
if (isset($options['post']))
{
// Overload the global POST data
parse_str($options['post'], $_POST);
}
}
else
{
if (isset($_SERVER['REQUEST_METHOD']))
{
// Use the server request method
Request::$method = $_SERVER['REQUEST_METHOD'];
}
if ( ! empty($_SERVER['HTTPS']) AND filter_var($_SERVER['HTTPS'], FILTER_VALIDATE_BOOLEAN))
{
// This request is secure
Request::$protocol = 'https';
}
if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) AND strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest')
{
// This request is an AJAX request
Request::$is_ajax = TRUE;
}
if (isset($_SERVER['HTTP_REFERER']))
{
// There is a referrer for this request
Request::$referrer = $_SERVER['HTTP_REFERER'];
}
if (Request::$method !== 'GET' AND Request::$method !== 'POST')
{
// Methods besides GET and POST do not properly parse the form-encoded
// query string into the $_POST array, so we overload it manually.
parse_str(file_get_contents('php://input'), $_POST);
}
if ($uri === FALSE)
{
if (isset($_SERVER['PATH_INFO']))
{
// PATH_INFO is most realiable way to handle routing, as it
// does not include the document root or index file
$uri = $_SERVER['PATH_INFO'];
}
else
{
// REQUEST_URI and PHP_SELF both provide the full path,
// including the document root and index file
if (isset($_SERVER['REQUEST_URI']))
{
$uri = $_SERVER['REQUEST_URI'];
}
elseif (isset($_SERVER['PHP_SELF']))
{
$uri = $_SERVER['PHP_SELF'];
}
if (isset($_SERVER['SCRIPT_NAME']) AND strpos($uri, $_SERVER['SCRIPT_NAME']) === 0)
{
// Remove the document root and index file from the URI
$uri = substr($uri, strlen($_SERVER['SCRIPT_NAME']));
}
}
}
}
// Create the instance singleton
Request::$instance = new Request($uri);
}
return Request::$instance;
}
/**
* Creates a new request object for the given URI.
*
* @chainable
* @param string URI of the request
* @return Request
*/
public static function factory($uri)
{
return new Request($uri);
}
/**
* Returns the accepted content types. If a specific type is defined,
* the quality of that type will be returned.
*
* @param string content MIME type
* @return float when checking a specific type
* @return array
*/
public static function accept_type($type = NULL)
{
static $accepts;
if ($accepts === NULL)
{
// Parse the HTTP_ACCEPT header
$accepts = Request::_parse_accept($_SERVER['HTTP_ACCEPT'], array('*/*' => 1.0));
}
if (isset($type))
{
// Return the quality setting for this type
return isset($accepts[$type]) ? $accepts[$type] : $accepts['*/*'];
}
return $accepts;
}
/**
* Returns the accepted languages. If a specific language is defined,
* the quality of that language will be returned. If the language is not
* accepted, FALSE will be returned.
*
* @param string language code
* @return float when checking a specific language
* @return array
*/
public static function accept_lang($lang = NULL)
{
static $accepts;
if ($accepts === NULL)
{
// Parse the HTTP_ACCEPT_LANGUAGE header
$accepts = Request::_parse_accept($_SERVER['HTTP_ACCEPT_LANGUAGE']);
}
if (isset($lang))
{
// Return the quality setting for this lang
return isset($accepts[$lang]) ? $accepts[$lang] : FALSE;
}
return $accepts;
}
/**
* Returns the accepted encodings. If a specific encoding is defined,
* the quality of that encoding will be returned. If the encoding is not
* accepted, FALSE will be returned.
*
* @param string encoding type
* @return float when checking a specific encoding
* @return array
*/
public static function accept_encoding($type = NULL)
{
static $accepts;
if ($accepts === NULL)
{
// Parse the HTTP_ACCEPT_LANGUAGE header
$accepts = Request::_parse_accept($_SERVER['HTTP_ACCEPT_ENCODING']);
}
if (isset($type))
{
// Return the quality setting for this type
return isset($accepts[$type]) ? $accepts[$type] : FALSE;
}
return $accepts;
}
/**
* Parses an accept header and returns an array (type => quality) of the
* accepted types, ordered by quality.
*
* @param string header to parse
* @param array default values
* @return array
*/
protected static function _parse_accept( & $header, array $accepts = NULL)
{
if ( ! empty($header))
{
// Get all of the types
$types = explode(',', $header);
foreach ($types as $type)
{
// Split the type into parts
$parts = explode(';', $type);
// Make the type only the MIME
$type = trim(array_shift($parts));
// Default quality is 1.0
$quality = 1.0;
foreach ($parts as $part)
{
// Prevent undefined $value notice below
if (strpos($part, '=') === FALSE)
continue;
// Separate the key and value
list ($key, $value) = explode('=', trim($part));
if ($key === 'q')
{
// There is a quality for this type
$quality = (float) trim($value);
}
}
// Add the accept type and quality
$accepts[$type] = $quality;
}
}
// Make sure that accepts is an array
$accepts = (array) $accepts;
// Order by quality
arsort($accepts);
return $accepts;
}
/**
* @var object route matched for this request
*/
public $route;
/**
* @var decimal HTTP version: 1.0, 1.1, etc
*/
public $version = 1.1;
/**
* @var integer HTTP response code: 200, 404, 500, etc
*/
public $status = 200;
/**
* @var string response body
*/
public $response = '';
/**
* @var array headers to send with the response body
*/
public $headers = array('content-type' => 'text/html; charset=utf-8');
/**
* @var string controller directory
*/
public $directory = '';
/**
* @var string controller to be executed
*/
public $controller;
/**
* @var string action to be executed in the controller
*/
public $action;
/**
* @var string the URI of the request
*/
public $uri;
// Parameters extracted from the route
protected $_params;
/**
* Creates a new request object for the given URI. Global GET and POST data
* can be overloaded by setting "get" and "post" in the parameters.
*
* @param string URI of the request
* @return void
* @throws Kohana_Exception if no route matches the URI
*/
public function __construct($uri)
{
// Remove trailing slashes from the URI
$uri = trim($uri, '/');
// Load routes
$routes = Route::all();
foreach ($routes as $name => $route)
{
if ($params = $route->matches($uri))
{
// Store the URI
$this->uri = $uri;
// Store the matching route
$this->route = $route;
if (isset($params['directory']))
{
// Controllers are in a sub-directory
$this->directory = $params['directory'];
}
// Store the controller and action
$this->controller = $params['controller'];
$this->action = $params['action'];
// These are accessible as public vars and can be overloaded
unset($params['controller'], $params['action'], $params['directory']);
// Params cannot be changed once matched
$this->_params = $params;
return;
}
}
throw new Kohana_Exception('Unable to find a route to handle :uri', array(':uri' => $uri));
}
/**
* Generates a complete URL for the current route.
*
* @param array additional route parameters
* @return string
*/
public function url(array $params = NULL)
{
return Kohana::$base_url.$this->uri($params);
}
/**
* Generates a relative URI for the current route.
*
* @param array additional route parameters
* @return string
*/
public function uri(array $params = NULL)
{
if ( ! isset($params['controller']))
{
// Add the current controller
$params['controller'] = $this->controller;
}
if ( ! isset($params['action']))
{
// Add the current action
$params['action'] = $this->action;
}
return $this->route->uri($params);
}
/**
* Retrieves a value from the route parameters.
*
* @param string key of the value
* @param mixed default value if the key is not set
* @return mixed
*/
public function param($key = NULL, $default = NULL)
{
if ($key === NULL)
{
// Return the full array
return $this->_params;
}
return isset($this->_params[$key]) ? $this->_params[$key] : $default;
}
/**
* Gets an named header.
*
* @param string header name
* @return string header value
* @return FALSE if no header is found
*/
public function get_header($name)
{
// The header name is always stored lowercase
$name = strtolower($name);
return isset($this->headers[$name]) ? $this->headers[$name] : FALSE;
}
/**
* Sets an named header. Use NULL as the header value to remove it from
* the header list.
*
* @param string header name
* @param string header value
* @return $this
*/
public function set_header($name, $value)
{
// The header name is always stored lowercase
$name = strtolower($name);
if ($value === NULL)
{
// Remove the header
unset($this->headers[$name]);
}
else
{
// Add the header to the list
$this->headers[$name] = $value;
}
return $this;
}
/**
* Sets an unnamed header. Raw headers cannot be retrieved with get_header!
*
* @param string header string
* @return $this
*/
public function set_raw_header($value)
{
$this->headers[] = $value;
return $this;
}
/**
* Sends the response status and all set headers.
*
* @return $this
*/
public function send_headers()
{
// Get the status message
$message = Request::$messages[$this->status];
// Send the HTTP status message
header("HTTP/{$this->version} {$this->status} {$message}", TRUE, $this->status);
foreach ($this->headers as $name => $value)
{
if (is_string($name))
{
// Convert the header name to Title-Case, to match RFC spec
$name = str_replace('-', ' ', $name);
$name = str_replace(' ', '-', ucwords($name));
// Combine the name and value to make a raw header
$value = "{$name}: {$value}";
}
// Send the raw header
header($value, TRUE);
}
return $this;
}
/**
* Processes the request, executing the controller. Before the routed action
* is run, the before() method will be called, which allows the controller
* to overload the action based on the request parameters. After the action
* is run, the after() method will be called, for post-processing.
*
* By default, the output from the controller is captured and returned, and
* no headers are sent.
*
* @return $this
*/
public function execute()
{
// Create the class prefix
$prefix = 'controller_';
if ( ! empty($this->directory))
{
// Add the directory name to the class prefix
$prefix .= str_replace(array('\\', '/'), '_', trim($this->directory, '/')).'_';
}
// Start benchmarking
$benchmark = Profiler::start('Requests', $this->uri);
try
{
// Load the controller using reflection
$class = new ReflectionClass($prefix.$this->controller);
// Create a new instance of the controller
$controller = $class->newInstance($this);
// Execute the "before action" method
$class->getMethod('before')->invoke($controller);
// Execute the main action with the parameters
$class->getMethod('action_'.$this->action)->invokeArgs($controller, $this->_params);
// Execute the "after action" method
$class->getMethod('after')->invoke($controller);
}
catch (Exception $e)
{
// Delete the benchmark, it is invalid
Profiler::delete($benchmark);
if ($e instanceof ReflectionException)
{
// Reflection will throw exceptions for missing classes or actions
$this->status = 404;
}
else
{
// All other exceptions are PHP/server errors
$this->status = 500;
}
// Re-throw the exception
throw $e;
}
// Stop the benchmark
Profiler::stop($benchmark);
return $this;
}
} // End Request