Oplog.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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');
  44. if (input('output') === 'json') {
  45. $this->success('获取数据成功', $query->page(true, false));
  46. } else {
  47. $query->page();
  48. }
  49. }
  50. /**
  51. * 列表数据处理
  52. * @auth true
  53. * @param array $data
  54. * @throws \Exception
  55. */
  56. protected function _index_page_filter(array &$data)
  57. {
  58. $ip = new \Ip2Region();
  59. foreach ($data as &$vo) {
  60. $isp = $ip->btreeSearch($vo['geoip']);
  61. $vo['isp'] = str_replace(['内网IP', '0', '|'], '', $isp['region'] ?? '');
  62. }
  63. }
  64. /**
  65. * 清理系统日志
  66. * @auth true
  67. * @throws \think\db\exception\DbException
  68. */
  69. public function clear()
  70. {
  71. if ($this->app->db->name($this->table)->whereRaw('1=1')->delete() !== false) {
  72. sysoplog('系统运维管理', '成功清理所有日志数据');
  73. $this->success('日志清理成功!');
  74. } else {
  75. $this->error('日志清理失败,请稍候再试!');
  76. }
  77. }
  78. /**
  79. * 删除系统日志
  80. * @auth true
  81. * @throws \think\db\exception\DbException
  82. */
  83. public function remove()
  84. {
  85. $this->_applyFormToken();
  86. $this->_delete($this->table);
  87. }
  88. }