mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-04 21:02:25 +08:00
* 修正work.GetMessage()方法的注释信息 (cherry picked from commit 3dfaf9222910ae4ad977e2852908692d04118abc) * 新增应用推送消息模块,实现部分常用消息推送:SendText 发送文本消息、SendImage 发送图片消息、SendVoice 发送语音消息 企业微信应用推送消息接口:https://qyapi.weixin.qq.com/cgi-bin/appchat/send (cherry picked from commit 654ea158d6590a006a8c78ac3c38eafe361fe303)
82 lines
2.1 KiB
Go
82 lines
2.1 KiB
Go
package work
|
|
|
|
import (
|
|
"github.com/silenceper/wechat/v2/credential"
|
|
"github.com/silenceper/wechat/v2/work/addresslist"
|
|
"github.com/silenceper/wechat/v2/work/appchat"
|
|
"github.com/silenceper/wechat/v2/work/config"
|
|
"github.com/silenceper/wechat/v2/work/context"
|
|
"github.com/silenceper/wechat/v2/work/externalcontact"
|
|
"github.com/silenceper/wechat/v2/work/kf"
|
|
"github.com/silenceper/wechat/v2/work/material"
|
|
"github.com/silenceper/wechat/v2/work/message"
|
|
"github.com/silenceper/wechat/v2/work/msgaudit"
|
|
"github.com/silenceper/wechat/v2/work/oauth"
|
|
"github.com/silenceper/wechat/v2/work/robot"
|
|
)
|
|
|
|
// Work 企业微信
|
|
type Work struct {
|
|
ctx *context.Context
|
|
}
|
|
|
|
// NewWork init work
|
|
func NewWork(cfg *config.Config) *Work {
|
|
defaultAkHandle := credential.NewWorkAccessToken(cfg.CorpID, cfg.CorpSecret, credential.CacheKeyWorkPrefix, cfg.Cache)
|
|
ctx := &context.Context{
|
|
Config: cfg,
|
|
AccessTokenHandle: defaultAkHandle,
|
|
}
|
|
return &Work{ctx: ctx}
|
|
}
|
|
|
|
// GetContext get Context
|
|
func (wk *Work) GetContext() *context.Context {
|
|
return wk.ctx
|
|
}
|
|
|
|
// GetOauth get oauth
|
|
func (wk *Work) GetOauth() *oauth.Oauth {
|
|
return oauth.NewOauth(wk.ctx)
|
|
}
|
|
|
|
// GetMsgAudit get msgAudit
|
|
func (wk *Work) GetMsgAudit() (*msgaudit.Client, error) {
|
|
return msgaudit.NewClient(wk.ctx.Config)
|
|
}
|
|
|
|
// GetKF get kf
|
|
func (wk *Work) GetKF() (*kf.Client, error) {
|
|
return kf.NewClient(wk.ctx.Config)
|
|
}
|
|
|
|
// GetExternalContact get external_contact
|
|
func (wk *Work) GetExternalContact() *externalcontact.Client {
|
|
return externalcontact.NewClient(wk.ctx)
|
|
}
|
|
|
|
// GetAddressList get address_list
|
|
func (wk *Work) GetAddressList() *addresslist.Client {
|
|
return addresslist.NewClient(wk.ctx)
|
|
}
|
|
|
|
// GetMaterial get material
|
|
func (wk *Work) GetMaterial() *material.Client {
|
|
return material.NewClient(wk.ctx)
|
|
}
|
|
|
|
// GetRobot get robot
|
|
func (wk *Work) GetRobot() *robot.Client {
|
|
return robot.NewClient(wk.ctx)
|
|
}
|
|
|
|
// GetMessage 获取发送应用消息接口实例
|
|
func (wk *Work) GetMessage() *message.Client {
|
|
return message.NewClient(wk.ctx)
|
|
}
|
|
|
|
// GetAppChat 获取应用发送消息到群聊会话接口实例
|
|
func (wk *Work) GetAppChat() *appchat.Client {
|
|
return appchat.NewClient(wk.ctx)
|
|
}
|