You are here

protected function DefaultExceptionSubscriber::isJsonApiExceptionEvent in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/src/EventSubscriber/DefaultExceptionSubscriber.php \Drupal\jsonapi\EventSubscriber\DefaultExceptionSubscriber::isJsonApiExceptionEvent()

Check if the error should be formatted using JSON:API.

The JSON:API format is supported if the format is explicitly set or the request is for a known JSON:API route.

Parameters

\Symfony\Component\HttpKernel\Event\ExceptionEvent $exception_event: The exception event.

Return value

bool TRUE if it needs to be formatted using JSON:API. FALSE otherwise.

1 call to DefaultExceptionSubscriber::isJsonApiExceptionEvent()
DefaultExceptionSubscriber::onException in core/modules/jsonapi/src/EventSubscriber/DefaultExceptionSubscriber.php
Handles errors for this subscriber.

File

core/modules/jsonapi/src/EventSubscriber/DefaultExceptionSubscriber.php, line 85

Class

DefaultExceptionSubscriber
Serializes exceptions in compliance with the JSON:API specification.

Namespace

Drupal\jsonapi\EventSubscriber

Code

protected function isJsonApiExceptionEvent(ExceptionEvent $exception_event) {
  $request = $exception_event
    ->getRequest();
  $parameters = $request->attributes
    ->all();
  return $request
    ->getRequestFormat() === 'api_json' || (bool) Routes::getResourceTypeNameFromParameters($parameters);
}