You are here

RelationshipNormalizer.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/modules/jsonapi/src/Normalizer/RelationshipNormalizer.php

File

core/modules/jsonapi/src/Normalizer/RelationshipNormalizer.php
View source
<?php

namespace Drupal\jsonapi\Normalizer;

use Drupal\jsonapi\JsonApiResource\Relationship;
use Drupal\jsonapi\Normalizer\Value\CacheableNormalization;

/**
 * Normalizes a JSON:API relationship object.
 *
 * @internal
 */
class RelationshipNormalizer extends NormalizerBase {

  /**
   * {@inheritdoc}
   */
  protected $supportedInterfaceOrClass = Relationship::class;

  /**
   * {@inheritdoc}
   */
  public function normalize($object, $format = NULL, array $context = []) {
    assert($object instanceof Relationship);
    return CacheableNormalization::aggregate([
      'data' => $this->serializer
        ->normalize($object
        ->getData(), $format, $context),
      'links' => $this->serializer
        ->normalize($object
        ->getLinks(), $format, $context)
        ->omitIfEmpty(),
      'meta' => CacheableNormalization::permanent($object
        ->getMeta())
        ->omitIfEmpty(),
    ]);
  }

}

Classes

Namesort descending Description
RelationshipNormalizer Normalizes a JSON:API relationship object.