true, 'viewClassMap' => [], 'inputTypeMap' => [] ]; /** * Constructor. Parses the accepted content types accepted by the client using HTTP_ACCEPT * * @param \Cake\Controller\ComponentRegistry $registry ComponentRegistry object. * @param array $config Array of config. */ public function __construct(ComponentRegistry $registry, array $config = []) { $config += [ 'viewClassMap' => [ 'json' => 'Json', 'xml' => 'Xml', 'ajax' => 'Ajax' ], 'inputTypeMap' => [ 'json' => ['json_decode', true], 'xml' => [[$this, 'convertXml']], ] ]; parent::__construct($registry, $config); } /** * Events supported by this component. * * @return array */ public function implementedEvents() { return [ 'Controller.startup' => 'startup', 'Controller.beforeRender' => 'beforeRender', 'Controller.beforeRedirect' => 'beforeRedirect', ]; } /** * Checks to see if a specific content type has been requested and sets RequestHandler::$ext * accordingly. Checks the following in order: 1. The '_ext' value parsed by the Router. 2. A specific * AJAX type request indicated by the presence of a header. 3. The Accept header. With the exception * of an AJAX request indicated using the second header based method above, the type must have * been configured in {@link Cake\Routing\Router}. * * @param array $config The config data. * @return void * @see \Cake\Routing\Router::extensions() */ public function initialize(array $config) { $controller = $this->_registry->getController(); $this->response =& $controller->response; } /** * Set the extension based on the accept headers. * Compares the accepted types and configured extensions. * If there is one common type, that is assigned as the ext/content type for the response. * The type with the highest weight will be set. If the highest weight has more * than one type matching the extensions, the order in which extensions are specified * determines which type will be set. * * If html is one of the preferred types, no content type will be set, this * is to avoid issues with browsers that prefer HTML and several other content types. * * @param \Cake\Network\Request $request The request instance. * @param \Cake\Network\Response $response The response instance. * @return void */ protected function _setExtension($request, $response) { $accept = $request->parseAccept(); if (empty($accept) || current($accept)[0] === 'text/html') { return; } $accepts = $response->mapType($accept); $preferredTypes = current($accepts); if (array_intersect($preferredTypes, ['html', 'xhtml'])) { return; } $extensions = array_unique( array_merge(Router::extensions(), array_keys($this->config('viewClassMap'))) ); foreach ($accepts as $types) { $ext = array_intersect($extensions, $types); if (!empty($ext)) { $this->ext = current($ext); break; } } } /** * The startup method of the RequestHandler enables several automatic behaviors * related to the detection of certain properties of the HTTP request, including: * * 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 \Cake\Event\Event $event The startup event that was fired. * @return void */ public function startup(Event $event) { $controller = $event->subject(); $request = $controller->request; if (isset($request->params['_ext'])) { $this->ext = $request->params['_ext']; } if (empty($this->ext) || in_array($this->ext, ['html', 'htm'])) { $this->_setExtension($request, $this->response); } $request->params['isAjax'] = $request->is('ajax'); if (empty($this->ext) && $request->params['isAjax']) { $this->ext = 'ajax'; } if ($request->is(['get', 'head', 'options'])) { return; } foreach ($this->config('inputTypeMap') as $type => $handler) { if (!is_callable($handler[0])) { throw new RuntimeException(sprintf("Invalid callable for '%s' type.", $type)); } if ($this->requestedWith($type)) { $input = call_user_func_array([$request, 'input'], $handler); $request->data = (array)$input; } } } /** * Helper method to parse xml input data, due to lack of anonymous functions * this lives here. * * @param string $xml XML string. * @return array Xml array data */ public function convertXml($xml) { try { $xml = Xml::build($xml, ['readFile' => false]); if (isset($xml->data)) { return Xml::toArray($xml->data); } return Xml::toArray($xml); } catch (XmlException $e) { return []; } } /** * Handles (fakes) redirects for AJAX requests using requestAction() * * @param \Cake\Event\Event $event The Controller.beforeRedirect event. * @param string|array $url A string or array containing the redirect location * @param \Cake\Network\Response $response The response object. * @return \Cake\Network\Response|null The response object if the redirect is caught. */ public function beforeRedirect(Event $event, $url, Response $response) { $request = $this->request; if (!$request->is('ajax')) { return null; } if (empty($url)) { return null; } if (is_array($url)) { $url = Router::url($url + ['_base' => false]); } $query = []; if (strpos($url, '?') !== false) { list($url, $querystr) = explode('?', $url, 2); parse_str($querystr, $query); } $controller = $event->subject(); $response->body($controller->requestAction($url, [ 'return', 'bare' => false, 'environment' => [ 'REQUEST_METHOD' => 'GET' ], 'query' => $query, 'cookies' => $request->cookies ])); $response->statusCode(200); return $response; } /** * Checks if the response can be considered different according to the request * headers, and the caching response headers. If it was not modified, then the * render process is skipped. And the client will get a blank response with a * "304 Not Modified" header. * * - If Router::extensions() is enabled, the layout and template type are * switched based on the parsed extension or `Accept` header. For example, * if `controller/action.xml` is requested, the view path becomes * `app/View/Controller/xml/action.ctp`. Also if `controller/action` is * requested with `Accept: application/xml` in the headers the view * path will become `app/View/Controller/xml/action.ctp`. Layout and template * types will only switch to mime-types recognized by Cake\Network\Response. * If you need to declare additional mime-types, you can do so using * Cake\Network\Response::type() in your controller's beforeFilter() method. * - 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. * * @param \Cake\Event\Event $event The Controller.beforeRender event. * @return bool false if the render process should be aborted */ public function beforeRender(Event $event) { $isRecognized = ( !in_array($this->ext, ['html', 'htm']) && $this->response->getMimeType($this->ext) ); if (!empty($this->ext) && $isRecognized) { $this->renderAs($event->subject(), $this->ext); } else { $this->response->charset(Configure::read('App.encoding')); } if ($this->_config['checkHttpCache'] && $this->response->checkNotModified($this->request) ) { return false; } } /** * Returns true if the current call accepts an XML response, false otherwise * * @return bool True if client accepts an XML response */ public function isXml() { return $this->prefers('xml'); } /** * Returns true if the current call accepts an RSS response, false otherwise * * @return bool True if client accepts an RSS response */ public function isRss() { return $this->prefers('rss'); } /** * Returns true if the current call accepts an Atom response, false otherwise * * @return bool True if client accepts an RSS response */ public function isAtom() { return $this->prefers('atom'); } /** * Returns true if user agent string matches a mobile web browser, or if the * client accepts WAP content. * * @return bool True if user agent is a mobile web browser */ public function isMobile() { $request = $this->request; return $request->is('mobile') || $this->accepts('wap'); } /** * Returns true if the client accepts WAP content * * @return bool */ public function isWap() { return $this->prefers('wap'); } /** * 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. Unlike Cake\Network\Request::accepts() this method deals entirely with mapped content types. * * Usage: * * ``` * $this->RequestHandler->accepts(['xml', 'html', 'json']); * ``` * * Returns true if the client accepts any of the supplied types. * * ``` * $this->RequestHandler->accepts('xml'); * ``` * * Returns true if the client accepts xml. * * @param string|array|null $type Can be null (or no parameter), a string type name, or an * array of types * @return mixed If null or no parameter is passed, returns an array of content * 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. */ public function accepts($type = null) { $request = $this->request; $response = $this->response; $accepted = $request->accepts(); if (!$type) { return $response->mapType($accepted); } if (is_array($type)) { foreach ($type as $t) { $t = $this->mapAlias($t); if (in_array($t, $accepted)) { return true; } } return false; } if (is_string($type)) { return in_array($this->mapAlias($type), $accepted); } return false; } /** * Determines the content type of the data the client has sent (i.e. in a POST request) * * @param string|array|null $type Can be null (or no parameter), a string type name, or an array of types * @return mixed If a single type is supplied a boolean will be returned. If no type is provided * The mapped value of CONTENT_TYPE will be returned. If an array is supplied the first type * in the request content type will be returned. */ public function requestedWith($type = null) { $request = $this->request; if (!$request->is('post') && !$request->is('put') && !$request->is('patch') && !$request->is('delete') ) { return null; } if (is_array($type)) { foreach ($type as $t) { if ($this->requestedWith($t)) { return $t; } } return false; } list($contentType) = explode(';', $request->env('CONTENT_TYPE')); if ($contentType === '') { list($contentType) = explode(';', $request->header('CONTENT_TYPE')); } $response = $this->response; if ($type === null) { return $response->mapType($contentType); } if (is_string($type)) { return ($type === $response->mapType($contentType)); } } /** * Determines which content-types the client prefers. If no parameters are given, * the single 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 string|array|null $type An optional array of 'friendly' content-type names, i.e. * 'html', 'xml', 'js', etc. * @return mixed If $type is null or not provided, the first content-type in the * list, based on preference, is returned. If a single type is provided * a boolean will be returned if that type is preferred. * If an array of types are provided then the first preferred type is returned. * If no type is provided the first preferred type is returned. */ public function prefers($type = null) { $request = $this->request; $response = $this->response; $acceptRaw = $request->parseAccept(); if (empty($acceptRaw)) { return $this->ext; } $accepts = $response->mapType(array_shift($acceptRaw)); if (!$type) { if (empty($this->ext) && !empty($accepts)) { return $accepts[0]; } return $this->ext; } $types = (array)$type; if (count($types) === 1) { if (!empty($this->ext)) { return in_array($this->ext, $types); } return in_array($types[0], $accepts); } $intersect = array_values(array_intersect($accepts, $types)); if (empty($intersect)) { return false; } return $intersect[0]; } /** * Sets either the view class if one exists or the layout and template path of the view. * The names of these are derived from the $type input parameter. * * ### Usage: * * Render the response as an 'ajax' response. * * ``` * $this->RequestHandler->renderAs($this, 'ajax'); * ``` * * Render the response as an xml file and force the result as a file download. * * ``` * $this->RequestHandler->renderAs($this, 'xml', ['attachment' => 'myfile.xml']; * ``` * * @param \Cake\Controller\Controller $controller A reference to a controller object * @param string $type Type of response to send (e.g: 'ajax') * @param array $options Array of options to use * @return void * @see \Cake\Controller\Component\RequestHandlerComponent::respondAs() */ public function renderAs(Controller $controller, $type, array $options = []) { $defaults = ['charset' => 'UTF-8']; $viewClassMap = $this->config('viewClassMap'); if (Configure::read('App.encoding') !== null) { $defaults['charset'] = Configure::read('App.encoding'); } $options += $defaults; $builder = $controller->viewBuilder(); if (array_key_exists($type, $viewClassMap)) { $view = $viewClassMap[$type]; } else { $view = Inflector::classify($type); } $viewClass = null; if ($builder->className() === null) { $viewClass = App::className($view, 'View', 'View'); } if ($viewClass) { $controller->viewClass = $viewClass; $builder->className($viewClass); } else { if (empty($this->_renderType)) { $builder->templatePath($builder->templatePath() . DIRECTORY_SEPARATOR . $type); } else { $builder->templatePath(preg_replace( "/([\/\\\\]{$this->_renderType})$/", DIRECTORY_SEPARATOR . $type, $builder->templatePath() )); } $this->_renderType = $type; $builder->layoutPath($type); } $response = $this->response; if ($response->getMimeType($type)) { $this->respondAs($type, $options); } $helper = ucfirst($type); if (!in_array($helper, $controller->helpers) && empty($controller->helpers[$helper])) { $helperClass = App::className($helper, 'View/Helper', 'Helper'); if ($helperClass !== false) { $controller->helpers[] = $helper; } } } /** * Sets the response header based on type map index name. This wraps several methods * available on Cake\Network\Response. It also allows you to use Content-Type aliases. * * @param string|array $type Friendly type name, i.e. 'html' or 'xml', or a full content-type, * like 'application/x-shockwave'. * @param array $options If $type is a friendly type name that is associated with * more than one type of content, $index is used to select which content-type to use. * @return bool Returns false if the friendly type name given in $type does * not exist in the type map, or if the Content-type header has * already been set by this method. */ public function respondAs($type, array $options = []) { $defaults = ['index' => null, 'charset' => null, 'attachment' => false]; $options += $defaults; $cType = $type; $response = $this->response; if (strpos($type, '/') === false) { $cType = $response->getMimeType($type); } if (is_array($cType)) { if (isset($cType[$options['index']])) { $cType = $cType[$options['index']]; } if ($this->prefers($cType)) { $cType = $this->prefers($cType); } else { $cType = $cType[0]; } } if (!$type) { return false; } if (empty($this->request->params['requested'])) { $response->type($cType); } if (!empty($options['charset'])) { $response->charset($options['charset']); } if (!empty($options['attachment'])) { $response->download($options['attachment']); } return true; } /** * Returns the current response type (Content-type header), or null if not alias exists * * @return mixed A string content type alias, or raw content type if no alias map exists, * otherwise null */ public function responseType() { $response = $this->response; return $response->mapType($response->type()); } /** * Maps a content type alias back to its mime-type(s) * * @param string|array $alias String alias to convert back into a content type. Or an array of aliases to map. * @return string|null|array Null on an undefined alias. String value of the mapped alias type. If an * alias maps to more than one content type, the first one will be returned. If an array is provided * for $alias, an array of mapped types will be returned. */ public function mapAlias($alias) { if (is_array($alias)) { return array_map([$this, 'mapAlias'], $alias); } $response = $this->response; $type = $response->getMimeType($alias); if ($type) { if (is_array($type)) { return $type[0]; } return $type; } return null; } /** * Add a new mapped input type. Mapped input types are automatically * converted by RequestHandlerComponent during the startup() callback. * * @param string $type The type alias being converted, ie. json * @param array $handler The handler array for the type. The first index should * be the handling callback, all other arguments should be additional parameters * for the handler. * @return void * @throws \Cake\Core\Exception\Exception * @deprecated 3.1.0 Use config('addInputType', ...) instead. */ public function addInputType($type, $handler) { trigger_error( 'RequestHandlerComponent::addInputType() is deprecated. Use config("inputTypeMap", ...) instead.', E_USER_DEPRECATED ); if (!is_array($handler) || !isset($handler[0]) || !is_callable($handler[0])) { throw new Exception('You must give a handler callback.'); } $this->config('inputTypeMap.' . $type, $handler); } /** * Getter/setter for viewClassMap * * @param array|string|null $type The type string or array with format `['type' => 'viewClass']` to map one or more * @param array|null $viewClass The viewClass to be used for the type without `View` appended * @return array|string Returns viewClass when only string $type is set, else array with viewClassMap * @deprecated 3.1.0 Use config('viewClassMap', ...) instead. */ public function viewClassMap($type = null, $viewClass = null) { trigger_error( 'RequestHandlerComponent::viewClassMap() is deprecated. Use config("viewClassMap", ...) instead.', E_USER_DEPRECATED ); if (!$viewClass && is_string($type)) { return $this->config('viewClassMap.' . $type); } if (is_string($type)) { $this->config('viewClassMap.' . $type, $viewClass); } elseif (is_array($type)) { $this->config('viewClassMap', $type, true); } return $this->config('viewClassMap'); } }