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

51 lines
1.3 KiB

2 years ago
package wechatunion
import (
"go.dtapp.net/dorm"
"go.dtapp.net/golog"
"go.dtapp.net/gorequest"
)
type ConfigClient struct {
2 years ago
AppId string // 小程序唯一凭证,即 appId
AppSecret string // 小程序唯一凭证密钥,即 appSecret
AccessToken string // 接口调用凭证
Pid string // 推广位PID
RedisClient *dorm.RedisClient // 缓存数据库
GormClient *dorm.GormClient // 日志数据库
LogClient *golog.ZapLog // 日志驱动
LogDebug bool // 日志开关
2 years ago
}
// Client 微信小程序联盟
type Client struct {
2 years ago
requestClient *gorequest.App // 请求服务
logClient *golog.ApiClient // 日志服务
redisClient *dorm.RedisClient // 缓存服务
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
}
}
2 years ago
c.redisClient = c.config.RedisClient
2 years ago
return c, nil
}