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

47 lines
986 B

2 years ago
package wechatqy
import (
"go.dtapp.net/dorm"
"go.dtapp.net/golog"
"go.dtapp.net/gorequest"
)
type ConfigClient struct {
2 years ago
AppId string
AgentId int
Secret string
RedirectUri string
Key string // key
GormClient *dorm.GormClient // 日志数据库
LogClient *golog.ZapLog // 日志驱动
LogDebug bool // 日志开关
2 years ago
}
type Client struct {
2 years ago
requestClient *gorequest.App // 请求服务
logClient *golog.ApiClient // 日志服务
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 {
c.logClient, err = golog.NewApiClient(&golog.ApiClientConfig{
GormClient: c.config.GormClient,
TableName: logTable,
LogClient: c.config.LogClient,
LogDebug: c.config.LogDebug,
})
2 years ago
if err != nil {
return nil, err
}
}
return c, nil
}