mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
102 lines
3.1 KiB
PHP
102 lines
3.1 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: https://thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// | 免费声明 ( https://thinkadmin.top/disclaimer )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\controller;
|
||
|
||
use Exception;
|
||
use think\admin\Controller;
|
||
use think\admin\service\AdminService;
|
||
use think\exception\HttpResponseException;
|
||
|
||
/**
|
||
* 系统日志管理
|
||
* Class Oplog
|
||
* @package app\admin\controller
|
||
*/
|
||
class Oplog extends Controller
|
||
{
|
||
|
||
/**
|
||
* 绑定数据表
|
||
* @var string
|
||
*/
|
||
private $table = 'SystemOplog';
|
||
|
||
/**
|
||
* 系统日志管理
|
||
* @auth true
|
||
* @menu true
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function index()
|
||
{
|
||
$this->title = '系统日志管理';
|
||
$this->isSupper = AdminService::instance()->isSuper();
|
||
// 读取数据类型
|
||
$this->users = $this->app->db->name($this->table)->distinct(true)->column('username');
|
||
$this->actions = $this->app->db->name($this->table)->distinct(true)->column('action');
|
||
// 数据列表处理
|
||
$query = $this->_query($this->table)->dateBetween('create_at');
|
||
$query->equal('username,action')->like('content,geoip,node')->layTable();
|
||
}
|
||
|
||
/**
|
||
* 列表数据处理
|
||
* @auth true
|
||
* @param array $data
|
||
* @throws Exception
|
||
*/
|
||
protected function _index_page_filter(array &$data)
|
||
{
|
||
$region = new \Ip2Region();
|
||
foreach ($data as &$vo) {
|
||
$isp = $region->btreeSearch($vo['geoip']);
|
||
$vo['geoisp'] = str_replace(['内网IP', '0', '|'], '', $isp['region'] ?? '') ?: '-';
|
||
$vo['create_at'] = format_datetime($vo['create_at']);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 清理系统日志
|
||
* @auth true
|
||
*/
|
||
public function clear()
|
||
{
|
||
try {
|
||
$this->_query($this->table)->empty();
|
||
sysoplog('系统运维管理', '成功清理所有日志数据');
|
||
$this->success('日志清理成功!');
|
||
} catch (HttpResponseException $exception) {
|
||
throw $exception;
|
||
} catch (Exception $exception) {
|
||
$this->error("日志清理失败,{$exception->getMessage()}");
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 删除系统日志
|
||
* @auth true
|
||
* @throws \think\db\exception\DbException
|
||
*/
|
||
public function remove()
|
||
{
|
||
$this->_delete($this->table);
|
||
}
|
||
|
||
}
|