Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Config / OverrideCommand.php
diff --git a/vendor/drupal/console/src/Command/Config/OverrideCommand.php b/vendor/drupal/console/src/Command/Config/OverrideCommand.php
new file mode 100644 (file)
index 0000000..2f690ef
--- /dev/null
@@ -0,0 +1,150 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Config\OverrideCommand.
+ */
+
+namespace Drupal\Console\Command\Config;
+
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Command\Command;
+use Drupal\Core\Config\CachedStorage;
+use Drupal\Core\Config\ConfigFactory;
+use Drupal\Console\Core\Command\Shared\CommandTrait;
+use Drupal\Console\Core\Style\DrupalStyle;
+
+class OverrideCommand extends Command
+{
+    use CommandTrait;
+
+    /**
+     * @var CachedStorage
+     */
+    protected $configStorage;
+
+    /**
+     * @var ConfigFactory
+     */
+    protected $configFactory;
+
+    /**
+     * OverrideCommand constructor.
+     *
+     * @param CachedStorage $configStorage
+     * @param ConfigFactory $configFactory
+     */
+    public function __construct(
+        CachedStorage $configStorage,
+        ConfigFactory $configFactory
+    ) {
+        $this->configStorage = $configStorage;
+        $this->configFactory = $configFactory;
+        parent::__construct();
+    }
+
+    protected function configure()
+    {
+        $this
+            ->setName('config:override')
+            ->setDescription($this->trans('commands.config.override.description'))
+            ->addArgument(
+                'name',
+                InputArgument::REQUIRED,
+                $this->trans('commands.config.override.arguments.name')
+            )
+            ->addArgument('key', InputArgument::REQUIRED, $this->trans('commands.config.override.arguments.key'))
+            ->addArgument('value', InputArgument::REQUIRED, $this->trans('commands.config.override.arguments.value'));
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function interact(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+        $name = $input->getArgument('name');
+        $names = $this->configFactory->listAll();
+        if ($name) {
+            if (!in_array($name, $names)) {
+                $io->warning(
+                    sprintf(
+                        $this->trans('commands.config.override.messages.invalid-name'),
+                        $name
+                    )
+                );
+                $name = null;
+            }
+        }
+        if (!$name) {
+            $name = $io->choiceNoList(
+                $this->trans('commands.config.override.questions.name'),
+                $names
+            );
+            $input->setArgument('name', $name);
+        }
+        $key = $input->getArgument('key');
+        if (!$key) {
+            if ($this->configStorage->exists($name)) {
+                $configuration = $this->configStorage->read($name);
+            }
+            $key = $io->choiceNoList(
+                $this->trans('commands.config.override.questions.key'),
+                array_keys($configuration)
+            );
+            $input->setArgument('key', $key);
+        }
+        $value = $input->getArgument('value');
+        if (!$value) {
+            $value = $io->ask(
+                $this->trans('commands.config.override.questions.value')
+            );
+            $input->setArgument('value', $value);
+        }
+    }
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        $configName = $input->getArgument('name');
+        $key = $input->getArgument('key');
+        $value = $input->getArgument('value');
+
+        $config = $this->configFactory->getEditable($configName);
+
+        $configurationOverrideResult = $this->overrideConfiguration($config, $key, $value);
+
+        $config->save();
+
+        $io->info($this->trans('commands.config.override.messages.configuration'), false);
+        $io->comment($configName);
+
+        $tableHeader = [
+            $this->trans('commands.config.override.messages.configuration-key'),
+            $this->trans('commands.config.override.messages.original'),
+            $this->trans('commands.config.override.messages.updated'),
+        ];
+        $tableRows = $configurationOverrideResult;
+        $io->table($tableHeader, $tableRows);
+
+        $config->save();
+    }
+
+
+    protected function overrideConfiguration($config, $key, $value)
+    {
+        $result[] = [
+            'configuration' => $key,
+            'original' => $config->get($key),
+            'updated' => $value,
+        ];
+        $config->set($key, $value);
+
+        return $result;
+    }
+}