diff --git a/app/admin/controller/Auth.php b/app/admin/controller/Auth.php index add8606c2..a35154550 100644 --- a/app/admin/controller/Auth.php +++ b/app/admin/controller/Auth.php @@ -137,6 +137,7 @@ class Auth extends Controller if ($result) { $map = $this->_vali(['auth.require#id' => '权限ID不能为空!']); $this->app->db->name('SystemAuthNode')->where($map)->delete(); + sysoplog('系统权限管理', "删除系统权限[{$map['auth']}]及授权配置"); $this->success("权限删除成功!"); } else { $this->error("权限删除失败,请稍候再试!"); diff --git a/app/admin/controller/Config.php b/app/admin/controller/Config.php index 61d1a4451..102aca834 100644 --- a/app/admin/controller/Config.php +++ b/app/admin/controller/Config.php @@ -30,13 +30,6 @@ use think\admin\storage\TxcosStorage; */ class Config extends Controller { - - /** - * 绑定数据表 - * @var string - */ - private $table = 'SystemConfig'; - /** * 系统参数配置 * @auth true @@ -74,6 +67,7 @@ class Config extends Controller SystemService::instance()->setRuntime(null, [$xpath => 'admin']); } foreach ($this->request->post() as $name => $value) sysconf($name, $value); + sysoplog('系统配置管理', "修改系统参数配置"); $this->success('修改系统参数成功!', sysuri("{$xpath}/index/index") . '#' . url("{$xpath}/config/index")); } } @@ -102,6 +96,7 @@ class Config extends Controller $post['storage']['allow_exts'] = join(',', $exts); } foreach ($post as $name => $value) sysconf($name, $value); + sysoplog('系统配置管理', "修改文件存储参数"); $this->success('修改文件存储成功!'); } } diff --git a/app/admin/controller/Index.php b/app/admin/controller/Index.php index 57469e07f..b8a950323 100644 --- a/app/admin/controller/Index.php +++ b/app/admin/controller/Index.php @@ -98,6 +98,7 @@ class Index extends Controller $this->error('旧密码验证失败,请重新输入!'); } if (data_save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) { + sysoplog('系统用户管理', "修改用户[{$user['id']}]密码成功"); $this->success('密码修改成功,下次请使用新密码登录!', ''); } else { $this->error('密码修改失败,请稍候再试!'); diff --git a/app/admin/controller/User.php b/app/admin/controller/User.php index 8b24fc5ed..49133e08a 100644 --- a/app/admin/controller/User.php +++ b/app/admin/controller/User.php @@ -103,6 +103,7 @@ class User extends Controller 'repassword.confirm:password' => '两次输入的密码不一致!', ]); if (data_save($this->table, ['id' => $data['id'], 'password' => md5($data['password'])], 'id')) { + sysoplog('系统用户管理', "修改用户[{$data['id']}]密码成功"); $this->success('密码修改成功,请使用新密码登录!', ''); } else { $this->error('密码修改失败,请稍候再试!'); @@ -136,7 +137,8 @@ class User extends Controller $data['authorize'] = arr2str($data['authorize'] ?? []); } else { $data['authorize'] = str2arr($data['authorize'] ?? ''); - $this->authorizes = $this->app->db->name('SystemAuth')->where(['status' => 1])->order('sort desc,id desc')->select()->toArray(); + $query = $this->app->db->name('SystemAuth')->where(['status' => 1]); + $this->authorizes = $query->order('sort desc,id desc')->select()->toArray(); } } diff --git a/app/admin/controller/api/Plugs.php b/app/admin/controller/api/Plugs.php index 4d06045a0..fc85f5f0f 100644 --- a/app/admin/controller/api/Plugs.php +++ b/app/admin/controller/api/Plugs.php @@ -47,11 +47,11 @@ class Plugs extends Controller { if (AdminService::instance()->isSuper()) if (input('state')) { SystemService::instance()->setRuntime('product'); - sysoplog('切换运行模式', '由开发模式切换为产品模式'); + sysoplog('系统运维管理', '由开发模式切换为产品模式'); $this->success('已切换为产品模式!'); } else { SystemService::instance()->setRuntime('debug'); - sysoplog('切换运行模式', '由产品模式切换为开发模式'); + sysoplog('系统运维管理', '由产品模式切换为开发模式'); $this->success('已切换为开发模式!'); } else { $this->error('只有超级管理员才能操作!'); @@ -85,6 +85,7 @@ class Plugs extends Controller public function optimize() { if (AdminService::instance()->isSuper()) { + sysoplog('系统运维管理', '创建数据库优化任务'); $this->_queue('优化数据库所有数据表', 'xadmin:database optimize', 0, [], 0, 0); } else { $this->error('只有超级管理员才能操作!'); @@ -113,6 +114,7 @@ class Plugs extends Controller }); $this->app->cache->delete('SystemConfig'); $GLOBALS['oplogs'] = []; + sysoplog('系统运维管理', '清理系统配置成功'); $this->success('清理系统配置成功!'); } catch (HttpResponseException $exception) { throw $exception; @@ -132,6 +134,7 @@ class Plugs extends Controller if (AdminService::instance()->isSuper()) try { AdminService::instance()->clearCache(); SystemService::instance()->pushRuntime(); + sysoplog('系统运维管理', '网站发布缓存加速'); $this->success('网站缓存加速成功!'); } catch (HttpResponseException $exception) { throw $exception; @@ -151,6 +154,7 @@ class Plugs extends Controller if (AdminService::instance()->isSuper()) try { AdminService::instance()->clearCache(); SystemService::instance()->clearRuntime(); + sysoplog('系统运维管理', '清理网站缓存日志'); $this->success('清理网站缓存成功!'); } catch (HttpResponseException $exception) { throw $exception;