Skip to content

Commit

Permalink
新增应用推送消息模块,实现部分常用消息推送:SendText 发送文本消息、SendImage 发送图片消息、SendVoice 发送语音消息
Browse files Browse the repository at this point in the history
企业微信应用推送消息接口:https://qyapi.weixin.qq.com/cgi-bin/appchat/send
  • Loading branch information
just5325 committed May 16, 2023
1 parent 3dfaf92 commit 654ea15
Show file tree
Hide file tree
Showing 3 changed files with 137 additions and 0 deletions.
115 changes: 115 additions & 0 deletions work/appchat/appchat.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
package appchat

import (
"encoding/json"
"fmt"

"github.com/silenceper/wechat/v2/util"
)

const (
// 应用推送消息接口地址
sendURL = "https://qyapi.weixin.qq.com/cgi-bin/appchat/send?access_token=%s"
)

type (
// SendRequestCommon 发送应用推送消息请求公共参数
SendRequestCommon struct {
// 群聊id
ChatID string `json:"chatid"`
// 消息类型
MsgType string `json:"msgtype"`
// 表示是否是保密消息,0表示否,1表示是,默认0
Safe int `json:"safe"`
}

// SendResponse 发送应用消息响应参数
SendResponse struct {
util.CommonError
}

// SendTextRequest 发送文本消息的请求
SendTextRequest struct {
*SendRequestCommon
Text TextField `json:"text"`
}
// TextField 文本消息参数
TextField struct {
// 消息内容,最长不超过2048个字节
Content string `json:"content"`
}

// SendImageRequest 发送图片消息的请求
SendImageRequest struct {
*SendRequestCommon
Image ImageField `json:"image"`
}
// ImageField 图片消息参数
ImageField struct {
// 图片媒体文件id,可以调用上传临时素材接口获取
MediaID string `json:"media_id"`
}

// SendVoiceRequest 发送语音消息的请求
SendVoiceRequest struct {
*SendRequestCommon
Voice VoiceField `json:"voice"`
}
// VoiceField 语音消息参数
VoiceField struct {
// 语音文件id,可以调用上传临时素材接口获取
MediaID string `json:"media_id"`
}
)

// Send 发送应用消息
// @desc 实现企业微信发送应用消息接口:https://developer.work.weixin.qq.com/document/path/90248
func (r *Client) Send(apiName string, request interface{}) (*SendResponse, error) {
// 获取accessToken
accessToken, err := r.GetAccessToken()
if err != nil {
return nil, err
}
// 请求参数转 JSON 格式
jsonData, err := json.Marshal(request)
if err != nil {
return nil, err
}
// 发起http请求
response, err := util.HTTPPost(fmt.Sprintf(sendURL, accessToken), string(jsonData))
if err != nil {
return nil, err
}
// 按照结构体解析返回值
result := &SendResponse{}
if err = util.DecodeWithError(response, result, apiName); err != nil {
return nil, err
}
// 返回数据
return result, nil
}

// SendText 发送文本消息
func (r *Client) SendText(request SendTextRequest) (*SendResponse, error) {
// 发送文本消息MsgType参数固定为:text
request.MsgType = "text"
return r.Send("MessageSendText", request)
}

// SendImage 发送图片消息
func (r *Client) SendImage(request SendImageRequest) (*SendResponse, error) {
// 发送图片消息MsgType参数固定为:image
request.MsgType = "image"
return r.Send("MessageSendImage", request)
}

// SendVoice 发送语音消息
func (r *Client) SendVoice(request SendVoiceRequest) (*SendResponse, error) {
// 发送语音消息MsgType参数固定为:voice
request.MsgType = "voice"
return r.Send("MessageSendVoice", request)
}

// 以上实现了部分常用消息推送:SendText 发送文本消息、SendImage 发送图片消息、SendVoice 发送语音消息,
// 如需扩展其他消息类型,建议按照以上格式,扩展对应消息类型的参数即可
// 也可以直接使用Send方法,按照企业微信消息推送的接口文档传对应消息类型的参数来使用
16 changes: 16 additions & 0 deletions work/appchat/client.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Package appchat 应用发送消息到群聊会话,企业微信接口:https://developer.work.weixin.qq.com/document/path/90248
package appchat

import (
"github.com/silenceper/wechat/v2/work/context"
)

// Client 接口实例
type Client struct {
*context.Context
}

// NewClient 初始化实例
func NewClient(ctx *context.Context) *Client {
return &Client{ctx}
}
6 changes: 6 additions & 0 deletions work/work.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ 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"
Expand Down Expand Up @@ -73,3 +74,8 @@ func (wk *Work) GetRobot() *robot.Client {
func (wk *Work) GetMessage() *message.Client {
return message.NewClient(wk.ctx)
}

// GetAppChat 获取应用发送消息到群聊会话接口实例
func (wk *Work) GetAppChat() *appchat.Client {
return appchat.NewClient(wk.ctx)
}

0 comments on commit 654ea15

Please sign in to comment.