class RouteEntity in GraphQL 8.3
Retrieve the current routes entity, if it is an entity route.
Plugin annotation
@GraphQLField(
id = "route_entity",
secure = true,
name = "entity",
description = @Translation("The entity belonging to the current url."),
response_cache_contexts={"languages:language_content"},
parents = {"EntityCanonicalUrl"},
contextual_arguments={"language"},
type = "Entity"
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\graphql\Plugin\GraphQL\Fields\FieldPluginBase implements FieldPluginInterface uses ArgumentAwarePluginTrait, CacheablePluginTrait, DeprecatablePluginTrait, DescribablePluginTrait, TypedPluginTrait
- class \Drupal\graphql_core\Plugin\GraphQL\Fields\Routing\RouteEntity implements ContainerFactoryPluginInterface uses DependencySerializationTrait
- class \Drupal\graphql\Plugin\GraphQL\Fields\FieldPluginBase implements FieldPluginInterface uses ArgumentAwarePluginTrait, CacheablePluginTrait, DeprecatablePluginTrait, DescribablePluginTrait, TypedPluginTrait
Expanded class hierarchy of RouteEntity
File
- modules/
graphql_core/ src/ Plugin/ GraphQL/ Fields/ Routing/ RouteEntity.php, line 36
Namespace
Drupal\graphql_core\Plugin\GraphQL\Fields\RoutingView source
class RouteEntity extends FieldPluginBase implements ContainerFactoryPluginInterface {
use DependencySerializationTrait;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* The language manager.
*
* @var \Drupal\Core\Language\LanguageManagerInterface
*/
protected $languageManager;
/**
* The entity repository service.
*
* @var \Drupal\Core\Entity\EntityRepositoryInterface
*/
protected $entityRepository;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $pluginId, $pluginDefinition) {
return new static($configuration, $pluginId, $pluginDefinition, $container
->get('entity_type.manager'), $container
->get('entity.repository'), $container
->get('language_manager'));
}
/**
* RouteEntity constructor.
*
* @param array $configuration
* The plugin configuration array.
* @param string $pluginId
* The plugin id.
* @param mixed $pluginDefinition
* The plugin definition array.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity type manager service.
* @param \Drupal\Core\Entity\EntityRepositoryInterface $entityRepository
* The entity repository service.
* @param \Drupal\Core\Language\LanguageManagerInterface $languageManager
* The language manager service.
*/
public function __construct(array $configuration, $pluginId, $pluginDefinition, EntityTypeManagerInterface $entityTypeManager, EntityRepositoryInterface $entityRepository, LanguageManagerInterface $languageManager) {
parent::__construct($configuration, $pluginId, $pluginDefinition);
$this->entityTypeManager = $entityTypeManager;
$this->languageManager = $languageManager;
$this->entityRepository = $entityRepository;
}
/**
* {@inheritdoc}
*/
public function resolveValues($value, array $args, ResolveContext $context, ResolveInfo $info) {
if ($value instanceof Url) {
list(, $type) = explode('.', $value
->getRouteName());
$parameters = $value
->getRouteParameters();
$storage = $this->entityTypeManager
->getStorage($type);
if (!($entity = $storage
->load($parameters[$type]))) {
return $this
->resolveMissingEntity($value, $args, $info);
}
if ($entity instanceof TranslatableInterface && $entity
->isTranslatable()) {
return $this
->resolveEntityTranslation($entity, $value, $args, $info);
}
return $this
->resolveEntity($entity, $value, $args, $info);
}
}
/**
* @param \Drupal\Core\Entity\EntityInterface $entity
* The entity to resolve.
* @param \Drupal\Core\Url $url
* The url of the entity to resolve.
* @param array $args
* The field arguments array.
* @param \GraphQL\Type\Definition\ResolveInfo $info
* The resolve info object.
*
* @return \Generator
*/
protected function resolveEntity(EntityInterface $entity, Url $url, array $args, ResolveInfo $info) {
$access = $entity
->access('view', NULL, TRUE);
if ($access
->isAllowed()) {
(yield $entity
->addCacheableDependency($access));
}
else {
(yield new CacheableValue(NULL, [
$access,
]));
}
}
/**
* Resolves the entity translation from the given url context.
*
* @param \Drupal\Core\Entity\EntityInterface $entity
* The entity to resolve.
* @param \Drupal\Core\Url $url
* The url of the entity to resolve.
* @param array $args
* The field arguments array.
* @param \GraphQL\Type\Definition\ResolveInfo $info
* The resolve info object.
*
* @return \Iterator
*/
protected function resolveEntityTranslation(EntityInterface $entity, Url $url, array $args, ResolveInfo $info) {
if ($entity instanceof TranslatableInterface && isset($args['language']) && $entity
->isTranslatable()) {
if ($entity
->hasTranslation($args['language'])) {
$entity = $entity
->getTranslation($args['language']);
}
}
return $this
->resolveEntity($entity, $url, $args, $info);
}
/**
* m
*
* @param \Drupal\Core\Url $url
* The url of the entity to resolve.
* @param array $args
* The field arguments array.
* @param \GraphQL\Type\Definition\ResolveInfo $info
* The resolve info object.
*
* @return \Generator
*/
protected function resolveMissingEntity(Url $url, $args, $info) {
(yield (new CacheableValue(NULL))
->addCacheTags([
'4xx-response',
]));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's default value. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's description. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds the list of arguments. | |
ArgumentAwarePluginTrait:: |
protected | function | Builds an argument's type. | |
CacheablePluginTrait:: |
protected | function | ||
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
DeprecatablePluginTrait:: |
protected | function | ||
DescribablePluginTrait:: |
protected | function | ||
FieldPluginBase:: |
protected | property | Static cache for `isLanguageAwareField()` | |
FieldPluginBase:: |
protected | property | The language context service. | |
FieldPluginBase:: |
protected | property | The renderer service. | 1 |
FieldPluginBase:: |
public static | function |
Overrides FieldPluginInterface:: |
|
FieldPluginBase:: |
protected | function | Retrieve the list of cache dependencies for a given value and arguments. | 1 |
FieldPluginBase:: |
public | function |
Returns the plugin's type or field definition for the schema. Overrides FieldPluginInterface:: |
|
FieldPluginBase:: |
protected | function | Get the language context instance. | |
FieldPluginBase:: |
protected | function | Get the renderer service. | |
FieldPluginBase:: |
protected | function | Indicator if the field is language aware. | 1 |
FieldPluginBase:: |
public | function | 1 | |
FieldPluginBase:: |
protected | function | ||
FieldPluginBase:: |
protected | function | Unwrap the resolved values. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
RouteEntity:: |
protected | property | The entity repository service. | |
RouteEntity:: |
protected | property | The entity type manager. | |
RouteEntity:: |
protected | property | The language manager. | |
RouteEntity:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
RouteEntity:: |
protected | function | ||
RouteEntity:: |
protected | function | Resolves the entity translation from the given url context. | |
RouteEntity:: |
protected | function | m | |
RouteEntity:: |
public | function |
Retrieve the list of field values. Overrides FieldPluginBase:: |
|
RouteEntity:: |
public | function |
RouteEntity constructor. Overrides PluginBase:: |
|
TypedPluginTrait:: |
protected | function |