Files
open-im-server/pkg/common/constant/constant.go
T

142 lines
3.5 KiB
Go
Raw Normal View History

2021-05-26 19:37:10 +08:00
package constant
const (
//group admin
2021-12-28 21:17:41 +08:00
// OrdinaryMember = 0
// GroupOwner = 1
// Administrator = 2
2021-06-28 15:31:36 +08:00
//group application
2021-12-28 21:17:41 +08:00
// Application = 0
// AgreeApplication = 1
2021-06-28 15:31:36 +08:00
2021-12-23 17:22:49 +08:00
//friend related
2021-06-28 15:31:36 +08:00
BlackListFlag = 1
ApplicationFriendFlag = 0
FriendFlag = 1
RefuseFriendFlag = -1
2021-05-26 19:37:10 +08:00
//Websocket Protocol
WSGetNewestSeq = 1001
2022-01-20 11:36:43 +08:00
WSPullMsgBySeqList = 1002
WSSendMsg = 1003
WSPushMsg = 2001
2021-11-25 14:12:52 +08:00
WSKickOnlineMsg = 2002
WSDataError = 3001
2021-05-26 19:37:10 +08:00
///ContentType
//UserRelated
Text = 101
Picture = 102
Voice = 103
Video = 104
File = 105
AtText = 106
Merger = 107
Card = 108
Location = 109
Custom = 110
2021-12-23 17:22:26 +08:00
Revoke = 111
HasReadReceipt = 112
Typing = 113
Quote = 114
Common = 200
GroupMsg = 201
2021-05-26 19:37:10 +08:00
//SysRelated
2022-01-15 11:14:29 +08:00
2022-01-16 16:31:28 +08:00
FriendApplicationApprovedNotification = 1201 //add_friend_response
FriendApplicationRejectedNotification = 1202 //add_friend_response
FriendApplicationNotification = 1203 //add_friend
2022-01-16 12:25:41 +08:00
FriendAddedNotification = 1204
2022-01-16 16:31:28 +08:00
FriendDeletedNotification = 1205 //delete_friend
FriendRemarkSetNotification = 1206 //set_friend_remark?
BlackAddedNotification = 1207 //add_black
BlackDeletedNotification = 1208 //remove_black
2021-06-28 15:31:36 +08:00
2022-01-16 18:58:07 +08:00
UserInfoUpdatedNotification = 1303 //SetSelfInfoTip = 204
2021-12-24 15:02:47 +08:00
2022-01-16 12:25:41 +08:00
GroupCreatedNotification = 1501
2022-01-16 16:31:28 +08:00
GroupInfoSetNotification = 1502
JoinGroupApplicationNotification = 1503
MemberQuitNotification = 1504
GroupApplicationAcceptedNotification = 1505
GroupApplicationRejectedNotification = 1506
GroupOwnerTransferredNotification = 1507
MemberKickedNotification = 1508
MemberInvitedNotification = 1509
MemberEnterNotification = 1510
2021-05-26 19:37:10 +08:00
//MsgFrom
UserMsgType = 100
SysMsgType = 200
//SessionType
SingleChatType = 1
GroupChatType = 2
2021-11-25 14:12:52 +08:00
//token
NormalToken = 0
InValidToken = 1
KickedToken = 2
ExpiredToken = 3
//MultiTerminalLogin
2022-01-13 18:33:11 +08:00
//Full-end login, but the same end is mutually exclusive
2021-11-25 14:12:52 +08:00
AllLoginButSameTermKick = 1
2022-01-13 18:33:11 +08:00
//Only one of the endpoints can log in
2021-11-25 14:12:52 +08:00
SingleTerminalLogin = 2
2022-01-13 18:33:11 +08:00
//The web side can be online at the same time, and the other side can only log in at one end
2021-11-25 14:12:52 +08:00
WebAndOther = 3
2022-01-13 18:33:11 +08:00
//The PC side is mutually exclusive, and the mobile side is mutually exclusive, but the web side can be online at the same time
2021-11-25 14:12:52 +08:00
PcMobileAndWeb = 4
2021-11-29 16:26:57 +08:00
2021-11-29 18:24:39 +08:00
OnlineStatus = "online"
OfflineStatus = "offline"
2021-12-17 14:28:43 +08:00
Registered = "registered"
UnRegistered = "unregistered"
2021-12-06 16:06:19 +08:00
//MsgReceiveOpt
ReceiveMessage = 0
NotReceiveMessage = 1
ReceiveNotNotifyMessage = 2
2021-12-23 17:22:26 +08:00
//OptionsKey
IsHistory = "history"
IsPersistent = "persistent"
IsOfflinePush = "offlinePush"
IsUnreadCount = "unreadCount"
IsConversationUpdate = "conversationUpdate"
IsSenderSync = "senderSync"
2021-05-26 19:37:10 +08:00
)
var ContentType2PushContent = map[int64]string{
Picture: "[图片]",
Voice: "[语音]",
Video: "[视频]",
File: "[文件]",
Text: "你收到了一条文本消息",
AtText: "[有人@你]",
GroupMsg: "你收到一条群聊消息",
Common: "你收到一条新消息",
2021-05-26 19:37:10 +08:00
}
2021-09-26 14:26:45 +08:00
2021-12-28 21:17:41 +08:00
const (
AppOrdinaryUsers = 1
AppAdmin = 2
GroupOrdinaryUsers = 1
GroupOwner = 2
GroupAdmin = 3
2021-12-30 11:42:10 +08:00
GroupResponseAgree = 1
GroupResponseRefuse = -1
2022-01-16 16:31:28 +08:00
FriendResponseAgree = 1
FriendResponseRefuse = -1
2021-12-28 21:17:41 +08:00
Male = 1
Female = 2
)
2021-09-26 14:26:45 +08:00
const FriendAcceptTip = "You have successfully become friends, so start chatting"