You are here

abstract class UpdateEntityBase in GraphQL 8.3

Hierarchy

Expanded class hierarchy of UpdateEntityBase

1 file declares its use of UpdateEntityBase
EntityMutationTest.php in modules/graphql_core/tests/src/Kernel/EntityMutation/EntityMutationTest.php

File

modules/graphql_core/src/Plugin/GraphQL/Mutations/Entity/UpdateEntityBase.php, line 17

Namespace

Drupal\graphql_core\Plugin\GraphQL\Mutations\Entity
View source
abstract class UpdateEntityBase extends MutationPluginBase implements ContainerFactoryPluginInterface {
  use DependencySerializationTrait;
  use StringTranslationTrait;

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * The renderer service.
   *
   * @var \Drupal\Core\Render\RendererInterface
   */
  protected $renderer;

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $pluginId, $pluginDefinition) {
    return new static($configuration, $pluginId, $pluginDefinition, $container
      ->get('entity_type.manager'), $container
      ->get('renderer'));
  }

  /**
   * UpdateEntityBase constructor.
   *
   * @param array $configuration
   *   The plugin configuration array.
   * @param string $pluginId
   *   The plugin id.
   * @param mixed $pluginDefinition
   *   The plugin definition.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
   *   The entity type manager service.
   * @param \Drupal\Core\Render\RendererInterface $renderer
   *   The renderer service.
   */
  public function __construct(array $configuration, $pluginId, $pluginDefinition, EntityTypeManagerInterface $entityTypeManager, RendererInterface $renderer) {
    parent::__construct($configuration, $pluginId, $pluginDefinition);
    $this->entityTypeManager = $entityTypeManager;
    $this->renderer = $renderer;
  }

  /**
   * {@inheritdoc}
   */
  public function resolve($value, array $args, ResolveContext $context, ResolveInfo $info) {

    // There are cases where the Drupal entity API calls emit the cache metadata
    // in the current render context. In such cases
    // EarlyRenderingControllerWrapperSubscriber throws the leaked cache
    // metadata exception. To avoid this, wrap the execution in its own render
    // context.
    return $this->renderer
      ->executeInRenderContext(new RenderContext(), function () use ($value, $args, $context, $info) {
      $entityTypeId = $this->pluginDefinition['entity_type'];
      $bundleName = $this->pluginDefinition['entity_bundle'];
      $storage = $this->entityTypeManager
        ->getStorage($entityTypeId);

      /** @var \Drupal\Core\Entity\ContentEntityInterface $entity */
      if (!($entity = $storage
        ->load($args['id']))) {
        return new EntityCrudOutputWrapper(NULL, NULL, [
          $this
            ->t('The requested @bundle could not be loaded.', [
            '@bundle' => $bundleName,
          ]),
        ]);
      }
      if (!$entity
        ->bundle() === $bundleName) {
        return new EntityCrudOutputWrapper(NULL, NULL, [
          $this
            ->t('The requested entity is not of the expected type @bundle.', [
            '@bundle' => $bundleName,
          ]),
        ]);
      }
      if (!$entity
        ->access('update')) {
        return new EntityCrudOutputWrapper(NULL, NULL, [
          $this
            ->t('You do not have the necessary permissions to update this @bundle.', [
            '@bundle' => $bundleName,
          ]),
        ]);
      }

      // The raw input needs to be converted to use the proper field and property
      // keys because we usually convert them to camel case when adding them to
      // the schema. Allow the other implementations to control this easily.
      $input = $this
        ->extractEntityInput($value, $args, $context, $info);
      try {
        foreach ($input as $key => $value) {
          $entity
            ->get($key)
            ->setValue($value);
        }
      } catch (\InvalidArgumentException $exception) {
        return new EntityCrudOutputWrapper(NULL, NULL, [
          $this
            ->t('The entity update failed with exception: @exception.', [
            '@exception' => $exception
              ->getMessage(),
          ]),
        ]);
      }
      if (($violations = $entity
        ->validate()) && $violations
        ->count()) {
        return new EntityCrudOutputWrapper(NULL, $violations);
      }
      if (($status = $entity
        ->save()) && $status === SAVED_UPDATED) {
        return new EntityCrudOutputWrapper($entity);
      }
      return NULL;
    });
  }

  /**
   * Extract entity values from the resolver args.
   *
   * Loops over all input values and assigns them to their original field names.
   *
   * @param $value
   *   The parent value.
   * @param array $args
   *   The entity values provided through the resolver args.
   * @param \Drupal\graphql\GraphQL\Execution\ResolveContext $context
   *   The resolve context.
   * @param \GraphQL\Type\Definition\ResolveInfo $info
   *   The resolve info object.
   *
   * @return array
   *   The extracted entity values with their proper, internal field names.
   */
  protected abstract function extractEntityInput($value, array $args, ResolveContext $context, ResolveInfo $info);

}

Members

Namesort descending Modifiers Type Description Overrides
ArgumentAwarePluginTrait::buildArgumentDefault protected function Builds an argument's default value.
ArgumentAwarePluginTrait::buildArgumentDescription protected function Builds an argument's description.
ArgumentAwarePluginTrait::buildArguments protected function Builds the list of arguments.
ArgumentAwarePluginTrait::buildArgumentType protected function Builds an argument's type.
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
DeprecatablePluginTrait::buildDeprecationReason protected function
DescribablePluginTrait::buildDescription protected function
MutationPluginBase::createInstance public static function Overrides MutationPluginInterface::createInstance
MutationPluginBase::getDefinition public function Returns the plugin's type or field definition for the schema. Overrides MutationPluginInterface::getDefinition
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
TypedPluginTrait::buildType protected function
UpdateEntityBase::$entityTypeManager protected property The entity type manager.
UpdateEntityBase::$renderer protected property The renderer service.
UpdateEntityBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
UpdateEntityBase::extractEntityInput abstract protected function Extract entity values from the resolver args.
UpdateEntityBase::resolve public function
UpdateEntityBase::__construct public function UpdateEntityBase constructor. Overrides PluginBase::__construct