ModelGeneratorCommand.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. namespace catcher\command;
  3. use catcher\CatchAdmin;
  4. use catcher\generate\factory\Model;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\input\Argument;
  8. use think\console\input\Option;
  9. use think\console\input\Option as InputOption;
  10. use think\console\Output;
  11. use think\facade\Db;
  12. use think\helper\Str;
  13. class ModelGeneratorCommand extends Command
  14. {
  15. protected function configure()
  16. {
  17. $this->setName('create:model')
  18. ->addArgument('module', Argument::REQUIRED, 'module name')
  19. ->addArgument('model', Argument::REQUIRED, 'model name')
  20. ->addOption('softDelete', '-d', Option::VALUE_REQUIRED, 'soft delete')
  21. ->setDescription('create model');
  22. }
  23. protected function execute(Input $input, Output $output)
  24. {
  25. $model = ucfirst($input->getArgument('model'));
  26. $module = strtolower($input->getArgument('module'));
  27. $softDelete = $input->getOption('softDelete');
  28. $params = [
  29. 'model' => 'catchAdmin\\'.$module.'\\model\\'.$model,
  30. 'table' => Str::snake($model),
  31. 'extra' => [
  32. 'soft_delete' => $softDelete ? true : false,
  33. ],
  34. ];
  35. $modelFile= CatchAdmin::getModuleModelDirectory($module) . $model . '.php';
  36. $asn = 'Y';
  37. if (file_exists($modelFile)) {
  38. $asn = $this->output->ask($this->input, "Model File {$model} already exists.Are you sure to overwrite, the content will be lost(Y/N)");
  39. }
  40. if (strtolower($asn) == 'n') {
  41. exit(0);
  42. }
  43. (new Model())->done($params);
  44. if (file_exists($modelFile)) {
  45. $output->info(sprintf('%s Create Successfully!', $modelFile));
  46. } else {
  47. $output->error(sprintf('%s Create Failed!', $modelFile));
  48. }
  49. }
  50. }