-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathevent_var.go
67 lines (60 loc) · 2.52 KB
/
event_var.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
package rbq
// 上报数据的类型
const (
EventPostTypeMessage = "message" // 接受到的消息
EventPostTypeMessageSent = "message_sent" // 发送的消息,需配置gocqhttp的message.report-self-message=true才会上报
EventPostTypeNotice = "notice" // 通知
EventPostTypeRequest = "request" // 请求
EventPostTypeMetaEvent = "meta_event" // 元事件
)
// 消息类型,群聊 or 私聊
const (
EventPostMsgTypePrivate = "private" // 私聊消息
EventPostMsgTypeGroup = "group" // 群消息
)
// 消息子类型
const (
EventPostMsgSubTypeFriend = "friend" // 好友消息
EventPostMsgSubTypeNormal = "normal" // 群消息
EventPostMsgSubTypeAnonymous = "anonymous" // 匿名消息
EventPostMsgSubTypeGroupSelf = "group_self" // 群中自身发送
EventPostMsgSubTypeGroup = "group" // 群临时会话
EventPostMsgSubTypeNotice = "notice" // 系统提示
)
// 请求类型
const (
EventRequestTypeFriend = "friend" // 加好友请求
EventRequestTypeGroup = "group" // 加群请求/邀请
)
// 通知类型
const (
EventNoticeTypeGroupUpload = "group_upload" // 群文件上传
EventNoticeTypeGroupAdmin = "group_admin" // 群管理员变更
EventNoticeTypeGroupDecrease = "group_decrease" // 群成员减少
EventNoticeTypeGroupIncrease = "group_increase" // 群成员增加
EventNoticeTypeGroupBan = "group_ban" // 群成员禁言
EventNoticeTypeFriendAdd = "friend_add" // 好友添加
EventNoticeTypeGroupRecall = "group_recall" // 群消息撤回
EventNoticeTypeFriendRecall = "friend_recall" // 好友消息撤回
EventNoticeTypeGroupCard = "group_card" // 群名片变更
EventNoticeTypeOfflineFile = "offline_file" // 离线文件上传
EventNoticeTypeClientStatus = "client_status" // 客户端状态变更
EventNoticeTypeEssence = "essence" // 精华消息
EventNoticeTypeNotify = "notify" // 系统通知
)
// 元事件类型
const (
EventMetaEventTypeHeartbeat = "heartbeat" // 心跳
EventMetaEventTypeLifecycle = "lifecycle" // 生命周期
)
// 临时会话来源
const (
EventMsgTempSourceGroupChat = iota // 群聊
EventMsgTempSourceQQConsult // QQ咨询
EventMsgTempSourceFind // 查找
EventMsgTempSourceQQMovie // QQ电影
EventMsgTempSourceHotChat // 热聊
EventMsgTempSourceSkip // 跳过,无意义
EventMsgTempSourceVerifyMsg // 验证消息
EventMsgTempSourceMultiChat // 多人聊天
)