NormalizerBase.php

Same filename in this branch
  1. 11.x core/modules/serialization/src/Normalizer/NormalizerBase.php
Same filename and directory in other branches
  1. 9 core/modules/jsonapi/src/Normalizer/NormalizerBase.php
  2. 9 core/modules/serialization/src/Normalizer/NormalizerBase.php
  3. 9 core/modules/hal/src/Normalizer/NormalizerBase.php
  4. 8.9.x core/modules/jsonapi/src/Normalizer/NormalizerBase.php
  5. 8.9.x core/modules/serialization/src/Normalizer/NormalizerBase.php
  6. 8.9.x core/modules/hal/src/Normalizer/NormalizerBase.php
  7. 10 core/modules/jsonapi/src/Normalizer/NormalizerBase.php
  8. 10 core/modules/serialization/src/Normalizer/NormalizerBase.php

Namespace

Drupal\jsonapi\Normalizer

File

core/modules/jsonapi/src/Normalizer/NormalizerBase.php

View source
<?php

namespace Drupal\jsonapi\Normalizer;

use Drupal\jsonapi\Normalizer\Value\CacheableNormalization;
use Drupal\serialization\Normalizer\NormalizerBase as SerializationNormalizerBase;

/**
 * Base normalizer used in all JSON:API normalizers.
 *
 * @internal JSON:API maintains no PHP API since its API is the HTTP API. This
 *   class may change at any time and this will break any dependencies on it.
 *
 * @see https://www.drupal.org/project/drupal/issues/3032787
 * @see jsonapi.api.php
 */
abstract class NormalizerBase extends SerializationNormalizerBase {
  
  /**
   * {@inheritdoc}
   */
  protected $format = 'api_json';
  
  /**
   * Rasterizes a value recursively.
   *
   * This is mainly for configuration entities where a field can be a tree of
   * values to rasterize.
   *
   * @param mixed $value
   *   Either a scalar, an array or a rasterizable object.
   *
   * @return mixed
   *   The rasterized value.
   */
  protected static function rasterizeValueRecursive($value) {
    if (!$value || is_scalar($value)) {
      return $value;
    }
    if (is_array($value)) {
      $output = [];
      foreach ($value as $key => $item) {
        $output[$key] = static::rasterizeValueRecursive($item);
      }
      return $output;
    }
    if ($value instanceof CacheableNormalization) {
      return $value->getNormalization();
    }
    // If the object can be turned into a string it's better than nothing.
    if (method_exists($value, '__toString')) {
      return $value->__toString();
    }
    // We give up, since we do not know how to rasterize this.
    return NULL;
  }
  
  /**
   * {@inheritdoc}
   */
  protected function checkFormat($format = NULL) {
    // The parent implementation allows format-specific normalizers to be used
    // for normalization without a format. The JSON:API module wants to be
    // cautious. Hence it only allows its normalizers to be used for the
    // JSON:API format, to avoid JSON:API-specific normalizations showing up in
    // the REST API.
    return $format === $this->format;
  }

}

Classes

Title Deprecated Summary
NormalizerBase Base normalizer used in all JSON:API normalizers.

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