Files
kiri-gii/GiiCommand.php
T

76 lines
2.2 KiB
PHP
Raw Normal View History

2022-03-17 10:35:14 +08:00
<?php
declare(strict_types=1);
namespace Gii;
2023-11-30 17:02:21 +08:00
use Database\DatabasesProviders;
2022-03-17 10:35:14 +08:00
use Exception;
use Kiri;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
2024-09-03 14:47:29 +08:00
use Symfony\Component\Console\Input\InputOption;
2022-03-17 10:35:14 +08:00
use Symfony\Component\Console\Output\OutputInterface;
/**
* Class Command
* @package Http
*/
class GiiCommand extends Command
{
2023-11-30 17:02:21 +08:00
public string $command = 'sw:gii';
2022-03-17 10:35:14 +08:00
2023-11-30 17:02:21 +08:00
public string $description = './snowflake sw:gii make=model|controller|task|interceptor|limits|middleware name=xxxx';
2022-03-17 10:35:14 +08:00
2023-11-30 17:02:21 +08:00
/**
*
*/
protected function configure()
{
$this->setName('sw:gii')
->addOption('make', 'm', InputArgument::OPTIONAL)
->addOption('table', 't', InputArgument::OPTIONAL)
->addOption('database', 'd', InputArgument::OPTIONAL)
2024-09-03 14:47:29 +08:00
->addOption('all-table', null, InputOption::VALUE_NONE, 'is run daemonize')
2023-11-30 17:02:21 +08:00
->setDescription('php kiri.php sw:gii --table u_user --database users --make model');
}
2022-06-22 16:29:42 +08:00
2023-11-30 17:02:21 +08:00
/**
* @param InputInterface $input
* @param OutputInterface $output
* @return int
* @throws Exception
*/
public function execute(InputInterface $input, OutputInterface $output): int
{
try {
$database = Kiri::getDi()->get(DatabasesProviders::class);
2022-03-17 10:35:14 +08:00
2023-11-30 17:02:21 +08:00
/** @var Gii $gii */
$gii = Kiri::getDi()->get(Gii::class);
if (($db = $input->getOption('database')) != null) {
return count($gii->run($database->get($db), $input));
}
$action = $input->getOption('make');
if (!in_array($action, ['model', 'controller'])) {
return count($gii->run(null, $input));
}
$array = [];
foreach (\config('databases.connections') as $key => $connection) {
$array[$key] = $gii->run($database->get($key), $input);
}
$output->writeln(json_encode($array, JSON_UNESCAPED_UNICODE));
return 0;
} catch (\Throwable $throwable) {
$output->writeln(throwable($throwable));
return 1;
}
}
2022-03-17 10:35:14 +08:00
}