Class RequestHandlerComponent
Request object for handling alternative HTTP requests
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.
Link: http://book.cakephp.org/3.0/en/controllers/components/request-handling.html
Property Summary
- 
        $_componentMap protectedarrayA component lookup table used to lazy load component objects. 
- 
        $_config protectedarrayRuntime config 
- 
        $_configInitialized protectedboolWhether the config property has already been configured with defaults 
- 
        $_defaultConfig protectedarrayDefault config 
- 
        $_registry protectedCake\Controller\ComponentRegistryComponent registry class used to lazy load components. 
- 
        $_renderType protectedstringThe template to use when rendering the given content type. 
- 
        $ajaxLayout public deprecatedstringSet the layout to be used when rendering the AuthComponent's ajaxLogin element. 
- 
        $components publicarrayOther Components this component uses. 
- 
        $enabled publicboolDetermines whether or not callbacks will be fired on this component 
- 
        $ext publicstringContains the file extension parsed out by the Router 
- 
        $request publicCake\Network\RequestRequest object 
- 
        $response publicCake\Network\ResponseHolds the reference to Controller::$response 
Method Summary
- 
          __construct() publicConstructor. Parses the accepted content types accepted by the client using HTTP_ACCEPT 
- 
          __debugInfo() publicReturns an array that can be used to describe the internal state of this object. 
- 
          __get() publicMagic method for lazy loading $components. 
- 
          _configDelete() protectedDelete a single config key 
- 
          _configRead() protectedRead a config variable 
- 
          _configWrite() protectedWrite a config variable 
- 
          _setExtension() protectedSet 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. 
- 
          accepts() publicDetermines 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. 
- 
          addInputType() public deprecatedAdd a new mapped input type. Mapped input types are automatically converted by RequestHandlerComponent during the startup() callback. 
- 
          beforeRedirect() public deprecatedHandles (fakes) redirects for AJAX requests using requestAction() 
- 
          beforeRender() publicChecks 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. 
- 
          config() publicUsage
- 
          configShallow() publicMerge provided config with existing config. Unlike config()which does a recursive merge for nested keys, this method does a simple merge.
- 
          convertXml() publicHelper method to parse xml input data, due to lack of anonymous functions this lives here. 
- 
          implementedEvents() publicEvents supported by this component. 
- 
          initialize() publicChecks 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}. 
- 
          isAtom() publicReturns true if the current call accepts an Atom response, false otherwise 
- 
          isMobile() publicReturns true if user agent string matches a mobile web browser, or if the client accepts WAP content. 
- 
          isRss() publicReturns true if the current call accepts an RSS response, false otherwise 
- 
          isWap() publicReturns true if the client accepts WAP content 
- 
          isXml() publicReturns true if the current call accepts an XML response, false otherwise 
- 
          log() publicConvenience method to write a message to Log. See Log::write() for more information on writing to logs. 
- 
          mapAlias() publicMaps a content type alias back to its mime-type(s) 
- 
          prefers() publicDetermines 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. 
- 
          renderAs() publicSets 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. 
- 
          requestedWith() publicDetermines the content type of the data the client has sent (i.e. in a POST request) 
- 
          respondAs() publicSets 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. 
- 
          responseType() publicReturns the current response type (Content-type header), or null if not alias exists 
- 
          startup() publicThe startup method of the RequestHandler enables several automatic behaviors related to the detection of certain properties of the HTTP request, including: 
- 
          viewClassMap() public deprecatedGetter/setter for viewClassMap 
Method Detail
__construct() ¶ public
__construct(Cake\Controller\ComponentRegistry $registry, array $config = [])Constructor. Parses the accepted content types accepted by the client using HTTP_ACCEPT
Parameters
- 
                Cake\Controller\ComponentRegistry$registry
- ComponentRegistry object. 
- 
                array$config optional
- Array of config. 
__debugInfo() ¶ public
__debugInfo(): arrayReturns an array that can be used to describe the internal state of this object.
Returns
array__get() ¶ public
__get(string $name): mixedMagic method for lazy loading $components.
Parameters
- 
                string$name
- Name of component to get. 
Returns
mixedA Component object or null.
_configDelete() ¶ protected
_configDelete(string $key): voidDelete a single config key
Parameters
- 
                string$key
- Key to delete. 
Returns
voidThrows
Cake\Core\Exception\Exceptionif attempting to clobber existing config
_configRead() ¶ protected
_configRead(string|null $key): mixedRead a config variable
Parameters
- 
                string|null$key
