View source
<?php
namespace Drupal\social_demo\Plugin\DemoContent;
use Drupal\node\Entity\Node;
use Drupal\social_demo\DemoNode;
use Drupal\social_demo\DemoContentParserInterface;
use Drupal\user\UserStorageInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\file\FileStorageInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class Book extends DemoNode {
protected $fileStorage;
public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser, UserStorageInterface $user_storage, EntityStorageInterface $group_storage, FileStorageInterface $file_storage) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $parser, $user_storage, $group_storage);
$this->fileStorage = $file_storage;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('social_demo.yaml_parser'), $container
->get('entity_type.manager')
->getStorage('user'), $container
->get('entity_type.manager')
->getStorage('group'), $container
->get('entity_type.manager')
->getStorage('file'));
}
protected function getEntry(array $item) {
$entry = parent::getEntry($item);
$entry['field_content_visibility'] = $item['field_content_visibility'];
if (!empty($item['field_book_image'])) {
$entry['field_book_image'] = $this
->prepareImage($item['image'], $item['image_alt']);
}
if (!empty($item['field_files'])) {
$entry['field_files'] = $this
->prepareAttachment($item['field_files']);
}
if (!empty($item['alias'])) {
$entry['path'] = [
'alias' => $item['alias'],
];
}
if (!empty($item['book'])) {
if ($item['book']['id'] === $item['uuid']) {
$entry['book']['bid'] = 'new';
unset($entry['book']['id']);
}
$mainbook = $this->entityStorage
->loadByProperties([
'uuid' => $item['book']['id'],
]);
$mainbook = current($mainbook);
if ($mainbook instanceof Node) {
$entry['book']['bid'] = $mainbook
->id();
$entry['book']['weight'] = $item['book']['weight'];
unset($entry['book']['id']);
if (isset($item['book']['parent'])) {
$parentbook = $this->entityStorage
->loadByProperties([
'uuid' => $item['book']['parent'],
]);
$parentbook = current($parentbook);
if ($parentbook instanceof Node) {
$entry['book']['pid'] = $parentbook
->id();
}
}
else {
$entry['book']['pid'] = $mainbook
->id();
}
}
}
return $entry;
}
protected function prepareAttachment(array $files) {
$attachments = NULL;
foreach ($files as $file) {
$description = '';
$uuid = $file;
if (is_array($file)) {
$uuid = key($file);
$description = current($file);
}
$object = $this->fileStorage
->loadByProperties([
'uuid' => $uuid,
]);
if ($object) {
$properties = [
'target_id' => current($object)
->id(),
'description' => $description,
];
$attachments[] = $properties;
}
}
return $attachments;
}
}