View source
<?php
namespace Drupal\default_content;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityRepositoryInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Extension\InfoParserInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Serialization\Yaml;
use Drupal\default_content\Event\DefaultContentEvents;
use Drupal\default_content\Event\ExportEvent;
use Drupal\default_content\Normalizer\ContentEntityNormalizerInterface;
use Drupal\user\UserInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class Exporter implements ExporterInterface {
protected $entityTypeManager;
protected $entityRepository;
protected $moduleHandler;
protected $infoParser;
protected $eventDispatcher;
protected $contentFileStorage;
protected $contentEntityNormalizer;
public function __construct(EntityTypeManagerInterface $entity_type_manager, EntityRepositoryInterface $entity_repository, EventDispatcherInterface $event_dispatcher, ModuleHandlerInterface $module_handler, InfoParserInterface $info_parser, ContentFileStorageInterface $content_file_storage, ContentEntityNormalizerInterface $content_entity_normaler) {
$this->entityTypeManager = $entity_type_manager;
$this->entityRepository = $entity_repository;
$this->eventDispatcher = $event_dispatcher;
$this->moduleHandler = $module_handler;
$this->infoParser = $info_parser;
$this->contentFileStorage = $content_file_storage;
$this->contentEntityNormalizer = $content_entity_normaler;
}
public function exportContent($entity_type_id, $entity_id, $destination = NULL) {
$storage = $this->entityTypeManager
->getStorage($entity_type_id);
$entity = $storage
->load($entity_id);
if (!$entity) {
throw new \InvalidArgumentException(sprintf('Entity "%s" with ID "%s" does not exist', $entity_type_id, $entity_id));
}
if (!$entity instanceof ContentEntityInterface) {
throw new \InvalidArgumentException(sprintf('Entity "%s" with ID "%s" is not a content entity', $entity_type_id, $entity_id));
}
$normalized = $this->contentEntityNormalizer
->normalize($entity);
$return = Yaml::encode($normalized);
if ($destination) {
$folder = dirname(dirname($destination));
$this->contentFileStorage
->writeEntity($folder, $return, $entity, basename($destination));
}
$this->eventDispatcher
->dispatch(DefaultContentEvents::EXPORT, new ExportEvent($entity));
return $return;
}
public function exportContentWithReferences($entity_type_id, $entity_id, $folder = NULL) {
$storage = $this->entityTypeManager
->getStorage($entity_type_id);
$entity = $storage
->load($entity_id);
if (!$entity) {
throw new \InvalidArgumentException(sprintf('Entity "%s" with ID "%s" does not exist', $entity_type_id, $entity_id));
}
if (!$entity instanceof ContentEntityInterface) {
throw new \InvalidArgumentException(sprintf('Entity "%s" with ID "%s" is not a content entity', $entity_type_id, $entity_id));
}
$entities = [
$entity
->uuid() => $entity,
];
$entities = $this
->getEntityReferencesRecursive($entity, 0, $entities);
$serialized_entities_per_type = [];
foreach ($entities as $entity) {
$normalized = $this->contentEntityNormalizer
->normalize($entity);
$encoded = Yaml::encode($normalized);
$serialized_entities_per_type[$entity
->getEntityTypeId()][$entity
->uuid()] = $encoded;
if ($folder) {
$this->contentFileStorage
->writeEntity($folder, $encoded, $entity);
}
}
return $serialized_entities_per_type;
}
public function exportModuleContent($module_name, $folder = NULL) {
$info_file = $this->moduleHandler
->getModule($module_name)
->getPathname();
$info = $this->infoParser
->parse($info_file);
$exported_content = [];
if (empty($info['default_content'])) {
return $exported_content;
}
foreach ($info['default_content'] as $entity_type => $uuids) {
foreach ($uuids as $uuid) {
$entity = $this->entityRepository
->loadEntityByUuid($entity_type, $uuid);
if (!$entity) {
throw new \InvalidArgumentException(sprintf('Entity "%s" with UUID "%s" does not exist', $entity_type, $uuid));
}
$exported_content[$entity_type][$uuid] = $this
->exportContent($entity_type, $entity
->id());
if ($folder) {
$this->contentFileStorage
->writeEntity($folder, $exported_content[$entity_type][$uuid], $entity);
}
}
}
return $exported_content;
}
protected function getEntityReferencesRecursive(ContentEntityInterface $entity, $depth = 0, array &$indexed_dependencies = []) {
$entity_dependencies = $entity
->referencedEntities();
foreach ($entity_dependencies as $dependent_entity) {
if (!$dependent_entity instanceof ContentEntityInterface) {
continue;
}
if ($dependent_entity instanceof UserInterface && \in_array($dependent_entity
->id(), [
0,
1,
])) {
continue;
}
$key = $dependent_entity
->uuid();
if (isset($indexed_dependencies[$key])) {
continue;
}
if (!$dependent_entity
->getEntityType()
->get('entity_revision_parent_type_field')) {
$indexed_dependencies[$key] = $dependent_entity;
}
if ($depth < 6) {
$indexed_dependencies += $this
->getEntityReferencesRecursive($dependent_entity, $depth + 1, $indexed_dependencies);
}
}
return $indexed_dependencies;
}
}