title = '系统模块管理'; $this->modules = ModuleService::instance()->change(); $this->fetch(); } /** * 安装更新模块 * @auth true */ public function install() { $data = $this->_vali(['name.require' => '模块名称不能为空!']); [$state, $message] = ModuleService::instance()->install($data['name']); $state ? $this->success($message) : $this->error($message); } /** * 查看模块更新 * @auth true */ public function change() { $data = $this->_vali(['name.require' => '模块名称不能为空!']); $modules = ModuleService::instance()->online(); $locals = ModuleService::instance()->getModules(); if (isset($modules[$data['name']])) { $this->module = $modules[$data['name']]; $this->current = $locals[$data['name']] ?? []; $pattern = "|^(\d{4})\.(\d{2})\.(\d{2})\.(\d+)$|"; $this->module['change'] = array_reverse($this->module['change']); foreach ($this->module['change'] as $version => &$change) { $change = ['content' => $change, 'version' => preg_replace($pattern, '$1年$2月$3日 第 $4 次更新', $version)]; } $this->fetch(); } else { $this->error('未查询到模块更新记录!'); } } }