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.
pintoto/client.go

113 lines
2.6 KiB

2 years ago
package pintoto
import (
"go.dtapp.net/dorm"
"go.dtapp.net/golog"
"go.dtapp.net/gorequest"
"math"
"strconv"
)
2 years ago
// client *dorm.GormClient
type gormClientFun func() *dorm.GormClient
// client *dorm.MongoClient
// databaseName string
type mongoClientFun func() (*dorm.MongoClient, string)
// ClientConfig 实例配置
type ClientConfig struct {
AppKey string
AppSecret string
GormClientFun gormClientFun // 日志配置
MongoClientFun mongoClientFun // 日志配置
Debug bool // 日志开关
2 years ago
ZapLog *golog.ZapLog // 日志服务
2 years ago
CurrentIp string // 当前ip
2 years ago
}
2 years ago
// Client 实例
2 years ago
type Client struct {
2 years ago
requestClient *gorequest.App // 请求服务
2 years ago
zapLog *golog.ZapLog // 日志服务
2 years ago
currentIp string // 当前ip
2 years ago
config struct {
appKey string
appSecret string
}
log struct {
gorm bool // 日志开关
gormClient *dorm.GormClient // 日志数据库
logGormClient *golog.ApiClient // 日志服务
mongo bool // 日志开关
mongoClient *dorm.MongoClient // 日志数据库
logMongoClient *golog.ApiClient // 日志服务
}
2 years ago
}
2 years ago
// NewClient 创建实例化
func NewClient(config *ClientConfig) (*Client, error) {
2 years ago
var err error
2 years ago
c := &Client{}
2 years ago
c.zapLog = config.ZapLog
2 years ago
c.currentIp = config.CurrentIp
2 years ago
c.config.appKey = config.AppKey
c.config.appSecret = config.AppSecret
2 years ago
2 years ago
c.requestClient = gorequest.NewHttp()
2 years ago
2 years ago
gormClient := config.GormClientFun()
if gormClient != nil && gormClient.Db != nil {
2 years ago
c.log.logGormClient, err = golog.NewApiGormClient(&golog.ApiGormClientConfig{
GormClientFun: func() (*dorm.GormClient, string) {
return gormClient, logTable
},
2 years ago
Debug: config.Debug,
ZapLog: c.zapLog,
CurrentIp: c.currentIp,
2 years ago
})
2 years ago
if err != nil {
return nil, err
}
c.log.gorm = true
c.log.gormClient = gormClient
}
mongoClient, databaseName := config.MongoClientFun()
if mongoClient != nil && mongoClient.Db != nil {
2 years ago
c.log.logMongoClient, err = golog.NewApiMongoClient(&golog.ApiMongoClientConfig{
MongoClientFun: func() (*dorm.MongoClient, string, string) {
return mongoClient, databaseName, logTable
},
2 years ago
Debug: config.Debug,
ZapLog: c.zapLog,
CurrentIp: c.currentIp,
2 years ago
})
2 years ago
if err != nil {
return nil, err
}
2 years ago
c.log.mongo = true
c.log.mongoClient = mongoClient
2 years ago
}
return c, nil
}
func (c *Client) GradeToFloat64(i interface{}) float64 {
switch v := i.(type) {
case string:
float, _ := strconv.ParseFloat(v, 64)
return float
case float64:
return v
case int64:
return float64(v) / math.Pow10(0)
default:
return 0
}
}