-
Notifications
You must be signed in to change notification settings - Fork 1
/
message.go
147 lines (120 loc) · 4.83 KB
/
message.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
package wxwork
import (
"bytes"
"encoding/json"
"strings"
)
const (
// MSG_TYPE_TEXT 文本消息类型
MSG_TYPE_TEXT = "text"
// MSG_TYPE_IMAGE 图片消息类型
MSG_TYPE_IMAGE = "image"
// MSG_TYPE_VOICE 语音消息
MSG_TYPE_VOICE = "voice"
// MSG_TYPE_VIDEO 视频消息
MSG_TYPE_VIDEO = "video"
// MSG_TYPE_FILE 文件消息
MSG_TYPE_FILE = "file"
// MSG_TYPE_TEXTCARD 文本卡片消息
MSG_TYPE_TEXTCARD = "textcard"
// MSG_TYPE_NEWS 图文消息
MSG_TYPE_NEWS = "news"
// MSG_TYPE_MPNEWS 图文消息(mpnews)
MSG_TYPE_MPNEWS = "mpnews"
// MSG_TYPE_MARKDOWN markdown消息
MSG_TYPE_MARKDOWN = "markdown"
// MSG_TYPE_MINIPROGRAM_NOTICE 小程序通知消息
MSG_TYPE_MINIPROGRAM_NOTICE = "miniprogram_notice"
// MSG_TYPE_TASKCARD 任务卡片消息
MSG_TYPE_TASKCARD = "taskcard"
// MSG_TYPE_LOCATION 位置消息
MSG_TYPE_LOCATION = "location"
// MSG_TYPE_LINK 链接消息
MSG_TYPE_LINK = "link"
// MSG_TYPE_EVENT 事件消息
MSG_TYPE_EVENT = "event"
)
// Message 消息推送
// 文档地址: https://work.weixin.qq.com/api/doc/90000/90135/90235
type Message struct {
// 接收成员ID列表,“|”分隔,max:1000,全部成员:"@all"
ToUser string `json:"touser,omitempty"`
// 接收部门ID列表,“|”分隔,max:100
ToParty string `json:"toparty,omitempty"`
// 接收标签ID列表,“|”分隔,max:100
ToTag string `json:"totag,omitempty"`
// 消息类型
MsgType string `json:"msgtype,omitempty"`
// 企业应用ID
AgentID int `json:"agentid,omitempty"`
// 是否是保密消息,0表示否,1表示是,默认0
Safe int8 `json:"safe,omitempty"`
// 是否开启id转译,0表示否,1表示是,默认0
EnableIdTrans int8 `json:"enable_id_trans,omitempty"`
// 是否开启重复消息检查,0表示否,1表示是,默认0
EnableDuplicateCheck int8 `json:"enable_duplicate_check,omitempty"`
// 是否重复消息检查的时间间隔,默认1800s,最大不超过4小时
DuplicateCheckInterval int64 `json:"duplicate_check_interval,omitempty"`
Text *TextMessage `json:"text,omitempty"` // 文本消息
Markdown *TextMessage `json:"markdown,omitempty"` // markdown 消息
Image *MediaMessage `json:"image,omitempty"` // 图片消息
Voice *MediaMessage `json:"voice,omitempty"` // 语音消息
File *MediaMessage `json:"file,omitempty"` // 文件消息
Video *VideoMessage `json:"video,omitempty"` // 视频消息
TextCard *TextCardMessage `json:"textcard,omitempty"` // 文本卡片消息
News *NewsMessage `json:"news,omitempty"` // 图文消息
MPNews *MPNewsMessage `json:"mpnews,omitempty"` // 图文消息(mpnews)
MiniProgram *MiniprogramNoticeMessage `json:"miniprogram_notice,omitempty"` // 小程序消息
TaskCard *TaskCardMessage `json:"taskcard,omitempty"` // 任务卡片消息
}
// SetUser 设置接收成员
func (msg *Message) SetUser(user ...string) {
msg.ToUser = strings.Join(user, "|")
}
// SetParty 设置接收部门
func (msg *Message) SetParty(party ...string) {
msg.ToParty = strings.Join(party, "|")
}
// SetTag 设置接收标签
func (msg *Message) SetTag(tag ...string) {
msg.ToTag = strings.Join(tag, "|")
}
// RespMessage 定义了消息会话响应
type RespMessage struct {
// 如果全部接收人无权限或不存在,则本次调用返回失败,errcode为81013。
baseCaller
InvalidUser string `json:"invaliduser"`
InvalidParty string `json:"invalidparty"`
InvalidTag string `json:"invalidtag"`
}
// SendMessage 用于消息推送-发送应用消息,返回接收失败用户、组织、标签列表
func (a *Agent) SendMessage(msg *Message) (map[string][]string, error) {
msg.AgentID = a.agentID
body, _ := json.Marshal(msg)
var resp RespMessage
var invalid = make(map[string][]string, 3)
err := a.ExecuteWithToken("POST", "message/send", nil, bytes.NewReader(body), &resp)
if err != nil {
return nil, err
}
invalid["user"] = strings.Split(resp.InvalidUser, "|")
invalid["party"] = strings.Split(resp.InvalidParty, "|")
invalid["tag"] = strings.Split(resp.InvalidTag, "|")
return invalid, nil
}
// UpdateTaskcard 更新任务卡片消息状态,返回接收失败用户列表
func (a *Agent) UpdateTaskcard(taskId, clickedKey string, userids []string) ([]string, error) {
request := map[string]interface{}{
"userids": userids,
"agentid": a.agentID,
"task_id": taskId,
"clicked_key": clickedKey,
}
body, _ := json.Marshal(request)
var resp struct {
baseCaller
Invaliduser []string `json:"invaliduser"`
}
err := a.ExecuteWithToken("POST", "message/update_taskcard", nil, bytes.NewReader(body), &resp)
return resp.Invaliduser, err
}