| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- package officialaccount
- import (
- "net/http"
- "github.com/silenceper/wechat/v2/officialaccount/draft"
- "github.com/silenceper/wechat/v2/officialaccount/freepublish"
- "github.com/silenceper/wechat/v2/officialaccount/ocr"
- "github.com/silenceper/wechat/v2/officialaccount/datacube"
- "github.com/silenceper/wechat/v2/credential"
- "github.com/silenceper/wechat/v2/officialaccount/basic"
- "github.com/silenceper/wechat/v2/officialaccount/broadcast"
- "github.com/silenceper/wechat/v2/officialaccount/config"
- "github.com/silenceper/wechat/v2/officialaccount/context"
- "github.com/silenceper/wechat/v2/officialaccount/device"
- "github.com/silenceper/wechat/v2/officialaccount/js"
- "github.com/silenceper/wechat/v2/officialaccount/material"
- "github.com/silenceper/wechat/v2/officialaccount/menu"
- "github.com/silenceper/wechat/v2/officialaccount/message"
- "github.com/silenceper/wechat/v2/officialaccount/oauth"
- "github.com/silenceper/wechat/v2/officialaccount/server"
- "github.com/silenceper/wechat/v2/officialaccount/user"
- )
- // OfficialAccount 微信公众号相关API
- type OfficialAccount struct {
- ctx *context.Context
- }
- // NewOfficialAccount 实例化公众号API
- func NewOfficialAccount(cfg *config.Config) *OfficialAccount {
- defaultAkHandle := credential.NewDefaultAccessToken(cfg.AppID, cfg.AppSecret, credential.CacheKeyOfficialAccountPrefix, cfg.Cache)
- ctx := &context.Context{
- Config: cfg,
- AccessTokenHandle: defaultAkHandle,
- }
- return &OfficialAccount{ctx: ctx}
- }
- // SetAccessTokenHandle 自定义access_token获取方式
- func (officialAccount *OfficialAccount) SetAccessTokenHandle(accessTokenHandle credential.AccessTokenHandle) {
- officialAccount.ctx.AccessTokenHandle = accessTokenHandle
- }
- // GetContext get Context
- func (officialAccount *OfficialAccount) GetContext() *context.Context {
- return officialAccount.ctx
- }
- // GetBasic qr/url 相关配置
- func (officialAccount *OfficialAccount) GetBasic() *basic.Basic {
- return basic.NewBasic(officialAccount.ctx)
- }
- // GetMenu 菜单管理接口
- func (officialAccount *OfficialAccount) GetMenu() *menu.Menu {
- return menu.NewMenu(officialAccount.ctx)
- }
- // GetServer 消息管理:接收事件,被动回复消息管理
- func (officialAccount *OfficialAccount) GetServer(req *http.Request, writer http.ResponseWriter) *server.Server {
- srv := server.NewServer(officialAccount.ctx)
- srv.Request = req
- srv.Writer = writer
- return srv
- }
- // GetAccessToken 获取access_token
- func (officialAccount *OfficialAccount) GetAccessToken() (string, error) {
- return officialAccount.ctx.GetAccessToken()
- }
- // GetOauth oauth2网页授权
- func (officialAccount *OfficialAccount) GetOauth() *oauth.Oauth {
- return oauth.NewOauth(officialAccount.ctx)
- }
- // GetMaterial 素材管理
- func (officialAccount *OfficialAccount) GetMaterial() *material.Material {
- return material.NewMaterial(officialAccount.ctx)
- }
- // GetDraft 草稿箱
- func (officialAccount *OfficialAccount) GetDraft() *draft.Draft {
- return draft.NewDraft(officialAccount.ctx)
- }
- // GetFreePublish 发布能力
- func (officialAccount *OfficialAccount) GetFreePublish() *freepublish.FreePublish {
- return freepublish.NewFreePublish(officialAccount.ctx)
- }
- // GetJs js-sdk配置
- func (officialAccount *OfficialAccount) GetJs() *js.Js {
- return js.NewJs(officialAccount.ctx)
- }
- // GetUser 用户管理接口
- func (officialAccount *OfficialAccount) GetUser() *user.User {
- return user.NewUser(officialAccount.ctx)
- }
- // GetTemplate 模板消息接口
- func (officialAccount *OfficialAccount) GetTemplate() *message.Template {
- return message.NewTemplate(officialAccount.ctx)
- }
- // GetCustomerMessageManager 客服消息接口
- func (officialAccount *OfficialAccount) GetCustomerMessageManager() *message.Manager {
- return message.NewMessageManager(officialAccount.ctx)
- }
- // GetDevice 获取智能设备的实例
- func (officialAccount *OfficialAccount) GetDevice() *device.Device {
- return device.NewDevice(officialAccount.ctx)
- }
- // GetBroadcast 群发消息
- // TODO 待完善
- func (officialAccount *OfficialAccount) GetBroadcast() *broadcast.Broadcast {
- return broadcast.NewBroadcast(officialAccount.ctx)
- }
- // GetDataCube 数据统计
- func (officialAccount *OfficialAccount) GetDataCube() *datacube.DataCube {
- return datacube.NewCube(officialAccount.ctx)
- }
- // GetOCR OCR接口
- func (officialAccount *OfficialAccount) GetOCR() *ocr.OCR {
- return ocr.NewOCR(officialAccount.ctx)
- }
- // GetSubscribe 公众号订阅消息
- func (officialAccount *OfficialAccount) GetSubscribe() *message.Subscribe {
- return message.NewSubscribe(officialAccount.ctx)
- }
|