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

144 lines
3.2 KiB

2 years ago
package golog
import (
2 years ago
"bytes"
2 years ago
"context"
2 years ago
"encoding/json"
"errors"
"github.com/gin-gonic/gin"
"go.dtapp.net/dorm"
2 years ago
"go.dtapp.net/goip"
"os"
"runtime"
2 years ago
)
2 years ago
// GinClient 框架
type GinClient struct {
2 years ago
gormClient *dorm.GormClient // 数据库驱动
mongoClient *dorm.MongoClient // 数据库驱动
ipService *goip.Client // ip服务
gormConfig struct {
2 years ago
tableName string // 表名
insideIp string // 内网ip
hostname string // 主机名
goVersion string // go版本
debug bool // 日志开关
2 years ago
}
2 years ago
mongoConfig struct {
databaseName string // 库名
collectionName string // 表名
insideIp string // 内网ip
hostname string // 主机名
goVersion string // go版本
debug bool // 日志开关
}
2 years ago
}
2 years ago
// client 数据库服务
// string 表名
type ginGormClientFun func() (*dorm.GormClient, string)
// NewGinGormClient 创建框架实例化
// client 数据库服务
2 years ago
// tableName 表名
// ipService ip服务
2 years ago
func NewGinGormClient(gormClientFun ginGormClientFun, ipService *goip.Client, debug bool) (*GinClient, error) {
2 years ago
2 years ago
c := &GinClient{}
client, tableName := gormClientFun()
2 years ago
if client == nil || client.Db == nil {
2 years ago
return nil, errors.New("没有设置驱动")
}
2 years ago
c.gormClient = client
if tableName == "" {
2 years ago
return nil, errors.New("没有设置表名")
}
c.gormConfig.tableName = tableName
2 years ago
c.gormConfig.debug = debug
c.ipService = ipService
err := c.gormClient.Db.Table(c.gormConfig.tableName).AutoMigrate(&ginPostgresqlLog{})
2 years ago
if err != nil {
return nil, errors.New("创建表失败:" + err.Error())
2 years ago
}
2 years ago
2 years ago
hostname, _ := os.Hostname()
c.gormConfig.hostname = hostname
c.gormConfig.insideIp = goip.GetInsideIp(context.Background())
c.gormConfig.goVersion = runtime.Version()
2 years ago
2 years ago
return c, nil
2 years ago
}
2 years ago
// client 数据库服务
// string 库名
// string 表名
type ginMongoClientFun func() (*dorm.MongoClient, string, string)
2 years ago
// NewGinMongoClient 创建框架实例化
// client 数据库服务
2 years ago
// databaseName 库名
// collectionName 表名
// ipService ip服务
2 years ago
func NewGinMongoClient(mongoClientFun ginMongoClientFun, ipService *goip.Client, debug bool) (*GinClient, error) {
2 years ago
c := &GinClient{}
client, databaseName, collectionName := mongoClientFun()
if client == nil || client.Db == nil {
2 years ago
return nil, errors.New("没有设置驱动")
}
c.mongoClient = client
2 years ago
if databaseName == "" {
return nil, errors.New("没有设置库名")
}
c.mongoConfig.databaseName = databaseName
if collectionName == "" {
return nil, errors.New("没有设置表名")
}
c.mongoConfig.collectionName = collectionName
c.ipService = ipService
c.mongoConfig.debug = debug
hostname, _ := os.Hostname()
c.mongoConfig.hostname = hostname
c.mongoConfig.insideIp = goip.GetInsideIp(context.Background())
c.mongoConfig.goVersion = runtime.Version()
return c, nil
}
2 years ago
type bodyLogWriter struct {
gin.ResponseWriter
body *bytes.Buffer
2 years ago
}
2 years ago
func (w bodyLogWriter) Write(b []byte) (int, error) {
w.body.Write(b)
return w.ResponseWriter.Write(b)
2 years ago
}
2 years ago
func (w bodyLogWriter) WriteString(s string) (int, error) {
w.body.WriteString(s)
return w.ResponseWriter.WriteString(s)
2 years ago
}
2 years ago
func (c *GinClient) jsonUnmarshal(data string) (result interface{}) {
_ = json.Unmarshal([]byte(data), &result)
return
}