extensionManager = $extensionManager; $this->generator = $generator; $this->stringConverter = $stringConverter; $this->validator = $validator; $this->routeProvider = $routeProvider; $this->chainQueue = $chainQueue; parent::__construct(); } protected function configure() { $this ->setName('generate:controller') ->setDescription($this->trans('commands.generate.controller.description')) ->setHelp($this->trans('commands.generate.controller.help')) ->addOption( 'module', null, InputOption::VALUE_REQUIRED, $this->trans('commands.common.options.module') ) ->addOption( 'class', null, InputOption::VALUE_OPTIONAL, $this->trans('commands.generate.controller.options.class') ) ->addOption( 'routes', null, InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, $this->trans('commands.generate.controller.options.routes') ) ->addOption( 'services', null, InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, $this->trans('commands.common.options.services') ) ->addOption( 'test', null, InputOption::VALUE_NONE, $this->trans('commands.generate.controller.options.test') ) ->setAliases(['gcon']); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { // @see use Drupal\Console\Command\Shared\ConfirmationTrait::confirmOperation if (!$this->confirmOperation()) { return 1; } $module = $input->getOption('module'); $class = $this->validator->validateControllerName($input->getOption('class')); $routes = $input->getOption('routes'); $test = $input->getOption('test'); $services = $input->getOption('services'); $routes = $this->inlineValueAsArray($routes); $input->setOption('routes', $routes); // @see use Drupal\Console\Command\Shared\ServicesTrait::buildServices $build_services = $this->buildServices($services); //$this->generator->setLearning($learning); $this->generator->generate([ 'module' => $module, 'class_name' => $class, 'routes' => $routes, 'test' => $test, 'services' => $build_services ]); // Run cache rebuild to see changes in Web UI $this->chainQueue->addCommand('router:rebuild', []); return 0; } /** * {@inheritdoc} */ protected function interact(InputInterface $input, OutputInterface $output) { // --module option $module = $this->getModuleOption(); // --class option $class = $input->getOption('class'); if (!$class) { $class = $this->getIo()->ask( $this->trans('commands.generate.controller.questions.class'), 'DefaultController', function ($class) { return $this->validator->validateControllerName($class); } ); $input->setOption('class', $class); } $routes = $input->getOption('routes'); if (!$routes) { while (true) { $title = $this->getIo()->askEmpty( $this->trans('commands.generate.controller.questions.title'), '', function ($title) use ($routes) { if ($routes && empty(trim($title))) { return false; } if (!$routes && empty(trim($title))) { throw new \InvalidArgumentException( $this->trans( 'commands.generate.controller.messages.title-empty' ) ); } if (in_array($title, array_column($routes, 'title'))) { throw new \InvalidArgumentException( sprintf( $this->trans( 'commands.generate.controller.messages.title-already-added' ), $title ) ); } return $title; } ); if ($title === '') { break; } $method = $this->getIo()->ask( $this->trans('commands.generate.controller.questions.method'), 'hello', function ($method) use ($routes) { if (in_array($method, array_column($routes, 'method'))) { throw new \InvalidArgumentException( sprintf( $this->trans( 'commands.generate.controller.messages.method-already-added' ), $method ) ); } return $method; } ); $path = $this->getIo()->ask( $this->trans('commands.generate.controller.questions.path'), sprintf( '/%s/'.($method!='hello'?$method:'hello/{name}'), $module ), function ($path) use ($routes) { if (count($this->routeProvider->getRoutesByPattern($path)) > 0 || in_array($path, array_column($routes, 'path')) ) { throw new \InvalidArgumentException( sprintf( $this->trans( 'commands.generate.controller.messages.path-already-added' ), $path ) ); } return $path; } ); $classMachineName = $this->stringConverter->camelCaseToMachineName($class); $routeName = $module . '.' . $classMachineName . '_' . $method; if ($this->routeProvider->getRoutesByNames([$routeName]) || in_array($routeName, $routes) ) { $routeName .= '_' . rand(0, 100); } $routes[] = [ 'title' => $title, 'name' => $routeName, 'method' => $method, 'path' => $path ]; } $input->setOption('routes', $routes); } // --test option $test = $input->getOption('test'); if (!$test) { $test = $this->getIo()->confirm( $this->trans('commands.generate.controller.questions.test'), true ); $input->setOption('test', $test); } // --services option // @see use Drupal\Console\Command\Shared\ServicesTrait::servicesQuestion $services = $this->servicesQuestion(); $input->setOption('services', $services); } }