2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Request object for handling alternative HTTP requests
|
|
|
|
*
|
2008-10-15 02:52:19 +00:00
|
|
|
* Alternative HTTP requests can come from wireless units like mobile phones, palmtop computers,
|
|
|
|
* and the like. These units have no use for Ajax requests, and this Component can tell how Cake
|
|
|
|
* should respond to the different needs of a handheld computer and a desktop machine.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
|
* Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* @copyright Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.controller.components
|
|
|
|
* @since CakePHP(tm) v 0.10.4.1076
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('REQUEST_MOBILE_UA')) {
|
|
|
|
define('REQUEST_MOBILE_UA', '(iPhone|MIDP|AvantGo|BlackBerry|J2ME|Opera Mini|DoCoMo|NetFront|Nokia|PalmOS|PalmSource|portalmmm|Plucker|ReqwirelessWeb|SonyEricsson|Symbian|UP\.Browser|Windows CE|Xiino)');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Request object for handling HTTP requests
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.controller.components
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
class RequestHandlerComponent extends Object {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* The layout that will be switched to for Ajax requests
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @access public
|
|
|
|
* @see RequestHandler::setAjax()
|
|
|
|
*/
|
|
|
|
var $ajaxLayout = 'ajax';
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Determines whether or not callbacks will be fired on this component
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $enabled = true;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Holds the content-type of the response that is set when using
|
|
|
|
* RequestHandler::respondAs()
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__responseTypeSet = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Holds the copy of Controller::$params
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $params = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Friendly content-type mappings used to set response types and determine
|
|
|
|
* request types. Can be modified with RequestHandler::setContent()
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
* @see RequestHandlerComponent::setContent
|
|
|
|
*/
|
|
|
|
var $__requestContent = array(
|
|
|
|
'javascript' => 'text/javascript',
|
|
|
|
'js' => 'text/javascript',
|
|
|
|
'json' => 'application/json',
|
|
|
|
'css' => 'text/css',
|
|
|
|
'html' => array('text/html', '*/*'),
|
|
|
|
'text' => 'text/plain',
|
|
|
|
'txt' => 'text/plain',
|
|
|
|
'csv' => array('application/vnd.ms-excel', 'text/plain'),
|
|
|
|
'form' => 'application/x-www-form-urlencoded',
|
|
|
|
'file' => 'multipart/form-data',
|
|
|
|
'xhtml' => array('application/xhtml+xml', 'application/xhtml', 'text/xhtml'),
|
|
|
|
'xhtml-mobile' => 'application/vnd.wap.xhtml+xml',
|
|
|
|
'xml' => array('application/xml', 'text/xml'),
|
|
|
|
'rss' => 'application/rss+xml',
|
|
|
|
'atom' => 'application/atom+xml',
|
|
|
|
'amf' => 'application/x-amf',
|
2008-10-15 02:52:19 +00:00
|
|
|
'wap' => array(
|
|
|
|
'text/vnd.wap.wml',
|
|
|
|
'text/vnd.wap.wmlscript',
|
|
|
|
'image/vnd.wap.wbmp'
|
|
|
|
),
|
2008-05-30 11:40:08 +00:00
|
|
|
'wml' => 'text/vnd.wap.wml',
|
|
|
|
'wmlscript' => 'text/vnd.wap.wmlscript',
|
|
|
|
'wbmp' => 'image/vnd.wap.wbmp',
|
|
|
|
'pdf' => 'application/pdf',
|
|
|
|
'zip' => 'application/x-zip',
|
|
|
|
'tar' => 'application/x-tar'
|
|
|
|
);
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Content-types accepted by the client. If extension parsing is enabled in the
|
|
|
|
* Router, and an extension is detected, the corresponding content-type will be
|
|
|
|
* used as the overriding primary content-type accepted.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
* @see Router::parseExtensions()
|
|
|
|
*/
|
|
|
|
var $__acceptTypes = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* The template to use when rendering the given content type.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__renderType = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Contains the file extension parsed out by the Router
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @access public
|
|
|
|
* @see Router::parseExtensions()
|
|
|
|
*/
|
|
|
|
var $ext = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Flag set when MIME types have been initialized
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
* @access private
|
|
|
|
* @see RequestHandler::__initializeTypes()
|
|
|
|
*/
|
|
|
|
var $__typesInitialized = false;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Constructor. Parses the accepted content types accepted by the client using HTTP_ACCEPT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function __construct() {
|
|
|
|
$this->__acceptTypes = explode(',', env('HTTP_ACCEPT'));
|
|
|
|
|
|
|
|
foreach ($this->__acceptTypes as $i => $type) {
|
|
|
|
if (strpos($type, ';')) {
|
|
|
|
$type = explode(';', $type);
|
|
|
|
$this->__acceptTypes[$i] = $type[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parent::__construct();
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Initializes the component, gets a reference to Controller::$parameters, and
|
|
|
|
* checks to see if a file extension has been parsed by the Router. If yes, the
|
|
|
|
* corresponding content-type is pushed onto the list of accepted content-types
|
|
|
|
* as the first item.
|
|
|
|
*
|
|
|
|
* @param object $controller A reference to the controller
|
2009-12-17 04:02:57 +00:00
|
|
|
* @param array $settings Array of settings to _set().
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
* @see Router::parseExtensions()
|
|
|
|
* @access public
|
|
|
|
*/
|
2009-12-17 04:02:57 +00:00
|
|
|
function initialize(&$controller, $settings = array()) {
|
2008-05-30 11:40:08 +00:00
|
|
|
if (isset($controller->params['url']['ext'])) {
|
|
|
|
$this->ext = $controller->params['url']['ext'];
|
|
|
|
}
|
2009-12-17 04:02:57 +00:00
|
|
|
$this->_set($settings);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* The startup method of the RequestHandler enables several automatic behaviors
|
|
|
|
* related to the detection of certain properties of the HTTP request, including:
|
|
|
|
*
|
|
|
|
* - Disabling layout rendering for Ajax requests (based on the HTTP_X_REQUESTED_WITH header)
|
|
|
|
* - If Router::parseExtensions() is enabled, the layout and template type are
|
|
|
|
* switched based on the parsed extension. For example, if controller/action.xml
|
|
|
|
* is requested, the view path becomes <i>app/views/controller/xml/action.ctp</i>.
|
|
|
|
* - If a helper with the same name as the extension exists, it is added to the controller.
|
|
|
|
* - If the extension is of a type that RequestHandler understands, it will set that
|
|
|
|
* Content-type in the response header.
|
|
|
|
* - If the XML data is POSTed, the data is parsed into an XML object, which is assigned
|
|
|
|
* to the $data property of the controller, which can then be saved to a model object.
|
|
|
|
*
|
|
|
|
* @param object $controller A reference to the controller
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function startup(&$controller) {
|
|
|
|
if (!$this->enabled) {
|
|
|
|
return;
|
|
|
|
}
|
2008-10-15 02:52:19 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->__initializeTypes();
|
|
|
|
$controller->params['isAjax'] = $this->isAjax();
|
2008-10-15 02:52:19 +00:00
|
|
|
$isRecognized = (
|
|
|
|
!in_array($this->ext, array('html', 'htm')) &&
|
|
|
|
in_array($this->ext, array_keys($this->__requestContent))
|
|
|
|
);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2008-10-15 02:52:19 +00:00
|
|
|
if (!empty($this->ext) && $isRecognized) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->renderAs($controller, $this->ext);
|
|
|
|
} elseif ($this->isAjax()) {
|
|
|
|
$this->renderAs($controller, 'ajax');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->requestedWith('xml')) {
|
|
|
|
if (!class_exists('XmlNode')) {
|
|
|
|
App::import('Core', 'Xml');
|
|
|
|
}
|
|
|
|
$xml = new Xml(trim(file_get_contents('php://input')));
|
2008-10-15 02:52:19 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if (is_object($xml->child('data')) && count($xml->children) == 1) {
|
|
|
|
$controller->data = $xml->child('data');
|
|
|
|
} else {
|
|
|
|
$controller->data = $xml;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Handles (fakes) redirects for Ajax requests using requestAction()
|
|
|
|
*
|
|
|
|
* @param object $controller A reference to the controller
|
|
|
|
* @param mixed $url A string or array containing the redirect location
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function beforeRedirect(&$controller, $url) {
|
|
|
|
if (!$this->isAjax()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
foreach ($_POST as $key => $val) {
|
|
|
|
unset($_POST[$key]);
|
|
|
|
}
|
|
|
|
echo $this->requestAction($url, array('return'));
|
2008-06-04 19:04:58 +00:00
|
|
|
$this->_stop();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current HTTP request is Ajax, false otherwise
|
|
|
|
*
|
|
|
|
* @return boolean True if call is Ajax
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isAjax() {
|
|
|
|
return env('HTTP_X_REQUESTED_WITH') === "XMLHttpRequest";
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current HTTP request is coming from a Flash-based client
|
|
|
|
*
|
|
|
|
* @return boolean True if call is from Flash
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isFlash() {
|
2008-12-10 13:55:58 +00:00
|
|
|
return (preg_match('/^(Shockwave|Adobe) Flash/', env('HTTP_USER_AGENT')) == 1);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current request is over HTTPS, false otherwise.
|
|
|
|
*
|
|
|
|
* @return bool True if call is over HTTPS
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isSSL() {
|
|
|
|
return env('HTTPS');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current call accepts an XML response, false otherwise
|
|
|
|
*
|
|
|
|
* @return boolean True if client accepts an XML response
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isXml() {
|
|
|
|
return $this->prefers('xml');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current call accepts an RSS response, false otherwise
|
|
|
|
*
|
|
|
|
* @return boolean True if client accepts an RSS response
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isRss() {
|
|
|
|
return $this->prefers('rss');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current call accepts an Atom response, false otherwise
|
|
|
|
*
|
|
|
|
* @return boolean True if client accepts an RSS response
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isAtom() {
|
|
|
|
return $this->prefers('atom');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if user agent string matches a mobile web browser, or if the
|
|
|
|
* client accepts WAP content.
|
|
|
|
*
|
|
|
|
* @return boolean True if user agent is a mobile web browser
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isMobile() {
|
|
|
|
preg_match('/' . REQUEST_MOBILE_UA . '/i', env('HTTP_USER_AGENT'), $match);
|
|
|
|
if (!empty($match) || $this->accepts('wap')) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the client accepts WAP content
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isWap() {
|
|
|
|
return $this->prefers('wap');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current call a POST request
|
|
|
|
*
|
|
|
|
* @return boolean True if call is a POST
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isPost() {
|
|
|
|
return (strtolower(env('REQUEST_METHOD')) == 'post');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current call a PUT request
|
|
|
|
*
|
|
|
|
* @return boolean True if call is a PUT
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isPut() {
|
|
|
|
return (strtolower(env('REQUEST_METHOD')) == 'put');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current call a GET request
|
|
|
|
*
|
|
|
|
* @return boolean True if call is a GET
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isGet() {
|
|
|
|
return (strtolower(env('REQUEST_METHOD')) == 'get');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current call a DELETE request
|
|
|
|
*
|
|
|
|
* @return boolean True if call is a DELETE
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function isDelete() {
|
|
|
|
return (strtolower(env('REQUEST_METHOD')) == 'delete');
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets Prototype version if call is Ajax, otherwise empty string.
|
|
|
|
* The Prototype library sets a special "Prototype version" HTTP header.
|
|
|
|
*
|
|
|
|
* @return string Prototype version of component making Ajax call
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function getAjaxVersion() {
|
|
|
|
if (env('HTTP_X_PROTOTYPE_VERSION') != null) {
|
|
|
|
return env('HTTP_X_PROTOTYPE_VERSION');
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Adds/sets the Content-type(s) for the given name. This method allows
|
|
|
|
* content-types to be mapped to friendly aliases (or extensions), which allows
|
|
|
|
* RequestHandler to automatically respond to requests of that type in the
|
|
|
|
* startup method.
|
|
|
|
*
|
|
|
|
* @param string $name The name of the Content-type, i.e. "html", "xml", "css"
|
|
|
|
* @param mixed $type The Content-type or array of Content-types assigned to the name,
|
2009-02-27 01:33:38 +00:00
|
|
|
* i.e. "text/html", or "application/xml"
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function setContent($name, $type = null) {
|
|
|
|
if (is_array($name)) {
|
|
|
|
$this->__requestContent = array_merge($this->__requestContent, $name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->__requestContent[$name] = $type;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets the server name from which this request was referred
|
|
|
|
*
|
|
|
|
* @return string Server address
|
|
|
|
* @access public
|
|
|
|
*/
|
2009-12-20 17:36:28 +00:00
|
|
|
function getReferer() {
|
2008-05-30 11:40:08 +00:00
|
|
|
if (env('HTTP_HOST') != null) {
|
2008-10-23 00:10:44 +00:00
|
|
|
$sessHost = env('HTTP_HOST');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (env('HTTP_X_FORWARDED_HOST') != null) {
|
2008-10-23 00:10:44 +00:00
|
|
|
$sessHost = env('HTTP_X_FORWARDED_HOST');
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-10-23 00:10:44 +00:00
|
|
|
return trim(preg_replace('/(?:\:.*)/', '', $sessHost));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-12-20 17:36:28 +00:00
|
|
|
/**
|
|
|
|
* @deprecated use getReferer()
|
|
|
|
*/
|
|
|
|
function getReferrer() {
|
|
|
|
trigger_error('Deprecated method, use RequestHandlerComponent::getReferer instead', E_USER_WARNING);
|
|
|
|
return $this->getReferer();
|
|
|
|
}
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Gets remote client IP
|
|
|
|
*
|
|
|
|
* @return string Client IP address
|
|
|
|
* @access public
|
|
|
|
*/
|
2008-12-25 22:02:36 +00:00
|
|
|
function getClientIP($safe = true) {
|
|
|
|
if (!$safe && env('HTTP_X_FORWARDED_FOR') != null) {
|
2008-09-12 05:11:34 +00:00
|
|
|
$ipaddr = preg_replace('/(?:,.*)/', '', env('HTTP_X_FORWARDED_FOR'));
|
2008-05-30 11:40:08 +00:00
|
|
|
} else {
|
|
|
|
if (env('HTTP_CLIENT_IP') != null) {
|
|
|
|
$ipaddr = env('HTTP_CLIENT_IP');
|
|
|
|
} else {
|
|
|
|
$ipaddr = env('REMOTE_ADDR');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (env('HTTP_CLIENTADDRESS') != null) {
|
|
|
|
$tmpipaddr = env('HTTP_CLIENTADDRESS');
|
|
|
|
|
|
|
|
if (!empty($tmpipaddr)) {
|
2008-09-12 05:11:34 +00:00
|
|
|
$ipaddr = preg_replace('/(?:,.*)/', '', $tmpipaddr);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return trim($ipaddr);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Determines which content types the client accepts. Acceptance is based on
|
|
|
|
* the file extension parsed by the Router (if present), and by the HTTP_ACCEPT
|
|
|
|
* header.
|
|
|
|
*
|
|
|
|
* @param mixed $type Can be null (or no parameter), a string type name, or an
|
2009-02-27 01:33:38 +00:00
|
|
|
* array of types
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return mixed If null or no parameter is passed, returns an array of content
|
2009-02-27 01:33:38 +00:00
|
|
|
* types the client accepts. If a string is passed, returns true
|
|
|
|
* if the client accepts it. If an array is passed, returns true
|
|
|
|
* if the client accepts one or more elements in the array.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
* @see RequestHandlerComponent::setContent()
|
|
|
|
*/
|
|
|
|
function accepts($type = null) {
|
|
|
|
$this->__initializeTypes();
|
|
|
|
|
|
|
|
if ($type == null) {
|
|
|
|
return $this->mapType($this->__acceptTypes);
|
|
|
|
|
|
|
|
} elseif (is_array($type)) {
|
|
|
|
foreach ($type as $t) {
|
|
|
|
if ($this->accepts($t) == true) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} elseif (is_string($type)) {
|
|
|
|
|
2008-09-18 03:40:28 +00:00
|
|
|
if (!isset($this->__requestContent[$type])) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$content = $this->__requestContent[$type];
|
|
|
|
|
|
|
|
if (is_array($content)) {
|
|
|
|
foreach ($content as $c) {
|
|
|
|
if (in_array($c, $this->__acceptTypes)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (in_array($content, $this->__acceptTypes)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Determines the content type of the data the client has sent (i.e. in a POST request)
|
|
|
|
*
|
|
|
|
* @param mixed $type Can be null (or no parameter), a string type name, or an array of types
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return mixed
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function requestedWith($type = null) {
|
|
|
|
if (!$this->isPost() && !$this->isPut()) {
|
|
|
|
return null;
|
|
|
|
}
|
2008-09-12 05:11:34 +00:00
|
|
|
|
2008-08-09 18:32:59 +00:00
|
|
|
list($contentType) = explode(';', env('CONTENT_TYPE'));
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($type == null) {
|
2008-08-09 18:32:59 +00:00
|
|
|
return $this->mapType($contentType);
|
2008-05-30 11:40:08 +00:00
|
|
|
} elseif (is_array($type)) {
|
|
|
|
foreach ($type as $t) {
|
|
|
|
if ($this->requestedWith($t)) {
|
|
|
|
return $this->mapType($t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} elseif (is_string($type)) {
|
2008-08-09 18:32:59 +00:00
|
|
|
return ($type == $this->mapType($contentType));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Determines which content-types the client prefers. If no parameters are given,
|
|
|
|
* the content-type that the client most likely prefers is returned. If $type is
|
|
|
|
* an array, the first item in the array that the client accepts is returned.
|
|
|
|
* Preference is determined primarily by the file extension parsed by the Router
|
|
|
|
* if provided, and secondarily by the list of content-types provided in
|
|
|
|
* HTTP_ACCEPT.
|
|
|
|
*
|
|
|
|
* @param mixed $type An optional array of 'friendly' content-type names, i.e.
|
2009-02-27 01:33:38 +00:00
|
|
|
* 'html', 'xml', 'js', etc.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return mixed If $type is null or not provided, the first content-type in the
|
2009-02-27 01:33:38 +00:00
|
|
|
* list, based on preference, is returned.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
* @see RequestHandlerComponent::setContent()
|
|
|
|
*/
|
|
|
|
function prefers($type = null) {
|
|
|
|
$this->__initializeTypes();
|
2008-09-19 19:48:22 +00:00
|
|
|
$accept = $this->accepts();
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($type == null) {
|
|
|
|
if (empty($this->ext)) {
|
|
|
|
if (is_array($accept)) {
|
|
|
|
return $accept[0];
|
|
|
|
}
|
|
|
|
return $accept;
|
|
|
|
}
|
2008-09-08 20:33:48 +00:00
|
|
|
return $this->ext;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-09-19 19:48:22 +00:00
|
|
|
|
2009-04-14 13:16:25 +00:00
|
|
|
$types = $type;
|
2008-09-19 19:48:22 +00:00
|
|
|
if (is_string($type)) {
|
|
|
|
$types = array($type);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($types) === 1) {
|
|
|
|
if (!empty($this->ext)) {
|
|
|
|
return ($types[0] == $this->ext);
|
|
|
|
}
|
|
|
|
return ($types[0] == $accept[0]);
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
$accepts = array();
|
|
|
|
|
|
|
|
foreach ($types as $type) {
|
2008-09-19 19:48:22 +00:00
|
|
|
if (in_array($type, $accept)) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$accepts[] = $type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-19 19:48:22 +00:00
|
|
|
if (count($accepts) === 0) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return false;
|
2008-09-19 19:48:22 +00:00
|
|
|
} elseif (count($types) === 1) {
|
|
|
|
return ($types[0] === $accepts[0]);
|
|
|
|
} elseif (count($accepts) === 1) {
|
2009-07-26 10:46:07 +00:00
|
|
|
return $accepts[0];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-09-08 20:33:48 +00:00
|
|
|
|
2009-04-14 13:16:25 +00:00
|
|
|
$acceptedTypes = array();
|
|
|
|
foreach ($this->__acceptTypes as $type) {
|
|
|
|
$acceptedTypes[] = $this->mapType($type);
|
|
|
|
}
|
|
|
|
$accepts = array_intersect($acceptedTypes, $accepts);
|
2008-09-08 20:33:48 +00:00
|
|
|
return $accepts[0];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Sets the layout and template paths for the content type defined by $type.
|
|
|
|
*
|
|
|
|
* @param object $controller A reference to a controller object
|
|
|
|
* @param string $type Type of response to send (e.g: 'ajax')
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
* @see RequestHandlerComponent::setContent()
|
|
|
|
* @see RequestHandlerComponent::respondAs()
|
|
|
|
*/
|
|
|
|
function renderAs(&$controller, $type) {
|
|
|
|
$this->__initializeTypes();
|
|
|
|
$options = array('charset' => 'UTF-8');
|
|
|
|
|
|
|
|
if (Configure::read('App.encoding') !== null) {
|
|
|
|
$options = array('charset' => Configure::read('App.encoding'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($type == 'ajax') {
|
|
|
|
$controller->layout = $this->ajaxLayout;
|
|
|
|
return $this->respondAs('html', $options);
|
|
|
|
}
|
|
|
|
$controller->ext = '.ctp';
|
|
|
|
|
|
|
|
if (empty($this->__renderType)) {
|
2009-10-13 03:55:40 +00:00
|
|
|
$controller->viewPath .= DS . $type;
|
2008-05-30 11:40:08 +00:00
|
|
|
} else {
|
2009-10-13 03:55:40 +00:00
|
|
|
$remove = preg_replace("/([\/\\\\]{$this->__renderType})$/", DS . $type, $controller->viewPath);
|
2008-10-15 02:52:19 +00:00
|
|
|
$controller->viewPath = $remove;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
$this->__renderType = $type;
|
|
|
|
$controller->layoutPath = $type;
|
|
|
|
|
2008-09-18 03:40:28 +00:00
|
|
|
if (isset($this->__requestContent[$type])) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->respondAs($type, $options);
|
|
|
|
}
|
|
|
|
|
|
|
|
$helper = ucfirst($type);
|
2008-10-15 02:52:19 +00:00
|
|
|
$isAdded = (
|
|
|
|
in_array($helper, $controller->helpers) ||
|
|
|
|
array_key_exists($helper, $controller->helpers)
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!$isAdded) {
|
2008-05-30 11:40:08 +00:00
|
|
|
if (App::import('Helper', $helper)) {
|
|
|
|
$controller->helpers[] = $helper;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2008-10-15 02:52:19 +00:00
|
|
|
* Sets the response header based on type map index name. If DEBUG is greater than 2, the header
|
|
|
|
* is not set.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2008-10-15 02:52:19 +00:00
|
|
|
* @param mixed $type Friendly type name, i.e. 'html' or 'xml', or a full content-type,
|
2009-02-27 01:33:38 +00:00
|
|
|
* like 'application/x-shockwave'.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param array $options If $type is a friendly type name that is associated with
|
2009-02-27 01:33:38 +00:00
|
|
|
* more than one type of content, $index is used to select which content-type to use.
|
2009-07-24 19:18:37 +00:00
|
|
|
*
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return boolean Returns false if the friendly type name given in $type does
|
2009-02-27 01:33:38 +00:00
|
|
|
* not exist in the type map, or if the Content-type header has
|
|
|
|
* already been set by this method.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
* @see RequestHandlerComponent::setContent()
|
|
|
|
*/
|
|
|
|
function respondAs($type, $options = array()) {
|
|
|
|
$this->__initializeTypes();
|
|
|
|
if ($this->__responseTypeSet != null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!array_key_exists($type, $this->__requestContent) && strpos($type, '/') === false) {
|
|
|
|
return false;
|
|
|
|
}
|
2008-10-15 02:52:19 +00:00
|
|
|
$defaults = array('index' => 0, 'charset' => null, 'attachment' => false);
|
|
|
|
$options = array_merge($defaults, $options);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if (strpos($type, '/') === false && isset($this->__requestContent[$type])) {
|
|
|
|
$cType = null;
|
|
|
|
if (is_array($this->__requestContent[$type]) && isset($this->__requestContent[$type][$options['index']])) {
|
|
|
|
$cType = $this->__requestContent[$type][$options['index']];
|
|
|
|
} elseif (is_array($this->__requestContent[$type]) && isset($this->__requestContent[$type][0])) {
|
|
|
|
$cType = $this->__requestContent[$type][0];
|
|
|
|
} elseif (isset($this->__requestContent[$type])) {
|
|
|
|
$cType = $this->__requestContent[$type];
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2008-10-15 02:52:19 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
if (is_array($cType)) {
|
|
|
|
if ($this->prefers($cType)) {
|
|
|
|
$cType = $this->prefers($cType);
|
|
|
|
} else {
|
|
|
|
$cType = $cType[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$cType = $type;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($cType != null) {
|
|
|
|
$header = 'Content-type: ' . $cType;
|
|
|
|
|
|
|
|
if (!empty($options['charset'])) {
|
|
|
|
$header .= '; charset=' . $options['charset'];
|
|
|
|
}
|
|
|
|
if (!empty($options['attachment'])) {
|
2008-10-15 02:52:19 +00:00
|
|
|
header("Content-Disposition: attachment; filename=\"{$options['attachment']}\"");
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
if (Configure::read() < 2 && !defined('CAKEPHP_SHELL')) {
|
|
|
|
@header($header);
|
|
|
|
}
|
|
|
|
$this->__responseTypeSet = $cType;
|
|
|
|
return true;
|
|
|
|
}
|
2008-09-08 20:33:48 +00:00
|
|
|
return false;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Returns the current response type (Content-type header), or null if none has been set
|
|
|
|
*
|
|
|
|
* @return mixed A string content type alias, or raw content type if no alias map exists,
|
2009-02-27 01:33:38 +00:00
|
|
|
* otherwise null
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function responseType() {
|
|
|
|
if ($this->__responseTypeSet == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return $this->mapType($this->__responseTypeSet);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Maps a content-type back to an alias
|
|
|
|
*
|
|
|
|
* @param mixed $type Content type
|
|
|
|
* @return mixed Alias
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function mapType($ctype) {
|
|
|
|
if (is_array($ctype)) {
|
|
|
|
$out = array();
|
|
|
|
foreach ($ctype as $t) {
|
|
|
|
$out[] = $this->mapType($t);
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
} else {
|
|
|
|
$keys = array_keys($this->__requestContent);
|
|
|
|
$count = count($keys);
|
|
|
|
|
|
|
|
for ($i = 0; $i < $count; $i++) {
|
|
|
|
$name = $keys[$i];
|
|
|
|
$type = $this->__requestContent[$name];
|
|
|
|
|
|
|
|
if (is_array($type) && in_array($ctype, $type)) {
|
|
|
|
return $name;
|
|
|
|
} elseif (!is_array($type) && $type == $ctype) {
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $ctype;
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Initializes MIME types
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __initializeTypes() {
|
|
|
|
if ($this->__typesInitialized) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (isset($this->__requestContent[$this->ext])) {
|
|
|
|
$content = $this->__requestContent[$this->ext];
|
|
|
|
if (is_array($content)) {
|
|
|
|
$content = $content[0];
|
|
|
|
}
|
|
|
|
array_unshift($this->__acceptTypes, $content);
|
|
|
|
}
|
|
|
|
$this->__typesInitialized = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|