2019-04-04 13:29:33 +08:00

81 lines
2.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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("日志删除失败, 请稍候再试!");
}
}