81 lines
2.3 KiB
PHP

<?php
namespace app\crud\command;
use app\crud\make\AutoMake;
use app\crud\make\make\ControllerMake;
use app\crud\make\make\ModelMake;
use app\crud\make\make\ValidateMake;
use app\crud\make\make\ListMake;
use app\crud\make\make\ReadMake;
use app\crud\make\make\AddMake;
use app\crud\make\make\EditMake;
use think\console\Command;
use think\console\Input;
use think\console\input\Option;
use think\console\Output;
class Crud extends Command
{
protected function configure()
{
$this->setName('auto crud')
->addOption('table', 't', Option::VALUE_OPTIONAL, 'the table name', null)
->addOption('controller', 'c', Option::VALUE_OPTIONAL, 'the controller name', null)
->addOption('name', 'm', Option::VALUE_OPTIONAL, 'the name', null)
->setDescription('auto make crud file');
}
protected function execute(Input $input, Output $output)
{
$table = $input->getOption('table');
if (!$table) {
$output->error("请输入 -t 表名");
exit;
}
$controller = $input->getOption('controller');
if (!$controller) {
$output->error("请输入 -c 控制器名");
exit;
}
$path = 'admin';
$name = $input->getOption('name');
if (!$name) {
$name = '';
}
$make = new AutoMake();
// 执行生成controller策略
$make->executeText(new ControllerMake());
$make->executeCreate($controller, $path, $table);
// 执行生成model策略
$make->executeText(new ModelMake());
$make->executeCreate($table, $path, '');
// 执行生成validate策略
$make->executeText(new ValidateMake());
$make->executeCreate($table, $path, '');
// 执行生成list策略
$make->executeText(new ListMake());
$make->executeCreate($table, $path, $name);
// 执行生成view策略
$make->executeText(new ReadMake());
$make->executeCreate($table, $path, $name);
// 执行生成add策略
$make->executeText(new AddMake());
$make->executeCreate($table, $path, $name);
// 执行生成edit策略
$make->executeText(new EditMake());
$make->executeCreate($table, $path, $name);
$output->info($name . "crud make success");
}
}