Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Create / VocabulariesCommand.php
diff --git a/vendor/drupal/console/src/Command/Create/VocabulariesCommand.php b/vendor/drupal/console/src/Command/Create/VocabulariesCommand.php
new file mode 100644 (file)
index 0000000..4af2244
--- /dev/null
@@ -0,0 +1,132 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Create\TermsCommand.
+ */
+
+namespace Drupal\Console\Command\Create;
+
+use Drupal\Console\Core\Command\Shared\CommandTrait;
+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\Utils\Create\VocabularyData;
+use Drupal\Console\Core\Style\DrupalStyle;
+
+/**
+ * Class VocabulariesCommand
+ *
+ * @package Drupal\Console\Command\Generate
+ */
+class VocabulariesCommand extends Command
+{
+    use CommandTrait;
+
+    /**
+     * @var VocabularyData
+     */
+    protected $vocabularyData;
+
+    /**
+     * UsersCommand constructor.
+     *
+     * @param $vocabularyData
+     */
+    public function __construct(VocabularyData $vocabularyData)
+    {
+        $this->vocabularyData = $vocabularyData;
+        parent::__construct();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function configure()
+    {
+        $this
+            ->setName('create:vocabularies')
+            ->setDescription($this->trans('commands.create.vocabularies.description'))
+            ->addOption(
+                'limit',
+                null,
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.create.vocabularies.options.limit')
+            )
+            ->addOption(
+                'name-words',
+                null,
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.create.vocabularies.options.name-words')
+            );
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function interact(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        $limit = $input->getOption('limit');
+        if (!$limit) {
+            $limit = $io->ask(
+                $this->trans('commands.create.vocabularies.questions.limit'),
+                25
+            );
+            $input->setOption('limit', $limit);
+        }
+
+        $nameWords = $input->getOption('name-words');
+        if (!$nameWords) {
+            $nameWords = $io->ask(
+                $this->trans('commands.create.vocabularies.questions.name-words'),
+                5
+            );
+
+            $input->setOption('name-words', $nameWords);
+        }
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        $limit = $input->getOption('limit')?:25;
+        $nameWords = $input->getOption('name-words')?:5;
+
+        $vocabularies = $this->vocabularyData->create(
+            $limit,
+            $nameWords
+        );
+
+        $tableHeader = [
+          $this->trans('commands.create.vocabularies.messages.vocabulary-id'),
+          $this->trans('commands.create.vocabularies.messages.name'),
+        ];
+
+        if (isset($vocabularies['success'])) {
+            $io->table($tableHeader, $vocabularies['success']);
+
+            $io->success(
+                sprintf(
+                    $this->trans('commands.create.vocabularies.messages.created-terms'),
+                    $limit
+                )
+            );
+        } else {
+            $io->error(
+                sprintf(
+                    $this->trans('commands.create.vocabularies.messages.error'),
+                    $vocabularies['error'][0]['error']
+                )
+            );
+        }
+
+        return 0;
+    }
+}