mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改日志记录
This commit is contained in:
parent
64bcd77590
commit
18483a4b9b
@ -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("权限删除失败,请稍候再试!");
|
||||
|
@ -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('修改文件存储成功!');
|
||||
}
|
||||
}
|
||||
|
@ -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('密码修改失败,请稍候再试!');
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user