Oplog.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. namespace app\admin\controller;
  16. use Exception;
  17. use think\admin\Controller;
  18. use think\admin\service\AdminService;
  19. use think\exception\HttpResponseException;
  20. /**
  21. * 系统日志管理
  22. * Class Oplog
  23. * @package app\admin\controller
  24. */
  25. class Oplog extends Controller
  26. {
  27. /**
  28. * 绑定数据表
  29. * @var string
  30. */
  31. private $table = 'SystemOplog';
  32. /**
  33. * 系统日志管理
  34. * @auth true
  35. * @menu true
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. */
  40. public function index()
  41. {
  42. $this->title = '系统日志管理';
  43. $this->isSupper = AdminService::instance()->isSuper();
  44. $this->actions = $this->app->db->name($this->table)->distinct(true)->column('action');
  45. // 数据列表处理
  46. $query = $this->_query($this->table)->dateBetween('create_at');
  47. $query->like('action,node,content,username,geoip')->layTable();
  48. }
  49. /**
  50. * 列表数据处理
  51. * @auth true
  52. * @param array $data
  53. * @throws Exception
  54. */
  55. protected function _index_page_filter(array &$data)
  56. {
  57. $region = new \Ip2Region();
  58. foreach ($data as &$vo) {
  59. $isp = $region->btreeSearch($vo['geoip']);
  60. $vo['geoisp'] = str_replace(['内网IP', '0', '|'], '', $isp['region'] ?? '') ?: '-';
  61. $vo['create_at'] = format_datetime($vo['create_at']);
  62. }
  63. }
  64. /**
  65. * 清理系统日志
  66. * @auth true
  67. */
  68. public function clear()
  69. {
  70. try {
  71. $this->_query($this->table)->empty();
  72. sysoplog('系统运维管理', '成功清理所有日志数据');
  73. $this->success('日志清理成功!');
  74. } catch (HttpResponseException $exception) {
  75. throw $exception;
  76. } catch (Exception $exception) {
  77. $this->error("日志清理失败,{$exception->getMessage()}");
  78. }
  79. }
  80. /**
  81. * 删除系统日志
  82. * @auth true
  83. * @throws \think\db\exception\DbException
  84. */
  85. public function remove()
  86. {
  87. $this->_delete($this->table);
  88. }
  89. }