error('只允许访问本地或官方代码!'); } } /** * 读取文件内容 */ public function get() { $filename = decode(input('encode', '0')); if (!ModuleService::checkAllowDownload($filename)) { $this->error('下载的文件不在认证规则中!'); } if (file_exists($realname = $this->app->getRootPath() . $filename)) { $this->success('读取文件内容成功!', [ 'content' => base64_encode(file_get_contents($realname)), ]); } else { $this->error('读取文件内容失败!'); } } /** * 读取文件列表 */ public function node() { $this->success('获取文件列表成功!', ModuleService::getChanges( json_decode($this->request->post('rules', '[]', ''), true), json_decode($this->request->post('ignore', '[]', ''), true) )); } /** * 获取模块信息 */ public function version() { $this->success('获取模块信息成功!', ModuleService::getModules()); } }