mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
81 lines
2.4 KiB
PHP
81 lines
2.4 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://think.ctolog.com
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\controller;
|
||
|
||
use controller\BasicAdmin;
|
||
use service\DataService;
|
||
use think\Db;
|
||
|
||
/**
|
||
* 系统日志管理
|
||
* Class User
|
||
* @package app\admin\controller
|
||
* @author Anyon <zoujingli@qq.com>
|
||
* @date 2017/02/15 18:12
|
||
*/
|
||
class Log extends BasicAdmin
|
||
{
|
||
|
||
/**
|
||
* 指定当前数据表
|
||
* @var string
|
||
*/
|
||
public $table = 'SystemLog';
|
||
|
||
/**
|
||
* 日志列表
|
||
*/
|
||
public function index()
|
||
{
|
||
$this->title = '系统操作日志';
|
||
$get = $this->request->get();
|
||
$actions = Db::name($this->table)->group('action')->column('action');
|
||
$db = Db::name($this->table)->order('id desc');
|
||
foreach (['action', 'content', 'username'] as $key) {
|
||
if (isset($get[$key]) && $get[$key] !== '') {
|
||
$db->where($key, 'like', "%{$get[$key]}%");
|
||
}
|
||
}
|
||
$this->assign('actions', $actions);
|
||
return parent::_list($db);
|
||
}
|
||
|
||
/**
|
||
* 列表数据处理
|
||
* @param $data
|
||
*/
|
||
protected function _index_data_filter(&$data)
|
||
{
|
||
$ip = new \Ip2Region();
|
||
foreach ($data as &$vo) {
|
||
$result = $ip->btreeSearch($vo['ip']);
|
||
$vo['isp'] = isset($result['region']) ? $result['region'] : '';
|
||
$vo['isp'] = str_replace(['|0|0|0|0', '0', '|'], ['', '', ' '], $vo['isp']);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 日志删除操作
|
||
*/
|
||
public function del()
|
||
{
|
||
if (DataService::update($this->table)) {
|
||
$this->success("日志删除成功!", '');
|
||
}
|
||
$this->error("日志删除失败, 请稍候再试!");
|
||
}
|
||
|
||
}
|