_query(SystemOplog::class)->layTable(function () { $this->title = '系统日志管理'; $this->users = SystemOplog::mk()->distinct(true)->column('username'); $this->actions = SystemOplog::mk()->distinct(true)->column('action'); }, function (QueryHelper $query) { // 数据列表处理 $query->dateBetween('create_at')->equal('username,action')->like('content,geoip,node'); }); } /** * 列表数据处理 * @auth true * @param array $data * @throws \Exception */ protected function _index_page_filter(array &$data) { $region = new \Ip2Region(); foreach ($data as &$vo) { $isp = $region->btreeSearch($vo['geoip']); $vo['geoisp'] = str_replace(['内网IP', '0', '|'], '', $isp['region'] ?? '') ?: '-'; } } /** * 清理系统日志 * @auth true */ public function clear() { try { $this->_query(SystemOplog::class)->empty(); sysoplog('系统运维管理', '成功清理所有日志数据'); $this->success('日志清理成功!'); } catch (HttpResponseException $exception) { throw $exception; } catch (\Exception $exception) { $this->error("日志清理失败,{$exception->getMessage()}"); } } /** * 删除系统日志 * @auth true * @throws \think\db\exception\DbException */ public function remove() { $this->_delete(SystemOplog::class); } }