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

52 lines
1.1 KiB

2 years ago
package wikeyun
import (
2 years ago
"context"
2 years ago
"go.dtapp.net/dorm"
"go.dtapp.net/goip"
"go.dtapp.net/golog"
"go.dtapp.net/gorequest"
)
type ConfigClient struct {
2 years ago
StoreId int // 店铺ID
AppKey int // key
AppSecret string // secret
GormClient *dorm.GormClient // 日志数据库
2 years ago
LogClient *golog.ZapLog // 日志驱动
2 years ago
LogDebug bool // 日志开关
2 years ago
}
type Client struct {
2 years ago
requestClient *gorequest.App // 请求服务
logClient *golog.ApiClient // 日志服务
clientIp string // 当前Ip
config *ConfigClient // 配置
2 years ago
}
func NewClient(config *ConfigClient) (*Client, error) {
var err error
c := &Client{config: config}
2 years ago
c.requestClient = gorequest.NewHttp()
2 years ago
2 years ago
if c.config.GormClient.Db != nil {
2 years ago
c.logClient, err = golog.NewApiClient(&golog.ApiClientConfig{
2 years ago
GormClient: c.config.GormClient,
TableName: logTable,
LogClient: c.config.LogClient,
LogDebug: c.config.LogDebug,
})
2 years ago
if err != nil {
return nil, err
}
}
2 years ago
xip := goip.GetOutsideIp(context.Background())
2 years ago
if xip != "" && xip != "0.0.0.0" {
c.clientIp = xip
}
return c, nil
}