diff --git a/extend/catcher/command/Tools/CreateSeedCommand.php b/extend/catcher/command/Tools/CreateSeedCommand.php new file mode 100644 index 0000000..3fd430b --- /dev/null +++ b/extend/catcher/command/Tools/CreateSeedCommand.php @@ -0,0 +1,72 @@ +setName('create:seed') + ->addArgument('table', Argument::REQUIRED, 'export tables') + ->addOption('module', '-m', Option::VALUE_REQUIRED, 'module name') + ->setDescription('Just for catchAdmin export data'); + } + + protected function execute(Input $input, Output $output) + { + $table = $input->getArgument('table'); + $module = $input->getOption('module'); + + if ($module) { + $data = Db::name($table)->where('deleted_at', 0) + // ->where('module', $module) + ->select() + ->toArray(); + + + } else { + $data = Db::name($table)->where('deleted_at', 0) + ->select() + ->toArray(); + } + + if ($module) { + $data = var_export($data, true) . ';'; + $this->exportSeed($data,$table, $module); + } else { + file_put_contents(root_path() . DIRECTORY_SEPARATOR . $table . '.php', "info('succeed!'); + } + + protected function exportSeed($data,$table, $module) + { + $stub = file_get_contents(dirname(__DIR__) . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'seed.stub'); + + $model = Str::studly($table); + $class = Str::studly($table) . 'Seed'; + + $stub = str_replace('{CLASS}', $class, $stub); + $stub = str_replace('{MODULE}', $module, $stub); + $stub = str_replace('{MODEL}', $model, $stub); + + file_put_contents(CatchAdmin::moduleSeedsDirectory($module) . $class .'.php', str_replace('{DATA}', $data, $stub)); + } +} + diff --git a/extend/catcher/command/stubs/seed.stub b/extend/catcher/command/stubs/seed.stub index 035c561..1ae1c8e 100644 --- a/extend/catcher/command/stubs/seed.stub +++ b/extend/catcher/command/stubs/seed.stub @@ -6,12 +6,12 @@ // +---------------------------------------------------------------------- // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt ) // +---------------------------------------------------------------------- -// | Author: JaguarJack [ njphper@gmail.com ] +// | Author: UCToo [ contact@uctoo.com ] // +---------------------------------------------------------------------- use think\migration\Seeder; -class SeederClass extends Seeder +class {CLASS} extends Seeder { /** * Run Method. @@ -23,6 +23,10 @@ class SeederClass extends Seeder */ public function run() { + $data = {DATA} + foreach ($data as $item) { + \catchAdmin\{MODULE}\model\{MODEL}::create($item); + } } } \ No newline at end of file