You are here

AcceptHeaderMiddleware.php in Drupal 8

File

core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php
View source
<?php

namespace Drupal\accept_header_routing_test;

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

/**
 * Example implementation of "accept header"-based content negotiation.
 */
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);
  }

}

Classes

Namesort descending Description
AcceptHeaderMiddleware Example implementation of "accept header"-based content negotiation.