You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
golog/gin.go

75 lines
3.8 KiB

2 years ago
package golog
import (
"gorm.io/datatypes"
"gorm.io/gorm"
2 years ago
"log"
2 years ago
)
// 框架定义
type gin struct {
db *gorm.DB // pgsql数据库
tableName string // 日志表名
insideIp string // 内网ip
2 years ago
hostname string // 主机名
goVersion string // go版本
2 years ago
}
// GinPostgresqlLog 结构体
type GinPostgresqlLog struct {
LogId uint `gorm:"primaryKey" json:"log_id"` //【记录】编号
TraceId string `gorm:"type:text" json:"trace_id"` //【系统】链编号
RequestTime TimeString `gorm:"index" json:"request_time"` //【请求】时间
RequestUri string `gorm:"type:text" json:"request_uri"` //【请求】请求链接 域名+路径+参数
RequestUrl string `gorm:"type:text" json:"request_url"` //【请求】请求链接 域名+路径
RequestApi string `gorm:"type:text;index" json:"request_api"` //【请求】请求接口 路径
RequestMethod string `gorm:"type:text;index" json:"request_method"` //【请求】请求方式
RequestProto string `gorm:"type:text" json:"request_proto"` //【请求】请求协议
RequestUa string `gorm:"type:text" json:"request_ua"` //【请求】请求UA
RequestReferer string `gorm:"type:text" json:"request_referer"` //【请求】请求referer
RequestBody datatypes.JSON `gorm:"type:jsonb" json:"request_body"` //【请求】请求主体
RequestUrlQuery datatypes.JSON `gorm:"type:jsonb" json:"request_url_query"` //【请求】请求URL参数
RequestIp string `gorm:"type:text" json:"request_ip"` //【请求】请求客户端Ip
RequestIpCountry string `gorm:"type:text" json:"request_ip_country"` //【请求】请求客户端城市
RequestIpRegion string `gorm:"type:text" json:"request_ip_region"` //【请求】请求客户端区域
RequestIpProvince string `gorm:"type:text" json:"request_ip_province"` //【请求】请求客户端省份
RequestIpCity string `gorm:"type:text" json:"request_ip_city"` //【请求】请求客户端城市
RequestIpIsp string `gorm:"type:text" json:"request_ip_isp"` //【请求】请求客户端运营商
RequestHeader datatypes.JSON `gorm:"type:jsonb" json:"request_header"` //【请求】请求头
ResponseTime TimeString `gorm:"index" json:"response_time"` //【返回】时间
ResponseCode int `gorm:"type:bigint" json:"response_code"` //【返回】状态码
ResponseMsg string `gorm:"type:text" json:"response_msg"` //【返回】描述
ResponseData datatypes.JSON `gorm:"type:jsonb" json:"response_data"` //【返回】数据
CostTime int64 `gorm:"type:bigint" json:"cost_time"` //【系统】花费时间
2 years ago
SystemHostName string `gorm:"type:text" json:"system_host_name"` //【系统】主机名
SystemInsideIp string `gorm:"type:text" json:"system_inside_ip"` //【系统】内网ip
2 years ago
GoVersion string `gorm:"type:text" json:"go_version"` //【程序】Go版本
2 years ago
}
// AutoMigrate 自动迁移
2 years ago
func (p *gin) AutoMigrate() {
err := p.db.Table(p.tableName).AutoMigrate(&GinPostgresqlLog{})
2 years ago
if err != nil {
panic("创建表失败:" + err.Error())
}
}
// Record 记录日志
2 years ago
func (p *gin) Record(content GinPostgresqlLog) *gorm.DB {
content.SystemHostName = p.hostname
if content.SystemInsideIp == "" {
2 years ago
content.SystemInsideIp = p.insideIp
}
2 years ago
content.GoVersion = p.goVersion
resp := p.db.Table(p.tableName).Create(&content)
if resp.RowsAffected == 0 {
log.Println("gin", resp.Error)
}
return resp
2 years ago
}
// Query 查询
2 years ago
func (p *gin) Query() *gorm.DB {
return p.db.Table(p.tableName)
}