- Key to read. 
Returns
mixed_configWrite() ¶ protected
_configWrite(string|array $key, mixed $value, bool|string $merge = false): voidWrite a config variable
Parameters
- 
                string|array$key
- Key to write to. 
- 
                mixed$value
- Value to write. 
- 
                bool|string$merge optional
- True to merge recursively, 'shallow' for simple merge, false to overwrite, defaults to false. 
Returns
voidThrows
Cake\Core\Exception\Exceptionif attempting to clobber existing config
_setExtension() ¶ protected
_setExtension(Cake\Network\Request $request, Cake\Network\Response $response): voidSet 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.
Parameters
- 
                Cake\Network\Request$request
- The request instance. 
- 
                Cake\Network\Response$response
- The response instance. 
Returns
voidaccepts() ¶ public
accepts(string|array|null $type = null): mixedDetermines 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.
Parameters
- 
                string|array|null$type optional
- Can be null (or no parameter), a string type name, or an array of types 
Returns
mixedIf 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.
addInputType() ¶ public
addInputType(string $type, array $handler): voidAdd a new mapped input type. Mapped input types are automatically converted by RequestHandlerComponent during the startup() callback.
Parameters
- 
                string$type
- The type alias being converted, ie. json 
- 
                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. 
Returns
voidThrows
Cake\Core\Exception\ExceptionbeforeRedirect() ¶ public
beforeRedirect(Cake\Event\Event $event, string|array $url, Cake\Network\Response $response): Cake\Network\Response|nullHandles (fakes) redirects for AJAX requests using requestAction()
Parameters
- 
                Cake\Event\Event$event
- The Controller.beforeRedirect event. 
- 
                string|array$url
- A string or array containing the redirect location 
- 
                Cake\Network\Response$response
- The response object. 
Returns
Cake\Network\Response|nullThe response object if the redirect is caught.
beforeRender() ¶ public
beforeRender(Cake\Event\Event $event): boolChecks 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 Acceptheader. For example, ifcontroller/action.xmlis requested, the view path becomesapp/View/Controller/xml/action.ctp. Also ifcontroller/actionis requested withAccept: application/xmlin the headers the view path will becomeapp/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.
Parameters
- 
                Cake\Event\Event$event
- The Controller.beforeRender event. 
Returns
boolfalse if the render process should be aborted
config() ¶ public
config(string|array|null $key = null, mixed|null $value = null, bool $merge = true): mixedUsage
Reading the whole config:
$this->config();Reading a specific value:
$this->config('key');Reading a nested value:
$this->config('some.nested.key');Setting a specific value:
$this->config('key', $value);Setting a nested value:
$this->config('some.nested.key', $value);Updating multiple config settings at the same time:
$this->config(['one' => 'value', 'another' => 'value']);Parameters
- 
                string|array|null$key optional
- The key to get/set, or a complete array of configs. 
- 
                mixed|null$value optional
- The value to set. 
- 
                bool$merge optional
- Whether to recursively merge or overwrite existing config, defaults to true. 
Returns
mixedConfig value being read, or the object itself on write operations.
Throws
Cake\Core\Exception\ExceptionWhen trying to set a key that is invalid.
configShallow() ¶ public
configShallow(string|array $key, mixed|null $value = null): $thisMerge provided config with existing config. Unlike config() which does
a recursive merge for nested keys, this method does a simple merge.
Setting a specific value:
$this->config('key', $value);Setting a nested value:
$this->config('some.nested.key', $value);Updating multiple config settings at the same time:
$this->config(['one' => 'value', 'another' => 'value']);Parameters
- 
                string|array$key
- The key to set, or a complete array of configs. 
- 
                mixed|null$value optional
- The value to set. 
Returns
$thisThe object itself.
convertXml() ¶ public
convertXml(string $xml): arrayHelper method to parse xml input data, due to lack of anonymous functions this lives here.
Parameters
- 
                string$xml
- XML string. 
Returns
arrayXml array data
implementedEvents() ¶ public
implementedEvents(): arrayEvents supported by this component.
Uses Conventions to map controller events to standard component callback method names. By defining one of the callback methods a component is assumed to be interested in the related event.
Override this method if you need to add non-conventional event listeners. Or if you want components to listen to non-standard events.
Returns
arrayinitialize() ¶ public
initialize(array $config): voidChecks 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}.
Implement this method to avoid having to overwrite the constructor and call parent.
Parameters
- 
                array$config
