From 41413274084ee7bb6d59d437d3cc02b78d64dba6 Mon Sep 17 00:00:00 2001 From: dasjo Date: Sat, 22 Feb 2020 11:05:07 +0100 Subject: [PATCH] Added entity reference layout revisions plugin. (#968) --- .../Field/EntityReferenceLayoutRevisions.php | 211 ++++++++++++++++++ 1 file changed, 211 insertions(+) create mode 100644 src/Plugin/GraphQL/DataProducer/Field/EntityReferenceLayoutRevisions.php diff --git a/src/Plugin/GraphQL/DataProducer/Field/EntityReferenceLayoutRevisions.php b/src/Plugin/GraphQL/DataProducer/Field/EntityReferenceLayoutRevisions.php new file mode 100644 index 000000000..e304b02e7 --- /dev/null +++ b/src/Plugin/GraphQL/DataProducer/Field/EntityReferenceLayoutRevisions.php @@ -0,0 +1,211 @@ +get('entity_type.manager'), + $container->get('graphql.buffer.entity_revision') + ); + } + + /** + * EntityLoad constructor. + * + * @param array $configuration + * The plugin configuration array. + * @param string $pluginId + * The plugin id. + * @param array $pluginDefinition + * The plugin definition array. + * @param \Drupal\Core\Entity\EntityTypeManager $entityTypeManager + * The entity type manager service. + * @param \Drupal\graphql\GraphQL\Buffers\EntityRevisionBuffer $entityRevisionBuffer + * The entity revision buffer service. + * + * @codeCoverageIgnore + */ + public function __construct( + array $configuration, + string $pluginId, + array $pluginDefinition, + EntityTypeManager $entityTypeManager, + EntityRevisionBuffer $entityRevisionBuffer + ) { + parent::__construct($configuration, $pluginId, $pluginDefinition); + $this->entityTypeManager = $entityTypeManager; + $this->entityRevisionBuffer = $entityRevisionBuffer; + } + + /** + * Resolves entity reference layout revisions for a given field of a given entity. + * + * May optionally respect the entity bundles and language. + * + * @param \Drupal\Core\Entity\EntityInterface $entity + * The entity. + * @param string $field + * The field of a given entity to get entity reference layout revisions for. + * @param string|null $language + * Optional. Language to be respected for retrieved entities. + * @param array|null $bundles + * Optional. List of bundles to be respected for retrieved entities. + * @param bool $access + * Whether check for access or not. Default is true. + * @param \Drupal\Core\Session\AccountInterface|null $accessUser + * User entity to check access for. Default is null. + * @param string $accessOperation + * Operation to check access for. Default is view. + * @param \Drupal\graphql\GraphQL\Execution\FieldContext $context + * The caching context related to the current field. + * + * @return \GraphQL\Deferred|null + * A promise that will return entities or NULL if there aren't any. + */ + public function resolve(EntityInterface $entity, string $field, ?string $language, ?array $bundles, ?bool $access, ?AccountInterface $accessUser, ?string $accessOperation, FieldContext $context): ?Deferred { + if (!$entity instanceof FieldableEntityInterface || !$entity->hasField($field)) { + return NULL; + } + + $definition = $entity->getFieldDefinition($field); + if ($definition->getType() !== 'entity_reference_layout_revisioned') { + return NULL; + } + + $definition = $entity->getFieldDefinition($field); + $type = $definition->getSetting('target_type'); + if (($values = $entity->get($field)) && $values instanceof EntityReferenceFieldItemListInterface) { + $vids = array_map(function ($value) { + return $value['target_revision_id']; + }, $values->getValue()); + + $resolver = $this->entityRevisionBuffer->add($type, $vids); + return new Deferred(function () use ($type, $language, $bundles, $access, $accessUser, $accessOperation, $resolver, $context) { + $entities = $resolver() ?: []; + + $entities = array_filter($entities, function (EntityInterface $entity) use ($language, $bundles, $access, $accessOperation, $accessUser, $context) { + if (isset($bundles) && !in_array($entity->bundle(), $bundles)) { + return FALSE; + } + + // Get the correct translation. + if (isset($language) && $language != $entity->language()->getId() && $entity instanceof TranslatableInterface) { + $entity = $entity->getTranslation($language); + $entity->addCacheContexts(["static:language:{$language}"]); + } + + // Check if the passed user (or current user if none is passed) has + // access to the entity, if not return NULL. + if ($access) { + /* @var $accessResult \Drupal\Core\Access\AccessResultInterface */ + $accessResult = $entity->access($accessOperation, $accessUser, TRUE); + $context->addCacheableDependency($accessResult); + if (!$accessResult->isAllowed()) { + return FALSE; + } + } + + return TRUE; + }); + + if (empty($entities)) { + $type = $this->entityTypeManager->getDefinition($type); + /** @var \Drupal\Core\Entity\EntityTypeInterface $type */ + $tags = $type->getListCacheTags(); + $context->addCacheTags($tags); + return NULL; + } + + return $entities; + }); + } + + return NULL; + } + +}