title = '系统日志管理'; $this->isSupper = AdminService::instance()->isSuper(); $this->actions = $this->app->db->name($this->table)->distinct(true)->column('action'); // 数据列表处理 $query = $this->_query($this->table)->dateBetween('create_at'); $query->like('action,node,content,username,geoip')->layTable(); } /** * 列表数据处理 * @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'] ?? '') ?: '-'; $vo['create_at'] = format_datetime($vo['create_at']); } } /** * 清理系统日志 * @auth true */ public function clear() { try { $this->_query($this->table)->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($this->table); } }