SeedRunCommand.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. namespace catcher\command;
  3. use catcher\CatchAdmin;
  4. use think\console\Command;
  5. use think\console\Input;
  6. use think\console\input\Argument;
  7. use think\console\input\Argument as InputArgument;
  8. use think\console\input\Option;
  9. use think\console\input\Option as InputOption;
  10. use think\console\Output;
  11. use think\migration\command\seed\Run;
  12. class SeedRunCommand extends Run
  13. {
  14. protected $module;
  15. protected function configure()
  16. {
  17. // 指令配置
  18. $this->setName('catch-seed:run')
  19. ->setDescription('the catch-seed:run command to Run database seeders')
  20. ->addArgument('module', Argument::REQUIRED, 'seed the module database')
  21. ->addOption('--seed', '-s', InputOption::VALUE_REQUIRED, 'What is the name of the seeder?')
  22. ->setHelp(<<<EOT
  23. The <info>catch-seed:run</info> command runs all available or individual seeders
  24. <info>php think catch-seed:run module</info>
  25. <info>php think catch-seed:run -s UserSeeder</info>
  26. <info>php think catch-seed:run -v</info>
  27. EOT
  28. );
  29. }
  30. protected function execute(Input $input, Output $output)
  31. {
  32. $this->module = strtolower($input->getArgument('module'));
  33. $seed = $input->getOption('seed');
  34. // run the seed(ers)
  35. $start = microtime(true);
  36. $this->seed($seed);
  37. $end = microtime(true);
  38. $this->seeds = null;
  39. $output->writeln('<comment>All Done. Took ' . sprintf('%.4fs', $end - $start) . '</comment>');
  40. }
  41. /**
  42. *
  43. * 获取 seeder path
  44. * @return string
  45. * @param $module
  46. * @date: 2019/12/10 14:01
  47. */
  48. protected function getPath()
  49. {
  50. return CatchAdmin::moduleSeedsDirectory($this->module);
  51. }
  52. }