package wechatopen import ( "go.dtapp.net/dorm" "go.dtapp.net/golog" "go.dtapp.net/gorequest" "gorm.io/gorm" ) 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 RedisClient *dorm.RedisClient // 缓存数据库 MongoDb *dorm.MongoClient // 日志数据库 PgsqlDb *gorm.DB // 日志数据库 DatabaseName string // 库名 } // Client 微信公众号服务 type Client struct { client *gorequest.App // 请求客户端 log *golog.ApiClient // 日志服务 config *ConfigClient // 配置 } func NewClient(config *ConfigClient) (*Client, error) { var err error c := &Client{config: config} c.client = gorequest.NewHttp() if c.config.PgsqlDb != nil { c.log, err = golog.NewApiClient( golog.WithGormClient(c.config.PgsqlDb), golog.WithTableName(logTable), ) if err != nil { return nil, err } } if c.config.MongoDb != nil { c.log, err = golog.NewApiClient( golog.WithMongoClient(c.config.MongoDb), golog.WithDatabaseName(c.config.DatabaseName), golog.WithCollectionName(logTable), ) if err != nil { return nil, err } } return c, nil } // ConfigComponent 配置 func (c *Client) ConfigComponent(componentAppId, componentAppSecret string) *Client { c.config.ComponentAppId = componentAppId c.config.ComponentAppSecret = componentAppSecret return c } // ConfigAuthorizer 配置第三方 func (c *Client) ConfigAuthorizer(authorizerAppid string) *Client { c.config.AuthorizerAppid = authorizerAppid return c }