ExportDataCommand.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. declare (strict_types = 1);
  3. namespace catcher\command\Tools;
  4. use catcher\CatchAdmin;
  5. use catcher\facade\Http;
  6. use catcher\Tree;
  7. use catcher\Utils;
  8. use think\console\Command;
  9. use think\console\Input;
  10. use think\console\input\Argument;
  11. use think\console\input\Option;
  12. use think\console\Output;
  13. use think\facade\Db;
  14. class ExportDataCommand extends Command
  15. {
  16. protected $table;
  17. protected function configure()
  18. {
  19. // 指令配置
  20. $this->setName('export')
  21. ->addArgument('table', Argument::REQUIRED, 'export tables')
  22. ->addOption('pid', '-p', Option::VALUE_REQUIRED, 'parent level name')
  23. ->addOption('module', '-m', Option::VALUE_REQUIRED, 'module name')
  24. ->setDescription('Just for catchAdmin export data');
  25. }
  26. protected function execute(Input $input, Output $output)
  27. {
  28. //$table = // Utils::tablePrefix() .
  29. $table = $input->getArgument('table');
  30. $parent = $input->getOption('pid');
  31. $module = $input->getOption('module');
  32. if ($module) {
  33. $data = Db::name($table)->where('deleted_at', 0)
  34. ->where('module', $module)
  35. ->select()
  36. ->toArray();
  37. } else {
  38. $data = Db::name($table)->where('deleted_at', 0)
  39. ->select()
  40. ->toArray();
  41. }
  42. if ($parent) {
  43. $data = Tree::done($data, 0, $parent);
  44. }
  45. if ($module) {
  46. $data = 'return ' . var_export($data, true) . ';';
  47. $this->exportSeed($data, $module);
  48. } else {
  49. file_put_contents(root_path() . DIRECTORY_SEPARATOR . $table . '.php', "<?php\r\n return " . var_export($data, true) . ';');
  50. }
  51. $output->info('succeed!');
  52. }
  53. protected function exportSeed($data, $module)
  54. {
  55. $stub = file_get_contents(dirname(__DIR__) . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'permissionSeed.stub');
  56. $class = ucfirst($module) . 'MenusSeed';
  57. $stub = str_replace('{CLASS}', $class, $stub);
  58. file_put_contents(CatchAdmin::moduleSeedsDirectory($module) . $class .'.php', str_replace('{DATA}', $data, $stub));
  59. }
  60. }