modify plugin name
This commit is contained in:
+28
-25
@@ -6,6 +6,7 @@ namespace Gii;
|
||||
|
||||
use Exception;
|
||||
use Kiri;
|
||||
use Kiri\Di\LocalService;
|
||||
use Kiri\Abstracts\Config;
|
||||
use Kiri\Exception\ConfigException;
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
@@ -26,15 +27,19 @@ class GiiCommand extends Command
|
||||
public string $description = './snowflake sw:gii make=model|controller|task|interceptor|limits|middleware name=xxxx';
|
||||
|
||||
|
||||
private LocalService $service;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
protected function configure()
|
||||
{
|
||||
$this->service = Kiri::getDi()->get(LocalService::class);
|
||||
$this->setName('sw:gii')
|
||||
->addOption('make','m', InputArgument::OPTIONAL)
|
||||
->addOption('name','t', InputArgument::OPTIONAL)
|
||||
->addOption('databases','d', InputArgument::OPTIONAL)
|
||||
->addOption('make', 'm', InputArgument::OPTIONAL)
|
||||
->addOption('name', 't', InputArgument::OPTIONAL)
|
||||
->addOption('databases', 'd', InputArgument::OPTIONAL)
|
||||
->setDescription('./snowflake sw:gii make=model|controller|task|interceptor|limits|middleware name=xxxx');
|
||||
}
|
||||
|
||||
@@ -43,34 +48,32 @@ class GiiCommand extends Command
|
||||
* @param InputInterface $input
|
||||
* @param OutputInterface $output
|
||||
* @return int
|
||||
* @throws ConfigException
|
||||
* @throws Exception
|
||||
*/
|
||||
public function execute(InputInterface $input, OutputInterface $output): int
|
||||
{
|
||||
/** @var Gii $gii */
|
||||
$gii = Kiri::app()->get('gii');
|
||||
|
||||
$connections = Kiri::app();
|
||||
if (($db = $input->getOption('databases')) != null) {
|
||||
$gii->run($connections->get($db), $input);
|
||||
try {
|
||||
/** @var Gii $gii */
|
||||
$gii = $this->service->get('gii');
|
||||
if (($db = $input->getOption('databases')) != null) {
|
||||
$gii->run($this->service->get($db), $input);
|
||||
} else {
|
||||
$action = $input->getOption('make');
|
||||
if (!in_array($action, ['model', 'controller'])) {
|
||||
$gii->run(null, $input);
|
||||
} else {
|
||||
$array = [];
|
||||
foreach (Config::get('databases.connections') as $key => $connection) {
|
||||
$array[$key] = $gii->run($this->service->get($key), $input);
|
||||
}
|
||||
$output->writeln(json_encode($array, JSON_UNESCAPED_UNICODE));
|
||||
}
|
||||
}
|
||||
} catch (\Throwable $throwable) {
|
||||
$output->writeln($throwable->getMessage());
|
||||
} finally {
|
||||
return 1;
|
||||
}
|
||||
|
||||
$action = $input->getOption('make');
|
||||
if (!in_array($action, ['model', 'controller'])) {
|
||||
$gii->run(null, $input);
|
||||
return 1;
|
||||
}
|
||||
|
||||
$array = [];
|
||||
foreach (Config::get('databases.connections') as $key => $connection) {
|
||||
$array[$key] = $gii->run($connections->get($key), $input);
|
||||
}
|
||||
|
||||
$output->writeln(json_encode($array, JSON_UNESCAPED_UNICODE));
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user