-
Notifications
You must be signed in to change notification settings - Fork 501
/
Copy pathdefine.js
64 lines (60 loc) · 1.4 KB
/
define.js
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
'use strict'
exports.wsEventType = [
'log',
'cmdRet',
'userEvent',
'sysEvent',
]
exports.userEvents = [
'qrcode', // 登陆二维码
'scan', // 扫码登陆状态
'login', // 登陆完成
'loaded', // 通讯录载入完毕
'logout', // 注销登录(账户退出)
'close', // 任务断线
'warn', // 错误
'sns', // 朋友圈事件(朋友圈小圆点)
'notify', // 推送消息通知
'autoLogin', // 自动重连成功通知
'push', // 推送消息(系统、好友消息等)
]
exports.loginType = {
auto : 'auto', // 断线重连
request: 'request', // 二次登陆
qrcode : 'qrcode', // 扫码登陆
phone : 'phone', // 手机验证码登陆
user : 'user', // 账号密码登陆
}
exports.blacklist = [
'appbrandcustomerservicemsg',
'blogapp',
'cardpackage',
'facebookapp',
'feedsapp',
'filehelper',
'floatbottle',
'floatbottle', // 漂流瓶
'fmessage', // 朋友推荐
'helper_entry',
'lbsapp',
'linkedinplugin',
'masssendapp',
'medianote', // 语音记事本
'mphelper', // 公众平台安全助手
'newsapp', // 腾讯新闻
'notification_messages',
'notifymessage',
'officialaccounts',
'pc_share',
'qmessage', // qq离线消息
'qqfriend',
'qqmail',
'qqsync',
'shakeapp',
'tmessage',
'voiceinputapp',
'voicevoipapp',
'voipapp',
'weibo', // 微博-未知
'weixin', // 腾讯团队
]