From b9b33772b9066f5dd0cf2841bf4803c5e8b0d1c6 Mon Sep 17 00:00:00 2001 From: zhaoxiang Date: Wed, 24 Feb 2021 18:36:13 +0800 Subject: [PATCH] =?UTF-8?q?added=20=E6=96=B0=E5=A2=9E=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/util/AutoBuild.php | 147 +++++++++++++++++++++++++++++++++++++++-- install/control.tpl | 80 ++++++++++++++++++++++ 2 files changed, 221 insertions(+), 6 deletions(-) create mode 100644 install/control.tpl diff --git a/app/util/AutoBuild.php b/app/util/AutoBuild.php index 05e4274..127ca69 100644 --- a/app/util/AutoBuild.php +++ b/app/util/AutoBuild.php @@ -8,6 +8,9 @@ namespace app\util; +use app\model\AdminMenu; +use think\facade\Db; + class AutoBuild { private $config = [ @@ -22,16 +25,34 @@ class AutoBuild { 'fid' => 0 // 父级ID ]; - private $basePath = ''; - + /** + * 自动构建 + * @param array $config + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author zhaoxiang + */ public function run($config = []) { $this->config = array_merge($this->config, $config); - if ($this->config['module'] == 1) { + if ($this->config['model'] == 1) { + $this->buildModel(); + if ($this->config['table'] == 1) { + $this->createTable(); + } } if ($this->config['control'] && $this->config['name']) { $this->buildControl(); + + if ($this->config['menu'] && $this->config['module'] == 1) { + $this->buildMenu(); + } + + if ($this->config['route'] && $this->config['module'] == 1) { + $this->buildRoute(); + } } } @@ -46,23 +67,137 @@ class AutoBuild { return strtolower(preg_replace('/([a-z])([A-Z])/', "$1" . $separator . "$2", $camelCaps)); } + /** + * 构建控制器 + * @author zhaoxiang + */ private function buildControl() { + $tplPath = root_path() . 'install' . DIRECTORY_SEPARATOR; + if ($this->config['module'] == 1) { + $module = 'admin'; + } else { + $module = 'api'; + } + $controlStr = str_replace( + ['{$MODULE}', '{$NAME}'], + [$module, $this->config['name']], + file_get_contents($tplPath . 'control.tpl') + ); + file_put_contents( + base_path() . 'controller' . DIRECTORY_SEPARATOR . $module . DIRECTORY_SEPARATOR . $this->config['name'] . '.php', + $controlStr + ); } + /** + * 构建模型 + * @author zhaoxiang + */ private function buildModel() { + $modelStr = '' . PHP_EOL; + $modelStr .= ' */' . PHP_EOL; + $modelStr .= 'namespace app\model;' . PHP_EOL; + $modelStr .= 'class ' . $this->config['modelName'] . ' extends Base {' . PHP_EOL; + $modelStr .= '}' . PHP_EOL; + file_put_contents( + base_path() . 'model' . DIRECTORY_SEPARATOR . $this->config['modelName'] . '.php', + $modelStr + ); } + /** + * 构建表 + * @author zhaoxiang + */ private function createTable() { - + $tableName = $this->unCamelize($this->config['modelName']); + $cmd = "CREATE TABLE `{$tableName}` (`id` int NOT NULL AUTO_INCREMENT,PRIMARY KEY (`id`)) COMMENT='由ApiAdmin自动构建';"; + Db::execute($cmd); } + /** + * 构建菜单 + * @author zhaoxiang + */ private function buildMenu() { - + $menus = [ + [ + 'title' => '新增', + 'fid' => $this->config['fid'], + 'url' => "admin/{$this->config['name']}/add", + 'auth' => 1, + 'sort' => 0, + 'show' => 1, + 'icon' => '', + 'level' => 3, + 'component' => '', + 'router' => '', + 'log' => 1, + 'permission' => 1, + 'method' => 2 + ], + [ + 'title' => '编辑', + 'fid' => $this->config['fid'], + 'url' => "admin/{$this->config['name']}/edit", + 'auth' => 1, + 'sort' => 0, + 'show' => 1, + 'icon' => '', + 'level' => 3, + 'component' => '', + 'router' => '', + 'log' => 1, + 'permission' => 1, + 'method' => 2 + ], + [ + 'title' => '删除', + 'fid' => $this->config['fid'], + 'url' => "admin/{$this->config['name']}/del", + 'auth' => 1, + 'sort' => 0, + 'show' => 1, + 'icon' => '', + 'level' => 3, + 'component' => '', + 'router' => '', + 'log' => 1, + 'permission' => 1, + 'method' => 1 + ], + [ + 'title' => '列表', + 'fid' => $this->config['fid'], + 'url' => "admin/{$this->config['name']}/index", + 'auth' => 1, + 'sort' => 0, + 'show' => 1, + 'icon' => '', + 'level' => 3, + 'component' => '', + 'router' => '', + 'log' => 1, + 'permission' => 1, + 'method' => 1 + ] + ]; + (new AdminMenu())->insertAll($menus); } + /** + * 构建路由 + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author zhaoxiang + */ private function buildRoute() { - + RouterTool::buildAdminRouter(); } } diff --git a/install/control.tpl b/install/control.tpl new file mode 100644 index 0000000..6bad7ed --- /dev/null +++ b/install/control.tpl @@ -0,0 +1,80 @@ + + */ + +namespace app\controller\{$MODULE}; + +use app\model\{$MODEL_NAME}; +use app\util\ReturnCode; +use think\Response; + +class {$NAME} extends Base { + /** + * ȡ + * @return \think\Response + * @throws \think\db\exception\DbException + * @author apiadmin + */ + public function index(): Response { + $limit = $this->request->get('size', config('apiadmin.ADMIN_LIST_DEFAULT')); + $start = $this->request->get('page', 1); + + $obj = new {$MODEL_NAME}(); + $listObj = $obj->paginate(['page' => $start, 'list_rows' => $limit])->toArray(); + + return $this->buildSuccess([ + 'list' => $listObj['data'], + 'count' => $listObj['total'] + ]); + } + + /** + * + * @return Response + * @author apiadmin + */ + public function add(): Response { + $postData = $this->request->post(); + $res = {$MODEL_NAME}::create($postData); + if ($res === false) { + return $this->buildFailed(ReturnCode::DB_SAVE_ERROR); + } + + return $this->buildSuccess(); + } + + /** + * ༭ + * @return Response + * @author apiadmin + */ + public function edit(): Response { + $postData = $this->request->post(); + $res = {$MODEL_NAME}::update($postData); + if ($res === false) { + return $this->buildFailed(ReturnCode::DB_SAVE_ERROR); + } + + return $this->buildSuccess(); + } + + /** + * ɾ + * @return Response + * @author apiadmin + */ + public function del(): Response { + $id = $this->request->get('id'); + if (!$id) { + return $this->buildFailed(ReturnCode::EMPTY_PARAMS, 'ȱٱҪ'); + } + + // 봦ɾ + {$MODEL_NAME}::destroy(['id' => $id]); + + return $this->buildSuccess(); + } +}