You are here

class WorkspaceNormalizer in Replication 8

Same name and namespace in other branches
  1. 8.2 src/Normalizer/WorkspaceNormalizer.php \Drupal\replication\Normalizer\WorkspaceNormalizer

@todo {@link https://www.drupal.org/node/2599920 Don't extend EntityNormalizer.}

Hierarchy

Expanded class hierarchy of WorkspaceNormalizer

1 string reference to 'WorkspaceNormalizer'
replication.services.yml in ./replication.services.yml
replication.services.yml
1 service uses WorkspaceNormalizer
replication.normalizer.workspace in ./replication.services.yml
Drupal\replication\Normalizer\WorkspaceNormalizer

File

src/Normalizer/WorkspaceNormalizer.php, line 12

Namespace

Drupal\replication\Normalizer
View source
class WorkspaceNormalizer extends EntityNormalizer {

  /**
   * @var string[]
   */
  protected $supportedInterfaceOrClass = [
    'Drupal\\multiversion\\Entity\\WorkspaceInterface',
  ];

  /**
   * @var string[]
   */
  protected $format = [
    'json',
  ];

  /**
   * {@inheritdoc}
   */
  public function normalize($entity, $format = NULL, array $context = []) {
    $context['entity_type'] = 'workspace';
    $data = parent::normalize($entity, $format, $context);
    $return_data = [];
    if (isset($data['machine_name'])) {
      $return_data['db_name'] = (string) $entity
        ->getMachineName();
    }
    if ($update_seq = $entity
      ->getUpdateSeq()) {
      $return_data['update_seq'] = (int) $update_seq;
    }
    else {

      // Replicator expects update_seq to be always set.
      $return_data['update_seq'] = 0;
    }
    if (isset($data['created'])) {
      $return_data['instance_start_time'] = (string) $entity
        ->getStartTime();
    }
    return $return_data;
  }

  /**
   * {@inheritdoc}
   */
  public function denormalize($data, $class, $format = NULL, array $context = []) {
    if (isset($data['db_name'])) {
      $data['machine_name'] = $data['db_name'];
      unset($data['db_name']);
    }
    if (isset($data['instance_start_time'])) {
      $data['created'] = $data['instance_start_time'];
      unset($data['instance_start_time']);
    }
    $workspace_types = WorkspaceType::loadMultiple();
    $workspace_type = reset($workspace_types);
    if (!$workspace_type instanceof WorkspaceTypeInterface) {
      throw new \Exception('Invalid workspace type.');
    }
    $data['type'] = $workspace_type
      ->id();
    return \Drupal::entityTypeManager()
      ->getStorage('workspace')
      ->create($data);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CacheableNormalizerInterface::SERIALIZATION_CONTEXT_CACHEABILITY constant Name of key for bubbling cacheability metadata via serialization context.
EntityNormalizer::__construct public function Constructs an EntityNormalizer object.
FieldableEntityNormalizerTrait::$entityFieldManager protected property The entity field manager.
FieldableEntityNormalizerTrait::$entityTypeManager protected property The entity type manager. 1
FieldableEntityNormalizerTrait::$entityTypeRepository protected property The entity type repository.
FieldableEntityNormalizerTrait::constructValue protected function Build the field item value using the incoming data. 7
FieldableEntityNormalizerTrait::denormalizeFieldData protected function Denormalizes entity data by denormalizing each field individually.
FieldableEntityNormalizerTrait::determineEntityTypeId protected function Determines the entity type ID to denormalize as.
FieldableEntityNormalizerTrait::extractBundleData protected function Denormalizes the bundle property so entity creation can use it.
FieldableEntityNormalizerTrait::getEntityFieldManager protected function Returns the entity field manager.
FieldableEntityNormalizerTrait::getEntityTypeDefinition protected function Gets the entity type definition.
FieldableEntityNormalizerTrait::getEntityTypeManager protected function Returns the entity type manager.
FieldableEntityNormalizerTrait::getEntityTypeRepository protected function Returns the entity type repository.
NormalizerBase::addCacheableDependency protected function Adds cacheability if applicable.
NormalizerBase::checkFormat protected function Checks if the provided format is supported by this normalizer. 2
NormalizerBase::supportsDenormalization public function Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() 1
NormalizerBase::supportsNormalization public function Checks whether the given class is supported for normalization by this normalizer. 1
WorkspaceNormalizer::$format protected property Overrides NormalizerBase::$format
WorkspaceNormalizer::$supportedInterfaceOrClass protected property Overrides EntityNormalizer::$supportedInterfaceOrClass
WorkspaceNormalizer::denormalize public function Denormalizes data back into an object of the given class. Overrides EntityNormalizer::denormalize
WorkspaceNormalizer::normalize public function Normalizes an object into a set of arrays/scalars. Overrides ComplexDataNormalizer::normalize