
| Current Path : /var/www/html/strat/vendor/chi-teck/drupal-code-generator/src/Command/Drush/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/strat/vendor/chi-teck/drupal-code-generator/src/Command/Drush/SymfonyCommand.php |
<?php
declare(strict_types=1);
namespace DrupalCodeGenerator\Command\Drush;
use DrupalCodeGenerator\Application;
use DrupalCodeGenerator\Asset\AssetCollection;
use DrupalCodeGenerator\Attribute\Generator;
use DrupalCodeGenerator\Command\BaseGenerator;
use DrupalCodeGenerator\GeneratorType;
use DrupalCodeGenerator\Utils;
use DrupalCodeGenerator\Validator\RegExp;
#[Generator(
name: 'drush:symfony-command',
description: 'Generates Symfony console command',
aliases: ['symfony-command'],
templatePath: Application::TEMPLATE_PATH . '/Drush/_symfony-command',
type: GeneratorType::MODULE_COMPONENT,
)]
final class SymfonyCommand extends BaseGenerator {
/**
* {@inheritdoc}
*/
protected function generate(array &$vars, AssetCollection $assets): void {
$ir = $this->createInterviewer($vars);
$vars['machine_name'] = $ir->askMachineName();
$vars['name'] = $ir->askName();
$command_name_validator = new RegExp('/^[a-z][a-z0-9-_:]*[a-z0-9]$/', 'The value is not correct command name.');
$vars['command']['name'] = $ir->ask('Command name', '{machine_name}:example', $command_name_validator);
$vars['command']['description'] = $ir->ask('Command description');
$sub_names = \explode(':', $vars['command']['name']);
$short_name = \array_pop($sub_names);
$alias_validator = new RegExp('/^[a-z0-9_-]+$/', 'The value is not correct alias name.');
$vars['command']['alias'] = $ir->ask('Command alias', $short_name, $alias_validator);
$vars['class'] = $ir->askClass('Class', Utils::camelize($short_name) . 'Command');
if ($ir->confirm('Would you like to run the command with Drush')) {
// Make service name using the following guides.
// `foo:example` -> `foo.example` (not `foo:foo_example`)
// `foo` -> `foo.foo` (not `foo`)
$service_name = Utils::removePrefix($vars['command']['name'], $vars['machine_name'] . ':');
if (!$service_name) {
$service_name = $vars['command']['name'];
}
$vars['service_name'] = $vars['machine_name'] . '.' . \str_replace(':', '_', $service_name);
$vars['services'] = $ir->askServices(FALSE);
$assets->addServicesFile('drush.services.yml')->template('services.twig');
}
$assets->addFile('src/Command/{class}.php', 'command.twig');
}
}