Oplog.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://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\admin\service\AdminService;
  17. /**
  18. * 系统日志管理
  19. * Class Oplog
  20. * @package app\admin\controller
  21. */
  22. class Oplog extends Controller
  23. {
  24. /**
  25. * 绑定数据表
  26. * @var string
  27. */
  28. private $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. $this->isSupper = AdminService::instance()->isSuper();
  41. $this->actions = $this->app->db->name($this->table)->distinct(true)->column('action');
  42. $query = $this->_query($this->table)->order('id desc');
  43. $query->like('action,node,content,username,geoip')->dateBetween('create_at')->page();
  44. }
  45. /**
  46. * 列表数据处理
  47. * @auth true
  48. * @param array $data
  49. * @throws \Exception
  50. */
  51. protected function _index_page_filter(array &$data)
  52. {
  53. $ip = new \Ip2Region();
  54. foreach ($data as &$vo) {
  55. $isp = $ip->btreeSearch($vo['geoip']);
  56. $vo['isp'] = str_replace(['内网IP', '0', '|'], '', $isp['region'] ?? '');
  57. }
  58. }
  59. /**
  60. * 清理系统日志
  61. * @auth true
  62. * @throws \think\db\exception\DbException
  63. */
  64. public function clear()
  65. {
  66. if ($this->app->db->name($this->table)->whereRaw('1=1')->delete() !== false) {
  67. sysoplog('系统运维管理', '成功清理所有日志数据');
  68. $this->success('日志清理成功!');
  69. } else {
  70. $this->error('日志清理失败,请稍候再试!');
  71. }
  72. }
  73. /**
  74. * 删除系统日志
  75. * @auth true
  76. * @throws \think\db\exception\DbException
  77. */
  78. public function remove()
  79. {
  80. $this->_applyFormToken();
  81. $this->_delete($this->table);
  82. }
  83. }