修改日志记录

This commit is contained in:
Anyon 2020-11-26 14:50:37 +08:00
parent 64bcd77590
commit 18483a4b9b
5 changed files with 13 additions and 10 deletions

View File

@ -137,6 +137,7 @@ class Auth extends Controller
if ($result) { if ($result) {
$map = $this->_vali(['auth.require#id' => '权限ID不能为空']); $map = $this->_vali(['auth.require#id' => '权限ID不能为空']);
$this->app->db->name('SystemAuthNode')->where($map)->delete(); $this->app->db->name('SystemAuthNode')->where($map)->delete();
sysoplog('系统权限管理', "删除系统权限[{$map['auth']}]及授权配置");
$this->success("权限删除成功!"); $this->success("权限删除成功!");
} else { } else {
$this->error("权限删除失败,请稍候再试!"); $this->error("权限删除失败,请稍候再试!");

View File

@ -30,13 +30,6 @@ use think\admin\storage\TxcosStorage;
*/ */
class Config extends Controller class Config extends Controller
{ {
/**
* 绑定数据表
* @var string
*/
private $table = 'SystemConfig';
/** /**
* 系统参数配置 * 系统参数配置
* @auth true * @auth true
@ -74,6 +67,7 @@ class Config extends Controller
SystemService::instance()->setRuntime(null, [$xpath => 'admin']); SystemService::instance()->setRuntime(null, [$xpath => 'admin']);
} }
foreach ($this->request->post() as $name => $value) sysconf($name, $value); foreach ($this->request->post() as $name => $value) sysconf($name, $value);
sysoplog('系统配置管理', "修改系统参数配置");
$this->success('修改系统参数成功!', sysuri("{$xpath}/index/index") . '#' . url("{$xpath}/config/index")); $this->success('修改系统参数成功!', sysuri("{$xpath}/index/index") . '#' . url("{$xpath}/config/index"));
} }
} }
@ -102,6 +96,7 @@ class Config extends Controller
$post['storage']['allow_exts'] = join(',', $exts); $post['storage']['allow_exts'] = join(',', $exts);
} }
foreach ($post as $name => $value) sysconf($name, $value); foreach ($post as $name => $value) sysconf($name, $value);
sysoplog('系统配置管理', "修改文件存储参数");
$this->success('修改文件存储成功!'); $this->success('修改文件存储成功!');
} }
} }

View File

@ -98,6 +98,7 @@ class Index extends Controller
$this->error('旧密码验证失败,请重新输入!'); $this->error('旧密码验证失败,请重新输入!');
} }
if (data_save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) { if (data_save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) {
sysoplog('系统用户管理', "修改用户[{$user['id']}]密码成功");
$this->success('密码修改成功,下次请使用新密码登录!', ''); $this->success('密码修改成功,下次请使用新密码登录!', '');
} else { } else {
$this->error('密码修改失败,请稍候再试!'); $this->error('密码修改失败,请稍候再试!');

View File

@ -103,6 +103,7 @@ class User extends Controller
'repassword.confirm:password' => '两次输入的密码不一致!', 'repassword.confirm:password' => '两次输入的密码不一致!',
]); ]);
if (data_save($this->table, ['id' => $data['id'], 'password' => md5($data['password'])], 'id')) { if (data_save($this->table, ['id' => $data['id'], 'password' => md5($data['password'])], 'id')) {
sysoplog('系统用户管理', "修改用户[{$data['id']}]密码成功");
$this->success('密码修改成功,请使用新密码登录!', ''); $this->success('密码修改成功,请使用新密码登录!', '');
} else { } else {
$this->error('密码修改失败,请稍候再试!'); $this->error('密码修改失败,请稍候再试!');
@ -136,7 +137,8 @@ class User extends Controller
$data['authorize'] = arr2str($data['authorize'] ?? []); $data['authorize'] = arr2str($data['authorize'] ?? []);
} else { } else {
$data['authorize'] = str2arr($data['authorize'] ?? ''); $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();
} }
} }

View File

@ -47,11 +47,11 @@ class Plugs extends Controller
{ {
if (AdminService::instance()->isSuper()) if (input('state')) { if (AdminService::instance()->isSuper()) if (input('state')) {
SystemService::instance()->setRuntime('product'); SystemService::instance()->setRuntime('product');
sysoplog('切换运行模式', '由开发模式切换为产品模式'); sysoplog('系统运维管理', '由开发模式切换为产品模式');
$this->success('已切换为产品模式!'); $this->success('已切换为产品模式!');
} else { } else {
SystemService::instance()->setRuntime('debug'); SystemService::instance()->setRuntime('debug');
sysoplog('切换运行模式', '由产品模式切换为开发模式'); sysoplog('系统运维管理', '由产品模式切换为开发模式');
$this->success('已切换为开发模式!'); $this->success('已切换为开发模式!');
} else { } else {
$this->error('只有超级管理员才能操作!'); $this->error('只有超级管理员才能操作!');
@ -85,6 +85,7 @@ class Plugs extends Controller
public function optimize() public function optimize()
{ {
if (AdminService::instance()->isSuper()) { if (AdminService::instance()->isSuper()) {
sysoplog('系统运维管理', '创建数据库优化任务');
$this->_queue('优化数据库所有数据表', 'xadmin:database optimize', 0, [], 0, 0); $this->_queue('优化数据库所有数据表', 'xadmin:database optimize', 0, [], 0, 0);
} else { } else {
$this->error('只有超级管理员才能操作!'); $this->error('只有超级管理员才能操作!');
@ -113,6 +114,7 @@ class Plugs extends Controller
}); });
$this->app->cache->delete('SystemConfig'); $this->app->cache->delete('SystemConfig');
$GLOBALS['oplogs'] = []; $GLOBALS['oplogs'] = [];
sysoplog('系统运维管理', '清理系统配置成功');
$this->success('清理系统配置成功!'); $this->success('清理系统配置成功!');
} catch (HttpResponseException $exception) { } catch (HttpResponseException $exception) {
throw $exception; throw $exception;
@ -132,6 +134,7 @@ class Plugs extends Controller
if (AdminService::instance()->isSuper()) try { if (AdminService::instance()->isSuper()) try {
AdminService::instance()->clearCache(); AdminService::instance()->clearCache();
SystemService::instance()->pushRuntime(); SystemService::instance()->pushRuntime();
sysoplog('系统运维管理', '网站发布缓存加速');
$this->success('网站缓存加速成功!'); $this->success('网站缓存加速成功!');
} catch (HttpResponseException $exception) { } catch (HttpResponseException $exception) {
throw $exception; throw $exception;
@ -151,6 +154,7 @@ class Plugs extends Controller
if (AdminService::instance()->isSuper()) try { if (AdminService::instance()->isSuper()) try {
AdminService::instance()->clearCache(); AdminService::instance()->clearCache();
SystemService::instance()->clearRuntime(); SystemService::instance()->clearRuntime();
sysoplog('系统运维管理', '清理网站缓存日志');
$this->success('清理网站缓存成功!'); $this->success('清理网站缓存成功!');
} catch (HttpResponseException $exception) { } catch (HttpResponseException $exception) {
throw $exception; throw $exception;