model = new DataRecycleModel(); } /** * 添加 * @throws Throwable */ public function add(): void { if ($this->request->isPost()) { $data = $this->request->post(); if (!$data) { $this->error(__('Parameter %s can not be empty', [''])); } $data = $this->excludeFields($data); $data['controller_as'] = str_ireplace('.php', '', $data['controller'] ?? ''); $data['controller_as'] = strtolower(str_ireplace(['\\', '.'], '/', $data['controller_as'])); $result = false; $this->model->startTrans(); try { // 模型验证 if ($this->modelValidate) { $validate = str_replace("\\model\\", "\\validate\\", get_class($this->model)); if (class_exists($validate)) { $validate = new $validate; if ($this->modelSceneValidate) $validate->scene('add'); $validate->check($data); } } $result = $this->model->save($data); $this->model->commit(); } catch (Throwable $e) { $this->model->rollback(); $this->error($e->getMessage()); } if ($result !== false) { $this->success(__('Added successfully')); } else { $this->error(__('No rows were added')); } } // 放在add方法内,就不需要额外添加权限节点了 $this->success('', [ 'tables' => $this->getTableList(), 'controllers' => $this->getControllerList(), ]); } /** * 编辑 * @param int|string|null $id * @throws Throwable */ public function edit(int|string $id = null): void { $row = $this->model->find($id); if (!$row) { $this->error(__('Record not found')); } if ($this->request->isPost()) { $data = $this->request->post(); if (!$data) { $this->error(__('Parameter %s can not be empty', [''])); } $data = $this->excludeFields($data); $data['controller_as'] = str_ireplace('.php', '', $data['controller'] ?? ''); $data['controller_as'] = strtolower(str_ireplace(['\\', '.'], '/', $data['controller_as'])); $result = false; $this->model->startTrans(); try { // 模型验证 if ($this->modelValidate) { $validate = str_replace("\\model\\", "\\validate\\", get_class($this->model)); if (class_exists($validate)) { $validate = new $validate; if ($this->modelSceneValidate) $validate->scene('edit'); $validate->check($data); } } $result = $row->save($data); $this->model->commit(); } catch (Throwable $e) { $this->model->rollback(); $this->error($e->getMessage()); } if ($result !== false) { $this->success(__('Update successful')); } else { $this->error(__('No rows updated')); } } $this->success('', [ 'row' => $row ]); } protected function getControllerList(): array { $outExcludeController = [ 'Addon.php', 'Ajax.php', 'Module.php', 'Terminal.php', 'Dashboard.php', 'Index.php', 'routine/AdminInfo.php', 'user/MoneyLog.php', 'user/ScoreLog.php', ]; $outControllers = []; $controllers = get_controller_list(); foreach ($controllers as $key => $controller) { if (!in_array($controller, $outExcludeController)) { $outControllers[$key] = $controller; } } return $outControllers; } protected function getTableList(): array { $tablePrefix = config('database.connections.mysql.prefix'); $outExcludeTable = [ // 功能表 'area', 'token', 'captcha', 'admin_group_access', // 无删除功能 'user_money_log', 'user_score_log', ]; $outTables = []; $tables = get_table_list(); $pattern = '/^' . $tablePrefix . '/i'; foreach ($tables as $table => $tableComment) { $table = preg_replace($pattern, '', $table); if (!in_array($table, $outExcludeTable)) { $outTables[$table] = $tableComment; } } return $outTables; } }