class WorkspaceNormalizer in Replication 8
Same name and namespace in other branches
- 8.2 src/Normalizer/WorkspaceNormalizer.php \Drupal\replication\Normalizer\WorkspaceNormalizer
@todo {@link https://www.drupal.org/node/2599920 Don't extend EntityNormalizer.}
Hierarchy
- class \Drupal\serialization\Normalizer\NormalizerBase implements \Symfony\Component\Serializer\SerializerAwareInterface, CacheableNormalizerInterface uses \Symfony\Component\Serializer\SerializerAwareTrait
- class \Drupal\serialization\Normalizer\ComplexDataNormalizer
- class \Drupal\serialization\Normalizer\EntityNormalizer implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface uses FieldableEntityNormalizerTrait
- class \Drupal\replication\Normalizer\WorkspaceNormalizer
- class \Drupal\serialization\Normalizer\EntityNormalizer implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface uses FieldableEntityNormalizerTrait
- class \Drupal\serialization\Normalizer\ComplexDataNormalizer
Expanded class hierarchy of WorkspaceNormalizer
1 string reference to 'WorkspaceNormalizer'
1 service uses WorkspaceNormalizer
File
- src/
Normalizer/ WorkspaceNormalizer.php, line 12
Namespace
Drupal\replication\NormalizerView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheableNormalizerInterface:: |
constant | Name of key for bubbling cacheability metadata via serialization context. | ||
EntityNormalizer:: |
public | function | Constructs an EntityNormalizer object. | |
FieldableEntityNormalizerTrait:: |
protected | property | The entity field manager. | |
FieldableEntityNormalizerTrait:: |
protected | property | The entity type manager. | 1 |
FieldableEntityNormalizerTrait:: |
protected | property | The entity type repository. | |
FieldableEntityNormalizerTrait:: |
protected | function | Build the field item value using the incoming data. | 7 |
FieldableEntityNormalizerTrait:: |
protected | function | Denormalizes entity data by denormalizing each field individually. | |
FieldableEntityNormalizerTrait:: |
protected | function | Determines the entity type ID to denormalize as. | |
FieldableEntityNormalizerTrait:: |
protected | function | Denormalizes the bundle property so entity creation can use it. | |
FieldableEntityNormalizerTrait:: |
protected | function | Returns the entity field manager. | |
FieldableEntityNormalizerTrait:: |
protected | function | Gets the entity type definition. | |
FieldableEntityNormalizerTrait:: |
protected | function | Returns the entity type manager. | |
FieldableEntityNormalizerTrait:: |
protected | function | Returns the entity type repository. | |
NormalizerBase:: |
protected | function | Adds cacheability if applicable. | |
NormalizerBase:: |
protected | function | Checks if the provided format is supported by this normalizer. | 2 |
NormalizerBase:: |
public | function | Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() | 1 |
NormalizerBase:: |
public | function | Checks whether the given class is supported for normalization by this normalizer. | 1 |
WorkspaceNormalizer:: |
protected | property |
Overrides NormalizerBase:: |
|
WorkspaceNormalizer:: |
protected | property |
Overrides EntityNormalizer:: |
|
WorkspaceNormalizer:: |
public | function |
Denormalizes data back into an object of the given class. Overrides EntityNormalizer:: |
|
WorkspaceNormalizer:: |
public | function |
Normalizes an object into a set of arrays/scalars. Overrides ComplexDataNormalizer:: |