AcceptHeaderMiddleware.php

Same filename and directory in other branches
  1. 9 core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php
  2. 8.9.x core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php
  3. 10 core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php

Namespace

Drupal\accept_header_routing_test

File

core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php

View source
<?php

declare (strict_types=1);
namespace Drupal\accept_header_routing_test;

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\HttpKernelInterface;

/**
 * Example implementation of "accept header"-based content negotiation.
 */
class AcceptHeaderMiddleware implements HttpKernelInterface {
  
  /**
   * The app kernel.
   */
  protected HttpKernelInterface $httpKernel;
  
  /**
   * Constructs a new AcceptHeaderMiddleware instance.
   *
   * @param \Symfony\Component\HttpKernel\HttpKernelInterface $http_kernel
   *   The app.
   */
  public function __construct(HttpKernelInterface $http_kernel) {
    $this->httpKernel = $http_kernel;
  }
  
  /**
   * {@inheritdoc}
   */
  public function handle(Request $request, $type = self::MAIN_REQUEST, $catch = TRUE) : Response {
    $mapping = [
      'application/json' => '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->httpKernel
      ->handle($request, $type, $catch);
  }

}

Classes

Title Deprecated Summary
AcceptHeaderMiddleware Example implementation of "accept header"-based content negotiation.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.