forked from eatmoreapple/openwechat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.go
853 lines (763 loc) · 25.2 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
package openwechat
import (
"context"
"encoding/xml"
"errors"
"fmt"
"io"
"net/http"
"os"
"strconv"
"strings"
"sync"
"time"
)
type Message struct {
isAt bool
AppInfo struct {
Type int
AppID string
}
AppMsgType AppMessageType
HasProductId int
ImgHeight int
ImgStatus int
ImgWidth int
ForwardFlag int
MsgType MessageType
Status int
StatusNotifyCode int
SubMsgType int
VoiceLength int
CreateTime int64
NewMsgId int64
PlayLength int64
MediaId string
MsgId string
EncryFileName string
FileName string
FileSize string
Content string
FromUserName string
OriContent string
StatusNotifyUserName string
Ticket string
ToUserName string
Url string
senderUserNameInGroup string
RecommendInfo RecommendInfo
bot *Bot
mu sync.RWMutex
context context.Context
item map[string]interface{}
Raw []byte `json:"-"`
RawContent string `json:"-"` // 消息原始内容
}
// Sender 获取消息的发送者
func (m *Message) Sender() (*User, error) {
if m.IsSendBySelf() {
return m.Owner().User, nil
}
// 首先尝试从缓存里面查找, 如果没有找到则从服务器获取
members, err := m.bot.self.Members()
if err != nil {
return nil, err
}
user, exist := members.GetByUserName(m.FromUserName)
if !exist {
// 找不到, 从服务器获取
user = newFriend(m.FromUserName, m.Owner()).User
err = user.Detail()
}
if m.IsSendByGroup() && len(user.MemberList) == 0 {
err = user.Detail()
}
return user, err
}
// SenderInGroup 获取消息在群里面的发送者
func (m *Message) SenderInGroup() (*User, error) {
if !m.IsComeFromGroup() {
return nil, errors.New("message is not from group")
}
// 拍一拍系列的系统消息
// https://github.com/eatmoreapple/openwechat/issues/66
if m.IsSystem() {
// 判断是否有自己发送
if m.IsSendBySelf() {
return m.Owner().User, nil
}
return nil, errors.New("can not found sender from system message")
}
user, err := m.Sender()
if err != nil {
return nil, err
}
if user.IsFriend() {
return user, nil
}
group := &Group{user}
return group.SearchMemberByUsername(m.senderUserNameInGroup)
}
// Receiver 获取消息的接收者
// 如果消息是群组消息,则返回群组
// 如果消息是好友消息,则返回好友
// 如果消息是系统消息,则返回当前用户
func (m *Message) Receiver() (*User, error) {
if m.IsSystem() || m.ToUserName == m.bot.self.UserName {
return m.bot.self.User, nil
}
// https://github.com/eatmoreapple/openwechat/issues/113
if m.ToUserName == FileHelper {
return m.Owner().FileHelper().User, nil
}
if m.IsSendByGroup() {
groups, err := m.Owner().Groups()
if err != nil {
return nil, err
}
username := m.FromUserName
if m.IsSendBySelf() {
username = m.ToUserName
}
users := groups.SearchByUserName(1, username)
if users.Count() == 0 {
group := newUser(m.Owner(), username)
if err := group.Detail(); err == nil {
return group, nil
}
return nil, ErrNoSuchUserFound
}
return users.First().User, nil
} else {
members, err := m.Owner().Members()
if err != nil {
return nil, err
}
user, exist := members.GetByUserName(m.ToUserName)
if !exist {
return nil, ErrNoSuchUserFound
}
return user, nil
}
}
// IsSendBySelf 判断消息是否由自己发送
func (m *Message) IsSendBySelf() bool {
return m.FromUserName == m.Owner().UserName
}
// IsSendByFriend 判断消息是否由好友发送
func (m *Message) IsSendByFriend() bool {
return !m.IsSendByGroup() && strings.HasPrefix(m.FromUserName, "@") && !m.IsSendBySelf()
}
// IsSendByGroup 判断消息是否由群组发送
func (m *Message) IsSendByGroup() bool {
return strings.HasPrefix(m.FromUserName, "@@") || (m.IsSendBySelf() && strings.HasPrefix(m.ToUserName, "@@"))
}
// IsSelfSendToGroup 判断消息是否由自己发送到群组
func (m *Message) IsSelfSendToGroup() bool {
return m.IsSendBySelf() && strings.HasPrefix(m.ToUserName, "@@")
}
// ReplyText 回复文本消息
func (m *Message) ReplyText(content string) (*SentMessage, error) {
// 判断是否由自己发送
username := m.FromUserName
if m.IsSendBySelf() {
username = m.ToUserName
}
return m.Owner().sendTextToUser(username, content)
}
// ReplyEmoticon 回复表情
func (m *Message) ReplyEmoticon(md5 string, file io.Reader) (*SentMessage, error) {
// 判断是否由自己发送
username := m.FromUserName
if m.IsSendBySelf() {
username = m.ToUserName
}
return m.Owner().sendEmoticonToUser(username, md5, file)
}
// ReplyImage 回复图片消息
func (m *Message) ReplyImage(file io.Reader) (*SentMessage, error) {
// 判断是否由自己发送
username := m.FromUserName
if m.IsSendBySelf() {
username = m.ToUserName
}
return m.Owner().sendImageToUser(username, file)
}
// ReplyVideo 回复视频消息
func (m *Message) ReplyVideo(file io.Reader) (*SentMessage, error) {
// 判断是否由自己发送
username := m.FromUserName
if m.IsSendBySelf() {
username = m.ToUserName
}
return m.Owner().sendVideoToUser(username, file)
}
// ReplyFile 回复文件消息
func (m *Message) ReplyFile(file io.Reader) (*SentMessage, error) {
// 判断是否由自己发送
username := m.FromUserName
if m.IsSendBySelf() {
username = m.ToUserName
}
return m.Owner().sendFileToUser(username, file)
}
func (m *Message) IsText() bool {
return m.MsgType == MsgTypeText && m.Url == ""
}
func (m *Message) IsLocation() bool {
return m.MsgType == MsgTypeText && strings.Contains(m.Url, "apis.map.qq.com") && strings.Contains(m.Content, "pictype=location")
}
func (m *Message) IsRealtimeLocation() bool {
return m.IsRealtimeLocationStart() || m.IsRealtimeLocationStop()
}
func (m *Message) IsRealtimeLocationStart() bool {
return m.MsgType == MsgTypeApp && m.AppMsgType == AppMsgTypeRealtimeShareLocation
}
func (m *Message) IsRealtimeLocationStop() bool {
return m.MsgType == MsgTypeSys && m.Content == "位置共享已经结束"
}
func (m *Message) IsPicture() bool {
return m.MsgType == MsgTypeImage
}
// IsEmoticon 是否为表情包消息
func (m *Message) IsEmoticon() bool {
return m.MsgType == MsgTypeEmoticon
}
func (m *Message) IsVoice() bool {
return m.MsgType == MsgTypeVoice
}
func (m *Message) IsFriendAdd() bool {
return m.MsgType == MsgTypeVerify && m.FromUserName == "fmessage"
}
func (m *Message) IsCard() bool {
return m.MsgType == MsgTypeShareCard
}
func (m *Message) IsVideo() bool {
return m.MsgType == MsgTypeVideo || m.MsgType == MsgTypeMicroVideo
}
func (m *Message) IsMedia() bool {
return m.MsgType == MsgTypeApp
}
// IsRecalled 判断是否撤回
func (m *Message) IsRecalled() bool {
return m.MsgType == MsgTypeRecalled
}
func (m *Message) IsSystem() bool {
return m.MsgType == MsgTypeSys
}
func (m *Message) IsNotify() bool {
return m.MsgType == 51 && m.StatusNotifyCode != 0
}
// IsTransferAccounts 判断当前的消息是不是微信转账
func (m *Message) IsTransferAccounts() bool {
return m.IsMedia() && m.FileName == "微信转账"
}
// IsSendRedPacket 判断当前是否发出红包
func (m *Message) IsSendRedPacket() bool {
return m.IsSystem() && m.Content == "发出红包,请在手机上查看"
}
// IsReceiveRedPacket 判断当前是否收到红包
func (m *Message) IsReceiveRedPacket() bool {
return m.IsSystem() && m.Content == "收到红包,请在手机上查看"
}
// IsRenameGroup 判断当前是否是群组重命名
func (m *Message) IsRenameGroup() bool {
return m.IsSystem() && strings.Contains(m.Content, "修改群名为")
}
func (m *Message) IsSysNotice() bool {
return m.MsgType == 9999
}
// StatusNotify 判断是否为操作通知消息
func (m *Message) StatusNotify() bool {
return m.MsgType == 51
}
// HasFile 判断消息是否为文件类型的消息
func (m *Message) HasFile() bool {
return m.IsPicture() || m.IsVoice() || m.IsVideo() || m.HasAttachment() || m.IsEmoticon()
}
// HasAttachment 是否有附件
func (m *Message) HasAttachment() bool {
return m.IsMedia() && m.AppMsgType == AppMsgTypeAttach
}
// GetFile 获取文件消息的文件
func (m *Message) GetFile() (*http.Response, error) {
if !m.HasFile() {
return nil, errors.New("invalid message type")
}
switch {
case m.IsPicture() || m.IsEmoticon():
return m.bot.Caller.Client.WebWxGetMsgImg(m.Context(), m, m.bot.Storage.LoginInfo)
case m.IsVoice():
return m.bot.Caller.Client.WebWxGetVoice(m.Context(), m, m.bot.Storage.LoginInfo)
case m.IsVideo():
return m.bot.Caller.Client.WebWxGetVideo(m.Context(), m, m.bot.Storage.LoginInfo)
case m.IsMedia() && m.AppMsgType == AppMsgTypeAttach:
return m.bot.Caller.Client.WebWxGetMedia(m.Context(), m, m.bot.Storage.LoginInfo)
default:
return nil, errors.New("unsupported type")
}
}
// GetPicture 获取图片消息的响应
func (m *Message) GetPicture() (*http.Response, error) {
if !(m.IsPicture() || m.IsEmoticon()) {
return nil, errors.New("picture message required")
}
return m.bot.Caller.Client.WebWxGetMsgImg(m.Context(), m, m.bot.Storage.LoginInfo)
}
// GetVoice 获取录音消息的响应
func (m *Message) GetVoice() (*http.Response, error) {
if !m.IsVoice() {
return nil, errors.New("voice message required")
}
return m.bot.Caller.Client.WebWxGetVoice(m.Context(), m, m.bot.Storage.LoginInfo)
}
// GetVideo 获取视频消息的响应
func (m *Message) GetVideo() (*http.Response, error) {
if !m.IsVideo() {
return nil, errors.New("video message required")
}
return m.bot.Caller.Client.WebWxGetVideo(m.Context(), m, m.bot.Storage.LoginInfo)
}
// GetMedia 获取媒体消息的响应
func (m *Message) GetMedia() (*http.Response, error) {
if !m.IsMedia() {
return nil, errors.New("media message required")
}
return m.bot.Caller.Client.WebWxGetMedia(m.Context(), m, m.bot.Storage.LoginInfo)
}
// SaveFile 保存文件到指定的 io.Writer
func (m *Message) SaveFile(writer io.Writer) error {
resp, err := m.GetFile()
if err != nil {
return err
}
defer func() { _ = resp.Body.Close() }()
_, err = io.Copy(writer, resp.Body)
return err
}
// SaveFileToLocal 保存文件到本地
func (m *Message) SaveFileToLocal(filename string) error {
file, err := os.Create(filename)
if err != nil {
return err
}
defer func() { _ = file.Close() }()
return m.SaveFile(file)
}
// Card 获取card类型
func (m *Message) Card() (*Card, error) {
if !m.IsCard() {
return nil, errors.New("card message required")
}
var card Card
err := xml.Unmarshal([]byte(m.Content), &card)
return &card, err
}
// FriendAddMessageContent 获取FriendAddMessageContent内容
func (m *Message) FriendAddMessageContent() (*FriendAddMessage, error) {
if !m.IsFriendAdd() {
return nil, errors.New("friend add message required")
}
var f FriendAddMessage
err := xml.Unmarshal([]byte(m.Content), &f)
return &f, err
}
// RevokeMsg 获取撤回消息的内容
func (m *Message) RevokeMsg() (*RevokeMsg, error) {
if !m.IsRecalled() {
return nil, errors.New("recalled message required")
}
var r RevokeMsg
err := xml.Unmarshal([]byte(m.Content), &r)
return &r, err
}
// Agree 同意好友的请求
func (m *Message) Agree(verifyContents ...string) (*Friend, error) {
if !m.IsFriendAdd() {
return nil, errors.New("friend add message required")
}
opt := &CallerWebWxVerifyUserOptions{
VerifyContent: strings.Join(verifyContents, ""),
RecommendInfo: m.RecommendInfo,
BaseRequest: m.bot.Storage.Request,
LoginInfo: m.bot.Storage.LoginInfo,
}
err := m.bot.Caller.WebWxVerifyUser(m.Context(), opt)
if err != nil {
return nil, err
}
friend := newFriend(m.RecommendInfo.UserName, m.Owner())
if err = friend.Detail(); err != nil {
return nil, err
}
return friend, nil
}
// AsRead 将消息设置为已读
func (m *Message) AsRead() error {
opt := &CallerWebWxStatusAsReadOptions{
BaseRequest: m.bot.Storage.Request,
LoginInfo: m.bot.Storage.LoginInfo,
Message: m,
}
return m.bot.Caller.WebWxStatusAsRead(m.Context(), opt)
}
// IsArticle 判断当前的消息类型是否为文章
func (m *Message) IsArticle() bool {
return m.AppMsgType == AppMsgTypeUrl
}
// MediaData 获取当前App Message的具体内容
func (m *Message) MediaData() (*AppMessageData, error) {
if !m.IsMedia() {
return nil, errors.New("media message required")
}
var data AppMessageData
if err := xml.Unmarshal([]byte(m.Content), &data); err != nil {
return nil, err
}
return &data, nil
}
// Set 往消息上下文中设置值
// goroutine safe
func (m *Message) Set(key string, value interface{}) {
m.mu.Lock()
defer m.mu.Unlock()
if m.item == nil {
m.item = make(map[string]interface{})
}
m.item[key] = value
}
// Get 从消息上下文中获取值
// goroutine safe
func (m *Message) Get(key string) (value interface{}, exist bool) {
m.mu.RLock()
defer m.mu.RUnlock()
value, exist = m.item[key]
return
}
// 消息初始化,根据不同的消息作出不同的处理
func (m *Message) init(bot *Bot) {
m.bot = bot
defaultMessageProcessor.ProcessMessage(m)
}
// SendMessage 发送消息的结构体
type SendMessage struct {
Type MessageType
Content string
FromUserName string
ToUserName string
LocalID string
ClientMsgId string
MediaId string `json:"MediaId,omitempty"`
EmojiFlag int `json:"EmojiFlag,omitempty"`
EMoticonMd5 string `json:"EMoticonMd5,omitempty"`
}
// NewSendMessage SendMessage的构造方法
func NewSendMessage(msgType MessageType, content, fromUserName, toUserName, mediaId string) *SendMessage {
id := strconv.FormatInt(time.Now().UnixNano()/1e2, 10)
return &SendMessage{
Type: msgType,
Content: content,
FromUserName: fromUserName,
ToUserName: toUserName,
LocalID: id,
ClientMsgId: id,
MediaId: mediaId,
}
}
// NewTextSendMessage 文本消息的构造方法
func NewTextSendMessage(content, fromUserName, toUserName string) *SendMessage {
return NewSendMessage(MsgTypeText, content, fromUserName, toUserName, "")
}
// NewMediaSendMessage 媒体消息的构造方法
func NewMediaSendMessage(msgType MessageType, fromUserName, toUserName, mediaId string) *SendMessage {
return NewSendMessage(msgType, "", fromUserName, toUserName, mediaId)
}
// NewEmoticonSendMessage 表情消息的构造方法
func NewEmoticonSendMessage(fromUserName, toUserName, md5OrMediaId string) *SendMessage {
msg := NewSendMessage(MsgTypeEmoticon, "", fromUserName, toUserName, "")
msg.EmojiFlag = 2
if strings.HasPrefix(md5OrMediaId, "@") {
msg.MediaId = md5OrMediaId
} else {
msg.EMoticonMd5 = md5OrMediaId
}
return msg
}
// RecommendInfo 一些特殊类型的消息会携带该结构体信息
type RecommendInfo struct {
OpCode int
Scene int
Sex int
VerifyFlag int
AttrStatus int64
QQNum int64
Alias string
City string
Content string
NickName string
Province string
Signature string
Ticket string
UserName string
}
// Card 名片消息内容
type Card struct {
XMLName xml.Name `xml:"msg"`
ImageStatus int `xml:"imagestatus,attr"`
Scene int `xml:"scene,attr"`
Sex int `xml:"sex,attr"`
Certflag int `xml:"certflag,attr"`
BigHeadImgUrl string `xml:"bigheadimgurl,attr"`
SmallHeadImgUrl string `xml:"smallheadimgurl,attr"`
UserName string `xml:"username,attr"`
NickName string `xml:"nickname,attr"`
ShortPy string `xml:"shortpy,attr"`
Alias string `xml:"alias,attr"` // Note: 这个是名片用户的微信号
Province string `xml:"province,attr"`
City string `xml:"city,attr"`
Sign string `xml:"sign,attr"`
Certinfo string `xml:"certinfo,attr"`
BrandIconUrl string `xml:"brandIconUrl,attr"`
BrandHomeUr string `xml:"brandHomeUr,attr"`
BrandSubscriptConfigUrl string `xml:"brandSubscriptConfigUrl,attr"`
BrandFlags string `xml:"brandFlags,attr"`
RegionCode string `xml:"regionCode,attr"`
}
// FriendAddMessage 好友添加消息信息内容
type FriendAddMessage struct {
XMLName xml.Name `xml:"msg"`
Shortpy string `xml:"shortpy,attr"`
ImageStatus int `xml:"imagestatus,attr"`
Scene int `xml:"scene,attr"`
PerCard int `xml:"percard,attr"`
Sex int `xml:"sex,attr"`
AlbumFlag int `xml:"albumflag,attr"`
AlbumStyle int `xml:"albumstyle,attr"`
SnsFlag int `xml:"snsflag,attr"`
Opcode int `xml:"opcode,attr"`
FromUserName string `xml:"fromusername,attr"`
EncryptUserName string `xml:"encryptusername,attr"`
FromNickName string `xml:"fromnickname,attr"`
Content string `xml:"content,attr"`
Country string `xml:"country,attr"`
Province string `xml:"province,attr"`
City string `xml:"city,attr"`
Sign string `xml:"sign,attr"`
Alias string `xml:"alias,attr"`
WeiBo string `xml:"weibo,attr"`
AlbumBgImgId string `xml:"albumbgimgid,attr"`
SnsBgImgId string `xml:"snsbgimgid,attr"`
SnsBgObjectId string `xml:"snsbgobjectid,attr"`
MHash string `xml:"mhash,attr"`
MFullHash string `xml:"mfullhash,attr"`
BigHeadImgUrl string `xml:"bigheadimgurl,attr"`
SmallHeadImgUrl string `xml:"smallheadimgurl,attr"`
Ticket string `xml:"ticket,attr"`
GoogleContact string `xml:"googlecontact,attr"`
QrTicket string `xml:"qrticket,attr"`
ChatRoomUserName string `xml:"chatroomusername,attr"`
SourceUserName string `xml:"sourceusername,attr"`
ShareCardUserName string `xml:"sharecardusername,attr"`
ShareCardNickName string `xml:"sharecardnickname,attr"`
CardVersion string `xml:"cardversion,attr"`
BrandList struct {
Count int `xml:"count,attr"`
Ver int64 `xml:"ver,attr"`
} `xml:"brandlist"`
}
// RevokeMsg 撤回消息Content
type RevokeMsg struct {
SysMsg xml.Name `xml:"sysmsg"`
Type string `xml:"type,attr"`
RevokeMsg struct {
OldMsgId int64 `xml:"oldmsgid"`
MsgId int64 `xml:"msgid"`
Session string `xml:"session"`
ReplaceMsg string `xml:"replacemsg"`
} `xml:"revokemsg"`
}
// SentMessage 已发送的信息
type SentMessage struct {
*SendMessage
self *Self
MsgId string
}
// Revoke 撤回该消息
func (s *SentMessage) Revoke() error {
return s.self.RevokeMessage(s)
}
// CanRevoke 是否可以撤回该消息
func (s *SentMessage) CanRevoke() bool {
i, err := strconv.ParseInt(s.ClientMsgId, 10, 64)
if err != nil {
return false
}
start := time.Unix(i/10000000, 0)
return time.Since(start) < 2*time.Minute
}
// ForwardToFriends 转发该消息给好友
// 该方法会阻塞直到所有好友都接收到消息
// 这里为了兼容以前的版本,默认休眠0.5秒,如果需要更快的速度,可以使用 SentMessage.ForwardToFriendsWithDelay
func (s *SentMessage) ForwardToFriends(friends ...*Friend) error {
return s.ForwardToFriendsWithDelay(time.Second/2, friends...)
}
// ForwardToFriendsWithDelay 转发该消息给好友,延迟指定时间
func (s *SentMessage) ForwardToFriendsWithDelay(delay time.Duration, friends ...*Friend) error {
return s.self.ForwardMessageToFriends(s, delay, friends...)
}
// ForwardToGroups 转发该消息给群组
// 该方法会阻塞直到所有群组都接收到消息
// 这里为了兼容以前的版本,默认休眠0.5秒,如果需要更快的速度,可以使用 SentMessage.ForwardToGroupsDelay
func (s *SentMessage) ForwardToGroups(groups ...*Group) error {
return s.ForwardToGroupsWithDelay(time.Second/2, groups...)
}
// ForwardToGroupsWithDelay 转发该消息给群组, 延迟指定时间
func (s *SentMessage) ForwardToGroupsWithDelay(delay time.Duration, groups ...*Group) error {
return s.self.ForwardMessageToGroups(s, delay, groups...)
}
type appmsg struct {
Type int `xml:"type"`
AppId string `xml:"appid,attr"` // wxeb7ec651dd0aefa9
SdkVer string `xml:"sdkver,attr"`
Title string `xml:"title"`
Des string `xml:"des"`
Action string `xml:"action"`
Content string `xml:"content"`
Url string `xml:"url"`
LowUrl string `xml:"lowurl"`
ExtInfo string `xml:"extinfo"`
AppAttach struct {
TotalLen int64 `xml:"totallen"`
AttachId string `xml:"attachid"`
FileExt string `xml:"fileext"`
} `xml:"appattach"`
}
func (f appmsg) XmlByte() ([]byte, error) {
return xml.Marshal(f)
}
func newFileAppMessage(stat os.FileInfo, attachId string) *appmsg {
m := &appmsg{AppId: appMessageAppId, Title: stat.Name()}
m.AppAttach.AttachId = attachId
m.AppAttach.TotalLen = stat.Size()
m.Type = 6
m.AppAttach.FileExt = getFileExt(stat.Name())
return m
}
// AppMessageData 获取APP消息的正文
// See https://github.com/eatmoreapple/openwechat/issues/62
type AppMessageData struct {
XMLName xml.Name `xml:"msg"`
AppMsg struct {
Appid string `xml:"appid,attr"`
SdkVer string `xml:"sdkver,attr"`
Title string `xml:"title"`
Des string `xml:"des"`
Action string `xml:"action"`
Type AppMessageType `xml:"type"`
ShowType string `xml:"showtype"`
Content string `xml:"content"`
URL string `xml:"url"`
DataUrl string `xml:"dataurl"`
LowUrl string `xml:"lowurl"`
LowDataUrl string `xml:"lowdataurl"`
RecordItem string `xml:"recorditem"`
ThumbUrl string `xml:"thumburl"`
MessageAction string `xml:"messageaction"`
Md5 string `xml:"md5"`
ExtInfo string `xml:"extinfo"`
SourceUsername string `xml:"sourceusername"`
SourceDisplayName string `xml:"sourcedisplayname"`
CommentUrl string `xml:"commenturl"`
AppAttach struct {
TotalLen string `xml:"totallen"`
AttachId string `xml:"attachid"`
EmoticonMd5 string `xml:"emoticonmd5"`
FileExt string `xml:"fileext"`
FileUploadToken string `xml:"fileuploadtoken"`
OverwriteNewMsgId string `xml:"overwrite_newmsgid"`
FileKey string `xml:"filekey"`
CdnAttachUrl string `xml:"cdnattachurl"`
AesKey string `xml:"aeskey"`
EncryVer string `xml:"encryver"`
} `xml:"appattach"`
WeAppInfo struct {
PagePath string `xml:"pagepath"`
Username string `xml:"username"`
Appid string `xml:"appid"`
AppServiceType string `xml:"appservicetype"`
} `xml:"weappinfo"`
WebSearch string `xml:"websearch"`
} `xml:"appmsg"`
FromUsername string `xml:"fromusername"`
Scene string `xml:"scene"`
AppInfo struct {
Version string `xml:"version"`
AppName string `xml:"appname"`
} `xml:"appinfo"`
CommentUrl string `xml:"commenturl"`
}
// IsFromApplet 判断当前的消息类型是否来自小程序
func (a *AppMessageData) IsFromApplet() bool {
return a.AppMsg.Appid != ""
}
// IsArticle 判断当前的消息类型是否为文章
func (a *AppMessageData) IsArticle() bool {
return a.AppMsg.Type == AppMsgTypeUrl
}
// IsFile 判断当前的消息类型是否为文件
func (a AppMessageData) IsFile() bool {
return a.AppMsg.Type == AppMsgTypeAttach
}
// IsComeFromGroup 判断消息是否来自群组
// 可能是自己或者别的群员发送
func (m *Message) IsComeFromGroup() bool {
return m.IsSendByGroup() || (strings.HasPrefix(m.ToUserName, "@@") && m.IsSendBySelf())
}
func (m *Message) String() string {
return fmt.Sprintf("<%s:%s>", m.MsgType, m.MsgId)
}
// IsAt 判断消息是否为@消息
func (m *Message) IsAt() bool {
return m.isAt
}
// IsPaiYiPai 判断消息是否为拍一拍
// 不要问我为什么取名为PaiYiPai,因为我也不知道取啥名字好
func (m *Message) IsPaiYiPai() bool {
return m.IsTickled()
}
// IsJoinGroup 判断是否有人加入了群聊
func (m *Message) IsJoinGroup() bool {
return m.IsSystem() && (strings.Contains(m.Content, "加入了群聊") || strings.Contains(m.Content, "分享的二维码加入群聊")) && m.IsSendByGroup()
}
// IsTickled 判断消息是否为拍一拍
func (m *Message) IsTickled() bool {
return m.IsSystem() && (strings.Contains(m.Content, "拍了拍") || strings.Contains(m.Content, "拍拍"))
}
// IsTickledMe 判断消息是否拍了拍自己
func (m *Message) IsTickledMe() bool {
return m.IsSystem() && (strings.Count(m.Content, "拍了拍我") == 1 || strings.Count(m.Content, "拍拍我") == 1)
}
// IsVoipInvite 判断消息是否为语音或视频通话邀请
func (m *Message) IsVoipInvite() bool {
return m.MsgType == MsgTypeVoipInvite
}
// Bot 返回当前消息所属的Bot
func (m *Message) Bot() *Bot {
return m.bot
}
// Owner 返回当前消息的拥有者
func (m *Message) Owner() *Self {
return m.Bot().self
}
func (m *Message) Context() context.Context {
if m.context == nil {
return m.Bot().Context()
}
return m.context
}
func (m *Message) WithContext(ctx context.Context) {
if ctx == nil {
panic("nil context")
}
m.context = ctx
}