Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Create / TermsCommand.php
diff --git a/vendor/drupal/console/src/Command/Create/TermsCommand.php b/vendor/drupal/console/src/Command/Create/TermsCommand.php
new file mode 100644 (file)
index 0000000..0822c4a
--- /dev/null
@@ -0,0 +1,172 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Create\TermsCommand.
+ */
+
+namespace Drupal\Console\Command\Create;
+
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputOption;
+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\Console\Annotations\DrupalCommand;
+use Drupal\Console\Utils\Create\TermData;
+use Drupal\Console\Utils\DrupalApi;
+use Drupal\Console\Core\Style\DrupalStyle;
+
+/**
+ * Class TermsCommand
+ *
+ * @package Drupal\Console\Command\Generate
+ *
+ * @DrupalCommand(
+ *     extension = "features",
+ *     extensionType = "module",
+ *     dependencies={"taxonomy"}
+ * )
+ */
+class TermsCommand extends Command
+{
+    use CommandTrait;
+
+    /**
+     * @var DrupalApi
+     */
+    protected $drupalApi;
+    /**
+     * @var TermData
+     */
+    protected $createTermData;
+
+    /**
+     * TermsCommand constructor.
+     *
+     * @param DrupalApi $drupalApi
+     * @param TermData  $createTermData
+     */
+    public function __construct(
+        DrupalApi $drupalApi,
+        TermData $createTermData
+    ) {
+        $this->drupalApi = $drupalApi;
+        $this->createTermData = $createTermData;
+        parent::__construct();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function configure()
+    {
+        $this
+            ->setName('create:terms')
+            ->setDescription($this->trans('commands.create.terms.description'))
+            ->addArgument(
+                'vocabularies',
+                InputArgument::IS_ARRAY,
+                $this->trans('commands.create.terms.arguments.vocabularies')
+            )
+            ->addOption(
+                'limit',
+                null,
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.create.terms.options.limit')
+            )
+            ->addOption(
+                'name-words',
+                null,
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.create.terms.options.name-words')
+            );
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function interact(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        $vocabularies = $input->getArgument('vocabularies');
+        if (!$vocabularies) {
+            $vocabularies = $this->drupalApi->getVocabularies();
+            $vids = $io->choice(
+                $this->trans('commands.create.terms.questions.vocabularies'),
+                array_values($vocabularies),
+                null,
+                true
+            );
+
+            $vids = array_map(
+                function ($vid) use ($vocabularies) {
+                    return array_search($vid, $vocabularies);
+                },
+                $vids
+            );
+
+            $input->setArgument('vocabularies', $vids);
+        }
+
+        $limit = $input->getOption('limit');
+        if (!$limit) {
+            $limit = $io->ask(
+                $this->trans('commands.create.terms.questions.limit'),
+                25
+            );
+            $input->setOption('limit', $limit);
+        }
+
+        $nameWords = $input->getOption('name-words');
+        if (!$nameWords) {
+            $nameWords = $io->ask(
+                $this->trans('commands.create.terms.questions.name-words'),
+                5
+            );
+
+            $input->setOption('name-words', $nameWords);
+        }
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        $vocabularies = $input->getArgument('vocabularies');
+        $limit = $input->getOption('limit')?:25;
+        $nameWords = $input->getOption('name-words')?:5;
+
+        if (!$vocabularies) {
+            $vocabularies = array_keys($this->drupalApi->getVocabularies());
+        }
+
+        $terms = $this->createTermData->create(
+            $vocabularies,
+            $limit,
+            $nameWords
+        );
+
+        $tableHeader = [
+            $this->trans('commands.create.terms.messages.term-id'),
+            $this->trans('commands.create.terms.messages.vocabulary'),
+            $this->trans('commands.create.terms.messages.name'),
+        ];
+
+        $io->table($tableHeader, $terms['success']);
+
+        $io->success(
+            sprintf(
+                $this->trans('commands.create.terms.messages.created-terms'),
+                $limit
+            )
+        );
+
+        return 0;
+    }
+}