Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console / src / Command / Generate / PluginFieldWidgetCommand.php
index 48618defd1637678b263bedca7fc75b5c0f19450..d057d9df7ba42ca633c820aec80c9d666beb56cd 100644 (file)
@@ -7,16 +7,15 @@
 
 namespace Drupal\Console\Command\Generate;
 
+use Drupal\Console\Utils\Validator;
 use Symfony\Component\Console\Input\InputInterface;
 use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Output\OutputInterface;
 use Drupal\Console\Generator\PluginFieldWidgetGenerator;
 use Drupal\Console\Command\Shared\ModuleTrait;
 use Drupal\Console\Command\Shared\ConfirmationTrait;
-use Symfony\Component\Console\Command\Command;
-use Drupal\Console\Core\Style\DrupalStyle;
+use Drupal\Console\Core\Command\Command;
 use Drupal\Console\Extension\Manager;
-use Drupal\Console\Core\Command\Shared\CommandTrait;
 use Drupal\Console\Core\Utils\StringConverter;
 use Drupal\Console\Core\Utils\ChainQueue;
 use Drupal\Core\Field\FieldTypePluginManager;
@@ -30,16 +29,15 @@ class PluginFieldWidgetCommand extends Command
 {
     use ModuleTrait;
     use ConfirmationTrait;
-    use CommandTrait;
 
     /**
- * @var Manager
-*/
    * @var Manager
+     */
     protected $extensionManager;
 
     /**
- * @var PluginFieldWidgetGenerator
-*/
    * @var PluginFieldWidgetGenerator
+     */
     protected $generator;
 
     /**
@@ -48,13 +46,13 @@ class PluginFieldWidgetCommand extends Command
     protected $stringConverter;
 
     /**
- * @var Validator
-*/
    * @var Validator
+     */
     protected $validator;
 
     /**
- * @var FieldTypePluginManager
-*/
    * @var FieldTypePluginManager
+     */
     protected $fieldTypePluginManager;
 
     /**
@@ -69,6 +67,7 @@ class PluginFieldWidgetCommand extends Command
      * @param Manager                    $extensionManager
      * @param PluginFieldWidgetGenerator $generator
      * @param StringConverter            $stringConverter
+     * @param Validator                  $validator
      * @param FieldTypePluginManager     $fieldTypePluginManager
      * @param ChainQueue                 $chainQueue
      */
@@ -76,12 +75,14 @@ class PluginFieldWidgetCommand extends Command
         Manager $extensionManager,
         PluginFieldWidgetGenerator $generator,
         StringConverter $stringConverter,
+        Validator $validator,
         FieldTypePluginManager $fieldTypePluginManager,
         ChainQueue $chainQueue
     ) {
         $this->extensionManager = $extensionManager;
         $this->generator = $generator;
         $this->stringConverter = $stringConverter;
+        $this->validator = $validator;
         $this->fieldTypePluginManager = $fieldTypePluginManager;
         $this->chainQueue = $chainQueue;
         parent::__construct();
@@ -93,7 +94,12 @@ class PluginFieldWidgetCommand extends Command
             ->setName('generate:plugin:fieldwidget')
             ->setDescription($this->trans('commands.generate.plugin.fieldwidget.description'))
             ->setHelp($this->trans('commands.generate.plugin.fieldwidget.help'))
-            ->addOption('module', null, InputOption::VALUE_REQUIRED, $this->trans('commands.common.options.module'))
+            ->addOption(
+                'module',
+                null,
+                InputOption::VALUE_REQUIRED,
+                $this->trans('commands.common.options.module')
+            )
             ->addOption(
                 'class',
                 null,
@@ -117,7 +123,8 @@ class PluginFieldWidgetCommand extends Command
                 null,
                 InputOption::VALUE_OPTIONAL,
                 $this->trans('commands.generate.plugin.fieldwidget.options.field-type')
-            );
+            )
+            ->setAliases(['gpfw']);
     }
 
     /**
@@ -125,20 +132,24 @@ class PluginFieldWidgetCommand extends Command
      */
     protected function execute(InputInterface $input, OutputInterface $output)
     {
-        $io = new DrupalStyle($input, $output);
-
-        // @see use Drupal\Console\Command\Shared\ConfirmationTrait::confirmGeneration
-        if (!$this->confirmGeneration($io)) {
+        // @see use Drupal\Console\Command\Shared\ConfirmationTrait::confirmOperation
+        if (!$this->confirmOperation()) {
             return 1;
         }
 
         $module = $input->getOption('module');
-        $class_name = $input->getOption('class');
+        $class_name = $this->validator->validateClassName($input->getOption('class'));
         $label = $input->getOption('label');
         $plugin_id = $input->getOption('plugin-id');
         $field_type = $input->getOption('field-type');
 
-        $this->generator->generate($module, $class_name, $label, $plugin_id, $field_type);
+        $this->generator->generate([
+            'module' => $module,
+            'class_name' => $class_name,
+            'label' => $label,
+            'plugin_id' => $plugin_id,
+            'field_type' => $field_type,
+        ]);
 
         $this->chainQueue->addCommand('cache:rebuild', ['cache' => 'discovery']);
 
@@ -147,22 +158,18 @@ class PluginFieldWidgetCommand extends Command
 
     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);
-        }
+        $this->getModuleOption();
 
         // --class option
         $class_name = $input->getOption('class');
         if (!$class_name) {
-            $class_name = $io->ask(
+            $class_name = $this->getIo()->ask(
                 $this->trans('commands.generate.plugin.fieldwidget.questions.class'),
-                'ExampleFieldWidget'
+                'ExampleFieldWidget',
+                function ($class_name) {
+                    return $this->validator->validateClassName($class_name);
+                }
             );
             $input->setOption('class', $class_name);
         }
@@ -170,7 +177,7 @@ class PluginFieldWidgetCommand extends Command
         // --plugin label option
         $label = $input->getOption('label');
         if (!$label) {
-            $label = $io->ask(
+            $label = $this->getIo()->ask(
                 $this->trans('commands.generate.plugin.fieldwidget.questions.label'),
                 $this->stringConverter->camelCaseToHuman($class_name)
             );
@@ -180,7 +187,7 @@ class PluginFieldWidgetCommand extends Command
         // --plugin-id option
         $plugin_id = $input->getOption('plugin-id');
         if (!$plugin_id) {
-            $plugin_id = $io->ask(
+            $plugin_id = $this->getIo()->ask(
                 $this->trans('commands.generate.plugin.fieldwidget.questions.plugin-id'),
                 $this->stringConverter->camelCaseToUnderscore($class_name)
             );
@@ -198,7 +205,7 @@ class PluginFieldWidgetCommand extends Command
                 }
             }
 
-            $field_type  = $io->choice(
+            $field_type  = $this->getIo()->choice(
                 $this->trans('commands.generate.plugin.fieldwidget.questions.field-type'),
                 $field_type_options
             );