NormalizerBase.php

Same filename in this branch
  1. 8.9.x core/modules/jsonapi/src/Normalizer/NormalizerBase.php
  2. 8.9.x core/modules/hal/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. 10 core/modules/jsonapi/src/Normalizer/NormalizerBase.php
  5. 10 core/modules/serialization/src/Normalizer/NormalizerBase.php
  6. 11.x core/modules/jsonapi/src/Normalizer/NormalizerBase.php
  7. 11.x core/modules/serialization/src/Normalizer/NormalizerBase.php

Namespace

Drupal\serialization\Normalizer

File

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

View source
<?php

namespace Drupal\serialization\Normalizer;

use Drupal\Core\Cache\CacheableDependencyInterface;
use Symfony\Component\Serializer\SerializerAwareInterface;
use Symfony\Component\Serializer\SerializerAwareTrait;

/**
 * Base class for Normalizers.
 */
abstract class NormalizerBase implements SerializerAwareInterface, CacheableNormalizerInterface {
    use SerializerAwareTrait;
    
    /**
     * The interface or class that this Normalizer supports.
     *
     * @var string|array
     */
    protected $supportedInterfaceOrClass;
    
    /**
     * List of formats which supports (de-)normalization.
     *
     * @var string|string[]
     */
    protected $format;
    
    /**
     * {@inheritdoc}
     */
    public function supportsNormalization($data, $format = NULL) {
        // If we aren't dealing with an object or the format is not supported return
        // now.
        if (!is_object($data) || !$this->checkFormat($format)) {
            return FALSE;
        }
        $supported = (array) $this->supportedInterfaceOrClass;
        return (bool) array_filter($supported, function ($name) use ($data) {
            return $data instanceof $name;
        });
    }
    
    /**
     * Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()
     *
     * This class doesn't implement DenormalizerInterface, but most of its child
     * classes do. Therefore, this method is implemented at this level to reduce
     * code duplication.
     */
    public function supportsDenormalization($data, $type, $format = NULL) {
        // If the format is not supported return now.
        if (!$this->checkFormat($format)) {
            return FALSE;
        }
        $supported = (array) $this->supportedInterfaceOrClass;
        $subclass_check = function ($name) use ($type) {
            return (class_exists($name) || interface_exists($name)) && is_subclass_of($type, $name, TRUE);
        };
        return in_array($type, $supported) || array_filter($supported, $subclass_check);
    }
    
    /**
     * Checks if the provided format is supported by this normalizer.
     *
     * @param string $format
     *   The format to check.
     *
     * @return bool
     *   TRUE if the format is supported, FALSE otherwise. If no format is
     *   specified this will return TRUE.
     */
    protected function checkFormat($format = NULL) {
        if (!isset($format) || !isset($this->format)) {
            return TRUE;
        }
        return in_array($format, (array) $this->format, TRUE);
    }
    
    /**
     * Adds cacheability if applicable.
     *
     * @param array $context
     *   Context options for the normalizer.
     * @param $data
     *   The data that might have cacheability information.
     */
    protected function addCacheableDependency(array $context, $data) {
        if ($data instanceof CacheableDependencyInterface && isset($context[static::SERIALIZATION_CONTEXT_CACHEABILITY])) {
            $context[static::SERIALIZATION_CONTEXT_CACHEABILITY]->addCacheableDependency($data);
        }
    }

}

Classes

Title Deprecated Summary
NormalizerBase Base class for Normalizers.

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