Oplog.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 library\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 = 'Log';
  29. /**
  30. * 系统操作日志
  31. * @auth true
  32. * @menu true
  33. * @throws \think\Exception
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @throws \think\exception\DbException
  37. */
  38. public function index()
  39. {
  40. $this->title = '系统操作日志';
  41. $query = $this->_query($this->table)->like('action,node,content,username,geoip');
  42. $query->dateBetween('create_at')->order('id desc')->page();
  43. }
  44. /**
  45. * 列表数据处理
  46. * @auth true
  47. * @param array $data
  48. * @throws \Exception
  49. */
  50. protected function _index_page_filter(&$data)
  51. {
  52. $ip = new \Ip2Region();
  53. foreach ($data as &$vo) {
  54. $result = $ip->btreeSearch($vo['geoip']);
  55. $vo['isp'] = isset($result['region']) ? $result['region'] : '';
  56. $vo['isp'] = str_replace(['内网IP', '0', '|'], '', $vo['isp']);
  57. }
  58. }
  59. /**
  60. * 清理系统日志
  61. * @auth true
  62. * @throws \think\Exception
  63. * @throws \think\exception\PDOException
  64. */
  65. public function clear()
  66. {
  67. if (Db::name($this->table)->whereRaw('1=1')->delete() !== false) {
  68. $this->success('日志清理成功!');
  69. } else {
  70. $this->error('日志清理失败,请稍候再试!');
  71. }
  72. }
  73. /**
  74. * 删除系统日志
  75. * @auth true
  76. * @throws \think\Exception
  77. * @throws \think\exception\PDOException
  78. */
  79. public function remove()
  80. {
  81. $this->applyCsrfToken();
  82. $this->_delete($this->table);
  83. }
  84. }