- The config data. 
Returns
voidSee Also
isAtom() ¶ public
isAtom(): boolReturns true if the current call accepts an Atom response, false otherwise
Returns
boolTrue if client accepts an RSS response
isMobile() ¶ public
isMobile(): boolReturns true if user agent string matches a mobile web browser, or if the client accepts WAP content.
Returns
boolTrue if user agent is a mobile web browser
isRss() ¶ public
isRss(): boolReturns true if the current call accepts an RSS response, false otherwise
Returns
boolTrue if client accepts an RSS response
isXml() ¶ public
isXml(): boolReturns true if the current call accepts an XML response, false otherwise
Returns
boolTrue if client accepts an XML response
log() ¶ public
log(mixed $msg, int|string $level = LogLevel::ERROR, string|array $context = []): boolConvenience method to write a message to Log. See Log::write() for more information on writing to logs.
Parameters
- 
                mixed$msg
- Log message. 
- 
                int|string$level optional
- Error level. 
- 
                string|array$context optional
- Additional log data relevant to this message. 
Returns
boolSuccess of log write.
mapAlias() ¶ public
mapAlias(string|array $alias): string|null|arrayMaps a content type alias back to its mime-type(s)
Parameters
- 
                string|array$alias
- String alias to convert back into a content type. Or an array of aliases to map. 
Returns
string|null|arrayNull 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.
prefers() ¶ public
prefers(string|array|null $type = null): mixedDetermines 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.
Parameters
- 
                string|array|null$type optional
- An optional array of 'friendly' content-type names, i.e. 'html', 'xml', 'js', etc. 
Returns
mixedIf $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.
renderAs() ¶ public
renderAs(Cake\Controller\Controller $controller, string $type, array $options = []): voidSets 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'];Parameters
- 
                Cake\Controller\Controller$controller
- A reference to a controller object 
- 
                string$type
- Type of response to send (e.g: 'ajax') 
- 
                array$options optional
- Array of options to use 
Returns
voidSee Also
requestedWith() ¶ public
requestedWith(string|array|null $type = null): mixedDetermines the content type of the data the client has sent (i.e. in a POST request)
Parameters
- 
                string|array|null$type optional
- Can be null (or no parameter), a string type name, or an array of types 
Returns
mixedIf 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.
respondAs() ¶ public
respondAs(string|array $type, array $options = []): boolSets 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.
Parameters
- 
                string|array$type
- Friendly type name, i.e. 'html' or 'xml', or a full content-type, like 'application/x-shockwave'. 
- 
                array$options optional
- 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. 
Returns
boolReturns 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.
responseType() ¶ public
responseType(): mixedReturns the current response type (Content-type header), or null if not alias exists
Returns
mixedA string content type alias, or raw content type if no alias map exists, otherwise null
startup() ¶ public
startup(Cake\Event\Event $event): voidThe 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.
Parameters
- 
                Cake\Event\Event$event
- The startup event that was fired. 
Returns
voidviewClassMap() ¶ public
viewClassMap(array|string|null $type = null, array|null $viewClass = null): array|stringGetter/setter for viewClassMap
Parameters
- 
                array|string|null$type optional
- The type string or array with format - ['type' => 'viewClass']to map one or more
- 
                array|null$viewClass optional
- The viewClass to be used for the type without - Viewappended
Returns
array|stringReturns viewClass when only string $type is set, else array with viewClassMap
Property Detail
$_configInitialized ¶ protected
Whether the config property has already been configured with defaults
Type
bool$_defaultConfig ¶ protected
Default config
These are merged with user-provided config when the component is used.
- checkHttpCache- Whether to check for HTTP cache.
- viewClassMap- Mapping between type and view classes. If undefined json, xml, and ajax will be mapped. Defining any types will omit the defaults.
- inputTypeMap- A mapping between types and deserializers for request bodies. If undefined json & xml will be mapped. Defining any types will omit the defaults.
- enableBeforeRedirect- Set to false to disable the- beforeRedirectcallback. The- beforeRedirectfunctionality has been deprecated.
Type
array$_registry ¶ protected
Component registry class used to lazy load components.
Type
Cake\Controller\ComponentRegistry$ajaxLayout ¶ public deprecated
Set the layout to be used when rendering the AuthComponent's ajaxLogin element.
Type
string