extensionManager = $extensionManager; $this->generator = $generator; $this->stringConverter = $stringConverter; $this->chainQueue = $chainQueue; parent::__construct(); } /** * {@inheritdoc} */ protected function configure() { $this ->setName('generate:service') ->setDescription($this->trans('commands.generate.service.description')) ->setHelp($this->trans('commands.generate.service.description')) ->addOption( 'module', null, InputOption::VALUE_REQUIRED, $this->trans('commands.common.options.module') ) ->addOption( 'name', null, InputOption::VALUE_REQUIRED, $this->trans('commands.generate.service.options.name') ) ->addOption( 'class', null, InputOption::VALUE_REQUIRED, $this->trans('commands.generate.service.options.class') ) ->addOption( 'interface', null, InputOption::VALUE_NONE, $this->trans('commands.common.service.options.interface') ) ->addOption( 'interface_name', null, InputOption::VALUE_OPTIONAL, $this->trans('commands.common.service.options.interface_name') ) ->addOption( 'services', null, InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, $this->trans('commands.common.options.services') ) ->addOption( 'path_service', null, InputOption::VALUE_OPTIONAL, $this->trans('commands.generate.service.options.path') ); } /** * {@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 1; } $module = $input->getOption('module'); $name = $input->getOption('name'); $class = $input->getOption('class'); $interface = $input->getOption('interface'); $interface_name = $input->getOption('interface_name'); $services = $input->getOption('services'); $path_service = $input->getOption('path_service'); $available_services = $this->container->getServiceIds(); if (in_array($name, array_values($available_services))) { throw new \Exception( sprintf( $this->trans('commands.generate.service.messages.service-already-taken'), $module ) ); } // @see Drupal\Console\Command\Shared\ServicesTrait::buildServices $build_services = $this->buildServices($services); $this->generator->generate($module, $name, $class, $interface, $interface_name, $build_services, $path_service); $this->chainQueue->addCommand('cache:rebuild', ['cache' => 'all']); return 0; } /** * {@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); } //--name option $name = $input->getOption('name'); if (!$name) { $name = $io->ask( $this->trans('commands.generate.service.questions.service-name'), $module.'.default' ); $input->setOption('name', $name); } // --class option $class = $input->getOption('class'); if (!$class) { $class = $io->ask( $this->trans('commands.generate.service.questions.class'), 'DefaultService' ); $input->setOption('class', $class); } // --interface option $interface = $input->getOption('interface'); if (!$interface) { $interface = $io->confirm( $this->trans('commands.generate.service.questions.interface'), true ); $input->setOption('interface', $interface); } // --interface_name option $interface_name = $input->getOption('interface_name'); if ($interface && !$interface_name) { $interface_name = $io->askEmpty( $this->trans('commands.generate.service.questions.interface_name') ); $input->setOption('interface_name', $interface_name); } // --services option $services = $input->getOption('services'); if (!$services) { // @see Drupal\Console\Command\Shared\ServicesTrait::servicesQuestion $services = $this->servicesQuestion($io); $input->setOption('services', $services); } // --path_service option $path_service = $input->getOption('path_service'); if (!$path_service) { $path_service = $io->ask( $this->trans('commands.generate.service.questions.path'), '/modules/custom/' . $module . '/src/' ); $input->setOption('path_service', $path_service); } } }