Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Generate / EventSubscriberCommand.php
diff --git a/vendor/drupal/console/src/Command/Generate/EventSubscriberCommand.php b/vendor/drupal/console/src/Command/Generate/EventSubscriberCommand.php
new file mode 100644 (file)
index 0000000..e91ee34
--- /dev/null
@@ -0,0 +1,196 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Generate\EventSubscriberCommand.
+ */
+
+namespace Drupal\Console\Command\Generate;
+
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Output\OutputInterface;
+use Drupal\Console\Command\Shared\ServicesTrait;
+use Drupal\Console\Command\Shared\ModuleTrait;
+use Drupal\Console\Generator\EventSubscriberGenerator;
+use Drupal\Console\Command\Shared\ConfirmationTrait;
+use Drupal\Console\Command\Shared\EventsTrait;
+use Symfony\Component\Console\Command\Command;
+use Drupal\Console\Core\Style\DrupalStyle;
+use Drupal\Console\Core\Command\Shared\ContainerAwareCommandTrait;
+use Drupal\Console\Core\Utils\StringConverter;
+use Drupal\Console\Extension\Manager;
+use Symfony\Component\EventDispatcher\EventDispatcherInterface;
+use Drupal\Console\Core\Utils\ChainQueue;
+
+class EventSubscriberCommand extends Command
+{
+    use EventsTrait;
+    use ServicesTrait;
+    use ModuleTrait;
+    use ConfirmationTrait;
+    use ContainerAwareCommandTrait;
+
+    /**
+     * @var Manager
+     */
+    protected $extensionManager;
+
+    /**
+     * @var EventSubscriberGenerator
+     */
+    protected $generator;
+
+    /**
+     * @var StringConverter
+     */
+    protected $stringConverter;
+
+    /**
+     * @var EventDispatcherInterface
+     */
+    protected $eventDispatcher;
+
+    /**
+     * @var ChainQueue
+     */
+    protected $chainQueue;
+
+    /**
+     * EventSubscriberCommand constructor.
+     *
+     * @param Manager                  $extensionManager
+     * @param EventSubscriberGenerator $generator
+     * @param StringConverter          $stringConverter
+     * @param EventDispatcherInterface $eventDispatcher
+     * @param ChainQueue               $chainQueue
+     */
+    public function __construct(
+        Manager $extensionManager,
+        EventSubscriberGenerator $generator,
+        StringConverter $stringConverter,
+        EventDispatcherInterface $eventDispatcher,
+        ChainQueue $chainQueue
+    ) {
+        $this->extensionManager = $extensionManager;
+        $this->generator = $generator;
+        $this->stringConverter = $stringConverter;
+        $this->eventDispatcher = $eventDispatcher;
+        $this->chainQueue = $chainQueue;
+        parent::__construct();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function configure()
+    {
+        $this
+            ->setName('generate:event:subscriber')
+            ->setDescription($this->trans('commands.generate.event.subscriber.description'))
+            ->setHelp($this->trans('commands.generate.event.subscriber.description'))
+            ->addOption('module', null, InputOption::VALUE_REQUIRED, $this->trans('commands.common.options.module'))
+            ->addOption(
+                'name',
+                null,
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.generate.service.options.name')
+            )
+            ->addOption(
+                'class',
+                null,
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.generate.service.options.class')
+            )
+            ->addOption(
+                'events',
+                null,
+                InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY,
+                $this->trans('commands.common.options.events')
+            )
+            ->addOption(
+                'services',
+                null,
+                InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY,
+                $this->trans('commands.common.options.services')
+            );
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        // @see use Drupal\Console\Command\Shared\ConfirmationTrait::confirmGeneration
+        if (!$this->confirmGeneration($io)) {
+            return;
+        }
+
+        $module = $input->getOption('module');
+        $name = $input->getOption('name');
+        $class = $input->getOption('class');
+        $events = $input->getOption('events');
+        $services = $input->getOption('services');
+
+        // @see Drupal\Console\Command\Shared\ServicesTrait::buildServices
+        $buildServices = $this->buildServices($services);
+
+        $this->generator->generate($module, $name, $class, $events, $buildServices);
+
+        $this->chainQueue->addCommand('cache:rebuild', ['cache' => 'all']);
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function interact(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        // --module option
+        $module = $input->getOption('module');
+        if (!$module) {
+            // @see Drupal\Console\Command\Shared\ModuleTrait::moduleQuestion
+            $module = $this->moduleQuestion($io);
+            $input->setOption('module', $module);
+        }
+
+        // --service-name option
+        $name = $input->getOption('name');
+        if (!$name) {
+            $name = $io->ask(
+                $this->trans('commands.generate.service.questions.service-name'),
+                sprintf('%s.default', $module)
+            );
+            $input->setOption('name', $name);
+        }
+
+        // --class option
+        $class = $input->getOption('class');
+        if (!$class) {
+            $class = $io->ask(
+                $this->trans('commands.generate.event.subscriber.questions.class'),
+                'DefaultSubscriber'
+            );
+            $input->setOption('class', $class);
+        }
+
+        // --events option
+        $events = $input->getOption('events');
+        if (!$events) {
+            // @see Drupal\Console\Command\Shared\ServicesTrait::servicesQuestion
+            $events = $this->eventsQuestion($io);
+            $input->setOption('events', $events);
+        }
+
+        // --services option
+        $services = $input->getOption('services');
+        if (!$services) {
+            // @see Drupal\Console\Command\Shared\ServicesTrait::servicesQuestion
+            $services = $this->servicesQuestion($io);
+            $input->setOption('services', $services);
+        }
+    }
+}