forked from eatmoreapple/openwechat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.go
465 lines (421 loc) · 11.7 KB
/
bot.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
package openwechat
import (
"context"
"errors"
"io"
"log"
"net/url"
"os/exec"
"runtime"
)
type Bot struct {
ScanCallBack func(body CheckLoginResponse) // 扫码回调,可获取扫码用户的头像
LoginCallBack func(body CheckLoginResponse) // 登陆回调
LogoutCallBack func(bot *Bot) // 退出回调
UUIDCallback func(uuid string) // 获取UUID的回调函数
SyncCheckCallback func(resp SyncCheckResponse) // 心跳回调
MessageHandler MessageHandler // 获取消息成功的handle
MessageErrorHandler MessageErrorHandler // 获取消息发生错误的handle, 返回err == nil 则尝试继续监听
Serializer Serializer // 序列化器, 默认为json
Caller *Caller
Storage *Session
err error
context context.Context
cancel func()
self *Self
hotReloadStorage HotReloadStorage
uuid string
loginUUID string
deviceId string // 设备Id
loginOptionGroup BotOptionGroup
}
// Alive 判断当前用户是否正常在线
func (b *Bot) Alive() bool {
select {
case <-b.context.Done():
return false
default:
return b.self != nil
}
}
// GetCurrentUser 获取当前的用户
//
// self, err := bot.GetCurrentUser()
// if err != nil {
// return
// }
// fmt.Println(self.NickName)
func (b *Bot) GetCurrentUser() (*Self, error) {
if b.self == nil {
return nil, errors.New("user not login")
}
return b.self, nil
}
// login 这里对进行一些对登录前后的hook
func (b *Bot) login(login BotLogin) (err error) {
opt := b.loginOptionGroup
opt.Prepare(b)
if err = login.Login(b); err != nil {
err = opt.OnError(b, err)
}
if err != nil {
return err
}
return opt.OnSuccess(b)
}
// Login 用户登录
func (b *Bot) Login() error {
scanLogin := &ScanLogin{UUID: b.loginUUID}
return b.login(scanLogin)
}
// HotLogin 热登录,可实现在单位时间内免重复扫码登录
// 热登录需要先扫码登录一次才可以进行热登录
func (b *Bot) HotLogin(storage HotReloadStorage, opts ...BotLoginOption) error {
hotLogin := &HotLogin{storage: storage}
// 进行相关设置。
// 如果相对默认的行为进行修改,在opts里面进行追加即可。
b.loginOptionGroup = opts
return b.login(hotLogin)
}
// PushLogin 免扫码登录
// 免扫码登录需要先扫码登录一次才可以进行扫码登录
func (b *Bot) PushLogin(storage HotReloadStorage, opts ...BotLoginOption) error {
pushLogin := &PushLogin{storage: storage}
// 进行相关设置。
// 如果相对默认的行为进行修改,在opts里面进行追加即可。
b.loginOptionGroup = opts
return b.login(pushLogin)
}
// Logout 用户退出
func (b *Bot) Logout() error {
if b.Alive() {
info := b.Storage.LoginInfo
if err := b.Caller.Logout(b.Context(), info); err != nil {
return err
}
b.ExitWith(ErrUserLogout)
return nil
}
return errors.New("user not login")
}
// loginFromURL 登录逻辑
func (b *Bot) loginFromURL(path *url.URL) error {
// 获取登录的一些基本的信息
info, err := b.Caller.GetLoginInfo(b.Context(), path)
if err != nil {
return err
}
// 将LoginInfo存到storage里面
b.Storage.LoginInfo = info
// 处理设备Id
if b.deviceId == "" {
b.deviceId = GetRandomDeviceId()
}
// 构建BaseRequest
request := &BaseRequest{
Uin: info.WxUin,
Sid: info.WxSid,
Skey: info.SKey,
DeviceID: b.deviceId,
}
// 将BaseRequest存到storage里面方便后续调用
b.Storage.Request = request
return b.webInit()
}
// WebInit 根据有效凭证获取和初始化用户信息
func (b *Bot) webInit() error {
req := b.Storage.Request
info := b.Storage.LoginInfo
// 获取初始化的用户信息和一些必要的参数
resp, err := b.Caller.WebInit(b.Context(), req)
if err != nil {
return err
}
// 设置当前的用户
b.self = &Self{bot: b, User: resp.User}
b.self.formatEmoji()
b.self.self = b.self
resp.ContactList.init(b.self)
// 读取和装载SyncKey
if b.Storage.Response != nil {
resp.SyncKey = b.Storage.Response.SyncKey
}
b.Storage.Response = resp
if b.hotReloadStorage != nil {
if err = b.DumpHotReloadStorage(); err != nil {
return err
}
}
// 构建通知手机客户端已经登录的参数
notifyOption := &CallerWebWxStatusNotifyOptions{
BaseRequest: req,
WebInitResponse: resp,
LoginInfo: info,
}
// 通知手机客户端已经登录
if err = b.Caller.WebWxStatusNotify(b.Context(), notifyOption); err != nil {
return err
}
// 开启协程,轮询获取是否有新的消息返回
go func() {
if b.MessageErrorHandler == nil {
b.MessageErrorHandler = defaultMessageErrorHandler
}
for {
if err = b.syncCheck(); err != nil {
// 判断是否继续, 如果不继续则退出
if err = b.MessageErrorHandler(err); err != nil {
b.ExitWith(err)
return
}
}
}
}()
return nil
}
func (b *Bot) updateGroups(msg *Message) {
if msg.IsSendByGroup() {
if msg.FromUserName == msg.bot.self.User.UserName {
return
}
// 首先尝试从缓存里面查找, 如果没有找到则从服务器获取
members, err := msg.bot.self.Members()
if err != nil {
return
}
_, exist := members.GetByUserName(msg.FromUserName)
if !exist {
// 找不到, 从服务器获取
user := newUser(msg.Owner(), msg.FromUserName)
_ = user.Detail()
b.self.members = b.self.members.Append(user)
b.self.groups = b.self.members.Groups()
}
}
}
// 轮询请求
// 根据状态码判断是否有新的请求
func (b *Bot) syncCheck() error {
var (
err error
resp *SyncCheckResponse
)
syncCheckOption := &CallerSyncCheckOptions{}
for b.Alive() {
// 重制相关参数,因为它们可能是动态的
syncCheckOption.BaseRequest = b.Storage.Request
syncCheckOption.WebInitResponse = b.Storage.Response
syncCheckOption.LoginInfo = b.Storage.LoginInfo
// 长轮询检查是否有消息返回
resp, err = b.Caller.SyncCheck(b.Context(), syncCheckOption)
if err != nil {
return err
}
// 执行心跳回调
if b.SyncCheckCallback != nil {
b.SyncCheckCallback(*resp)
}
// 如果不是正常的状态码返回,发生了错误,直接退出
if !resp.Success() {
return resp.Err()
}
// TODO 添加更多的状态码处理
switch resp.Selector {
case SelectorNormal:
continue
default:
messages, err := b.syncMessage()
if err != nil {
return err
}
// todo 将这个错误处理交给用户
_ = b.DumpHotReloadStorage()
if b.MessageHandler == nil {
continue
}
for _, message := range messages {
message.init(b)
// 默认同步调用
// 如果异步调用则需自行处理
// 如配合 openwechat.MessageMatchDispatcher 使用
// NOTE: 请确保 MessageHandler 不会阻塞,否则会导致收不到后续的消息
b.updateGroups(message)
b.MessageHandler(message)
}
}
}
return err
}
// 获取新的消息
func (b *Bot) syncMessage() ([]*Message, error) {
opt := CallerWebWxSyncOptions{
BaseRequest: b.Storage.Request,
WebInitResponse: b.Storage.Response,
LoginInfo: b.Storage.LoginInfo,
}
resp, err := b.Caller.WebWxSync(b.Context(), &opt)
if err != nil {
return nil, err
}
// 更新SyncKey并且重新存入storage 如获取到的SyncKey为空则不更新
if resp.SyncKey.Count > 0 {
b.Storage.Response.SyncKey = resp.SyncKey
}
return resp.AddMsgList, nil
}
// Block 当消息同步发生了错误或者用户主动在手机上退出,该方法会立即返回,否则会一直阻塞
func (b *Bot) Block() error {
if b.self == nil {
return errors.New("`Block` must be called after user login")
}
<-b.Context().Done()
return b.CrashReason()
}
// Exit 主动退出,让 Block 不在阻塞
func (b *Bot) Exit() {
b.self = nil
b.cancel()
if b.LogoutCallBack != nil {
b.LogoutCallBack(b)
}
}
// ExitWith 主动退出并且设置退出原因, 可以通过 `CrashReason` 获取退出原因
func (b *Bot) ExitWith(err error) {
b.err = err
b.Exit()
}
// CrashReason 获取当前Bot崩溃的原因
func (b *Bot) CrashReason() error {
return b.err
}
// DumpHotReloadStorage 写入HotReloadStorage
func (b *Bot) DumpHotReloadStorage() error {
if b.hotReloadStorage == nil {
return errors.New("HotReloadStorage can not be nil")
}
return b.DumpTo(b.hotReloadStorage)
}
// DumpTo 将热登录需要的数据写入到指定的 io.Writer 中
// 注: 写之前最好先清空之前的数据
func (b *Bot) DumpTo(writer io.Writer) error {
jar := b.Caller.Client.Jar()
item := HotReloadStorageItem{
BaseRequest: b.Storage.Request,
Jar: fromCookieJar(jar),
LoginInfo: b.Storage.LoginInfo,
WechatDomain: b.Caller.Client.Domain,
SyncKey: b.Storage.Response.SyncKey,
UUID: b.uuid,
}
return b.Serializer.Encode(writer, item)
}
// IsHot returns true if is hot login otherwise false
func (b *Bot) IsHot() bool {
return b.hotReloadStorage != nil
}
// UUID returns current UUID of bot
func (b *Bot) UUID() string {
return b.uuid
}
// Context returns current context of bot
func (b *Bot) Context() context.Context {
return b.context
}
func (b *Bot) reload() error {
if b.hotReloadStorage == nil {
return errors.New("hotReloadStorage is nil")
}
var item HotReloadStorageItem
if err := b.Serializer.Decode(b.hotReloadStorage, &item); err != nil {
return err
}
b.Caller.Client.SetCookieJar(item.Jar)
b.Storage.LoginInfo = item.LoginInfo
b.Storage.Request = item.BaseRequest
b.Caller.Client.Domain = item.WechatDomain
b.uuid = item.UUID
if item.SyncKey != nil {
if b.Storage.Response == nil {
b.Storage.Response = &WebInitResponse{}
}
b.Storage.Response.SyncKey = item.SyncKey
}
return nil
}
// NewBot Bot的构造方法
// 接收外部的 context.Context,用于控制Bot的存活
func NewBot(c context.Context) *Bot {
caller := DefaultCaller()
// 默认行为为网页版微信模式
caller.Client.SetMode(normal)
ctx, cancel := context.WithCancel(c)
return &Bot{
Caller: caller,
Storage: &Session{},
Serializer: &JsonSerializer{},
context: ctx,
cancel: cancel,
}
}
func New(ctx context.Context) *Bot {
return NewBot(ctx)
}
// DefaultBot 默认的Bot的构造方法,
// mode不传入默认为 openwechat.Normal,详情见mode
//
// bot := openwechat.DefaultBot(openwechat.Desktop)
func DefaultBot(prepares ...BotPreparer) *Bot {
bot := NewBot(context.Background())
// 获取二维码回调
bot.UUIDCallback = PrintlnQrcodeUrl
// 扫码回调
bot.ScanCallBack = func(_ CheckLoginResponse) {
log.Println("扫码成功,请在手机上确认登录")
}
// 登录回调
bot.LoginCallBack = func(_ CheckLoginResponse) {
log.Println("登录成功")
}
// 心跳回调函数
// 默认的行为打印SyncCheckResponse
bot.SyncCheckCallback = func(resp SyncCheckResponse) {
log.Printf("RetCode:%s Selector:%s", resp.RetCode, resp.Selector)
}
for _, prepare := range prepares {
prepare.Prepare(bot)
}
return bot
}
func Default(prepares ...BotPreparer) *Bot {
return DefaultBot(prepares...)
}
// GetQrcodeUrl 通过uuid获取登录二维码的url
func GetQrcodeUrl(uuid string) string {
return qrcode + uuid
}
// PrintlnQrcodeUrl 打印登录二维码
func PrintlnQrcodeUrl(uuid string) {
println("访问下面网址扫描二维码登录")
qrcodeUrl := GetQrcodeUrl(uuid)
println(qrcodeUrl)
// browser open the login url
_ = open(qrcodeUrl)
}
// open opens the specified URL in the default browser of the user.
func open(url string) error {
var (
cmd string
args []string
)
switch runtime.GOOS {
case "windows":
cmd, args = "cmd", []string{"/c", "start"}
case "darwin":
cmd = "open"
default:
// "linux", "freebsd", "openbsd", "netbsd"
cmd = "xdg-open"
}
args = append(args, url)
return exec.Command(cmd, args...).Start()
}