class AcceptHeaderMiddleware
Same name in other branches
- 9 core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php \Drupal\accept_header_routing_test\AcceptHeaderMiddleware
- 10 core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php \Drupal\accept_header_routing_test\AcceptHeaderMiddleware
- 11.x core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php \Drupal\accept_header_routing_test\AcceptHeaderMiddleware
Example implementation of "accept header"-based content negotiation.
Hierarchy
- class \Drupal\accept_header_routing_test\AcceptHeaderMiddleware implements \Symfony\Component\HttpKernel\HttpKernelInterface
Expanded class hierarchy of AcceptHeaderMiddleware
File
-
core/
modules/ system/ tests/ modules/ accept_header_routing_test/ src/ AcceptHeaderMiddleware.php, line 11
Namespace
Drupal\accept_header_routing_testView source
class AcceptHeaderMiddleware implements HttpKernelInterface {
/**
* Constructs a new AcceptHeaderMiddleware instance.
*
* @param \Symfony\Component\HttpKernel\HttpKernelInterface $app
* The app.
*/
public function __construct(HttpKernelInterface $app) {
$this->app = $app;
}
/**
* {@inheritdoc}
*/
public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = TRUE) {
$mapping = [
'application/json' => 'json',
'application/hal+json' => 'hal_json',
'application/xml' => 'xml',
'text/html' => 'html',
];
$accept = $request->headers
->get('Accept') ?: [
'text/html',
];
if (isset($mapping[$accept[0]])) {
$request->setRequestFormat($mapping[$accept[0]]);
}
return $this->app
->handle($request, $type, $catch);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
AcceptHeaderMiddleware::handle | public | function | |
AcceptHeaderMiddleware::__construct | public | function | Constructs a new AcceptHeaderMiddleware instance. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.