Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Update / EntitiesCommand.php
diff --git a/vendor/drupal/console/src/Command/Update/EntitiesCommand.php b/vendor/drupal/console/src/Command/Update/EntitiesCommand.php
new file mode 100644 (file)
index 0000000..85b5007
--- /dev/null
@@ -0,0 +1,100 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Update\EntitiesCommand.
+ */
+
+namespace Drupal\Console\Command\Update;
+
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Command\Command;
+use Drupal\Console\Core\Command\Shared\CommandTrait;
+use Drupal\Core\Entity\EntityStorageException;
+use Drupal\Core\Utility\Error;
+use Drupal\Console\Core\Style\DrupalStyle;
+use Drupal\Core\State\StateInterface;
+use Drupal\Core\Entity\EntityDefinitionUpdateManager;
+use Drupal\Console\Core\Utils\ChainQueue;
+
+/**
+ * Class EntitiesCommand.
+ *
+ * @package Drupal\Console\Command\Update
+ */
+class EntitiesCommand extends Command
+{
+    use CommandTrait;
+
+    /**
+     * @var StateInterface
+     */
+    protected $state;
+
+    /**
+     * @var EntityDefinitionUpdateManager
+     */
+    protected $entityDefinitionUpdateManager;
+
+    /**
+     * @var ChainQueue
+     */
+    protected $chainQueue;
+
+    /**
+     * EntitiesCommand constructor.
+     *
+     * @param StateInterface                $state
+     * @param EntityDefinitionUpdateManager $entityDefinitionUpdateManager
+     * @param ChainQueue                    $chainQueue
+     */
+    public function __construct(
+        StateInterface $state,
+        EntityDefinitionUpdateManager $entityDefinitionUpdateManager,
+        ChainQueue $chainQueue
+    ) {
+        $this->state = $state;
+        $this->entityDefinitionUpdateManager = $entityDefinitionUpdateManager;
+        $this->chainQueue = $chainQueue;
+        parent::__construct();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function configure()
+    {
+        $this
+            ->setName('update:entities')
+            ->setDescription($this->trans('commands.update.entities.description'));
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        //$state = $this->getDrupalService('state');
+        $io->info($this->trans('commands.site.maintenance.messages.maintenance-on'));
+        $io->info($this->trans('commands.update.entities.messages.start'));
+        $this->state->set('system.maintenance_mode', true);
+
+        try {
+            $this->entityDefinitionUpdateManager->applyUpdates();
+            /* @var EntityStorageException $e */
+        } catch (EntityStorageException $e) {
+            /* @var Error $variables */
+            $variables = Error::decodeException($e);
+            $io->info($this->trans('commands.update.entities.messages.error'));
+            $io->info($variables);
+        }
+
+        $this->state->set('system.maintenance_mode', false);
+        $io->info($this->trans('commands.update.entities.messages.end'));
+        $this->chainQueue->addCommand('cache:rebuild', ['cache' => 'all']);
+        $io->info($this->trans('commands.site.maintenance.messages.maintenance-off'));
+    }
+}