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

70 lines
1.9 KiB

2 years ago
package wechatopen
import (
2 years ago
"go.dtapp.net/dorm"
2 years ago
"go.dtapp.net/golog"
"go.dtapp.net/gorequest"
)
2 years ago
type ConfigClient struct {
ComponentAccessToken string // 第三方平台 access_token
ComponentVerifyTicket string // 微信后台推送的 ticket
PreAuthCode string // 预授权码
AuthorizerAccessToken string // 接口调用令牌
AuthorizerRefreshToken string // 刷新令牌
AuthorizerAppid string // 授权方 appid
ComponentAppId string // 第三方平台 appid
ComponentAppSecret string // 第三方平台 app_secret
MessageToken string
MessageKey string
2 years ago
RedisClient *dorm.RedisClient // 缓存数据库
GormClient *dorm.GormClient // 日志数据库
2 years ago
LogClient *golog.ZapLog // 日志驱动
2 years ago
LogDebug bool // 日志开关
2 years ago
}
2 years ago
// Client 微信公众号服务
type Client struct {
2 years ago
requestClient *gorequest.App // 请求服务
redisClient *dorm.RedisClient // 缓存服务
logClient *golog.ApiClient // 日志服务
config *ConfigClient // 配置
2 years ago
}
2 years ago
func NewClient(config *ConfigClient) (*Client, error) {
2 years ago
2 years ago
var err error
2 years ago
c := &Client{config: config}
2 years ago
c.requestClient = gorequest.NewHttp()
2 years ago
2 years ago
c.redisClient = config.RedisClient
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
}
2 years ago
2 years ago
return c, nil
2 years ago
}
2 years ago
// ConfigComponent 配置
func (c *Client) ConfigComponent(componentAppId, componentAppSecret string) *Client {
c.config.ComponentAppId = componentAppId
c.config.ComponentAppSecret = componentAppSecret
return c
2 years ago
}
// ConfigAuthorizer 配置第三方
2 years ago
func (c *Client) ConfigAuthorizer(authorizerAppid string) *Client {
c.config.AuthorizerAppid = authorizerAppid
return c
2 years ago
}