Oplog.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use think\admin\Controller;
  16. use think\Db;
  17. /**
  18. * 系统日志管理
  19. * Class Oplog
  20. * @package app\admin\controller
  21. */
  22. class Oplog extends Controller
  23. {
  24. /**
  25. * 绑定数据表
  26. * @var string
  27. */
  28. public $table = 'SystemOplog';
  29. /**
  30. * 系统日志管理
  31. * @auth true
  32. * @menu true
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. */
  37. public function index()
  38. {
  39. $this->title = '系统日志管理';
  40. $query = $this->_query($this->table)->like('action,node,content,username,geoip');
  41. $query->dateBetween('create_at')->order('id desc')->page();
  42. }
  43. /**
  44. * 列表数据处理
  45. * @auth true
  46. * @param array $data
  47. * @throws \Exception
  48. */
  49. protected function _index_page_filter(&$data)
  50. {
  51. $ip = new \Ip2Region();
  52. foreach ($data as &$vo) {
  53. $result = $ip->btreeSearch($vo['geoip']);
  54. $vo['isp'] = isset($result['region']) ? $result['region'] : '';
  55. $vo['isp'] = str_replace(['内网IP', '0', '|'], '', $vo['isp']);
  56. }
  57. }
  58. /**
  59. * 清理系统日志
  60. * @auth true
  61. * @throws \think\db\exception\DbException
  62. */
  63. public function clear()
  64. {
  65. if ($this->app->db->name($this->table)->whereRaw('1=1')->delete() !== false) {
  66. $this->success('日志清理成功!');
  67. } else {
  68. $this->error('日志清理失败,请稍候再试!');
  69. }
  70. }
  71. /**
  72. * 删除系统日志
  73. * @auth true
  74. * @throws \think\db\exception\DbException
  75. */
  76. public function remove()
  77. {
  78. $this->_applyFormToken();
  79. $this->_delete($this->table);
  80. }
  81. }