Files
open-im-server/pkg/proto/sdk_ws/ws.proto
T

285 lines
6.2 KiB
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package open_im_sdk;//The package name to which the proto file belongs
2021-12-23 17:34:32 +08:00
//option go_package = "./sdk_ws;open_im_sdk";//The generated go pb file is in the current directory, and the package name is open_im_sdk
message PullMessageBySeqListResp {
2021-12-23 17:34:32 +08:00
int32 errCode = 1;
string errMsg = 2;
int64 maxSeq = 3;
int64 minSeq = 4;
repeated GatherFormat singleUserMsg = 5;
repeated GatherFormat groupUserMsg = 6;
}
message PullMessageBySeqListReq{
2021-12-23 17:34:32 +08:00
string userID = 1;
string operationID = 2;
repeated int64 seqList =3;
}
message PullMessageReq {
string userID = 1;
int64 seqBegin = 2;
int64 seqEnd = 3;
string operationID = 4;
}
message PullMessageResp {
int32 errCode = 1;
string errMsg = 2;
int64 maxSeq = 3;
int64 minSeq = 4;
repeated GatherFormat singleUserMsg = 5;
repeated GatherFormat groupUserMsg = 6;
}
message GetMaxAndMinSeqReq {
}
message GetMaxAndMinSeqResp {
int64 maxSeq = 1;
int64 minSeq = 2;
}
message GatherFormat{
// @inject_tag: json:"id"
2021-12-23 17:34:32 +08:00
string id = 1;
// @inject_tag: json:"list"
2021-12-23 17:34:32 +08:00
repeated MsgData list = 2;//detail msg
}
2021-12-23 17:34:32 +08:00
//message MsgFormat{
// // @inject_tag: json:"sendID"
// string SendID = 1;
// // @inject_tag: json:"recvID"
// string RecvID = 2;
// // @inject_tag: json:"msgFrom"
// int32 MsgFrom = 3;
// // @inject_tag: json:"contentType"
// int32 ContentType = 4;
// // @inject_tag: json:"serverMsgID"
// string ServerMsgID = 5;
// // @inject_tag: json:"content"
// string Content = 6;
// // @inject_tag: json:"seq"
// int64 Seq = 7;
// // @inject_tag: json:"sendTime"
// int64 SendTime = 8;
// // @inject_tag: json:"senderPlatformID"
// int32 SenderPlatformID = 9;
// // @inject_tag: json:"senderNickName"
// string SenderNickName = 10;
// // @inject_tag: json:"senderFaceUrl"
// string SenderFaceURL = 11;
// // @inject_tag: json:"clientMsgID"
// string ClientMsgID = 12;
//}
message UserSendMsgResp {
string ServerMsgID = 1;
string ClientMsgID = 2;
int64 sendTime = 3;
}
message MsgData {
string sendID = 1;
string recvID = 2;
2021-12-22 09:31:33 +08:00
string groupID = 3;
string clientMsgID =4;
string serverMsgID =5;
int32 senderPlatformID =6;
string senderNickName =7;
string senderFaceURL =8;
int32 sessionType = 9;
int32 msgFrom = 10;
int32 contentType = 11;
2021-12-22 09:37:19 +08:00
bytes content =12;
2021-12-22 09:31:33 +08:00
repeated string forceList = 13;
int64 seq =14;
int64 sendTime = 15;
int64 createTime = 16;
2021-12-22 09:37:19 +08:00
map<string,bool> Options= 17;
OfflinePushInfo offlinePushInfo =18;
}
2021-12-10 11:07:44 +08:00
message OfflinePushInfo{
string Title = 1;
string Desc = 2;
string Ext = 3;
2021-12-21 21:40:50 +08:00
string iOSPushSound = 4;
bool iOSBadgeCount = 5;
2021-12-10 11:07:44 +08:00
}
2021-12-21 21:40:50 +08:00
//public
2021-12-20 17:27:05 +08:00
message GroupInfo{
2021-12-21 21:40:50 +08:00
string GroupID = 1;
string GroupName = 2;
string Notification = 3;
string Introduction = 4;
string FaceUrl = 5;
PublicUserInfo Owner = 6;
uint64 CreateTime = 7;
uint32 MemberCount = 8;
2021-12-23 17:22:49 +08:00
string Ext = 9;
2021-12-10 17:30:11 +08:00
}
2021-12-21 21:40:50 +08:00
//private, Group members have permission to view
message GroupMemberFullInfo {
2021-12-20 17:27:05 +08:00
string GroupID = 1 ;
string UserID = 2 ;
2021-12-21 21:40:50 +08:00
int32 AdministratorLevel = 3;
uint64 JoinTime = 4;
2021-12-10 17:30:11 +08:00
string NickName = 5;
2021-12-21 21:40:50 +08:00
string FaceUrl = 6;
string FriendRemark = 7;
2021-12-23 18:29:39 +08:00
int32 AppMangerLevel = 8; // >0
2021-12-21 21:40:50 +08:00
}
//private, Friends have permission to view
message UserInfo{
string UserID = 1;
string Nickname = 2;
string FaceUrl = 3;
int32 Gender = 4;
string Mobile = 5;
string Birth = 6;
string Email = 7;
2021-12-23 17:22:49 +08:00
string Ext = 8;
2021-12-21 21:40:50 +08:00
}
//No permissions required
message PublicUserInfo{
string UserID = 1;
string Nickname = 2;
string FaceUrl = 3;
int32 Gender = 4;
}
message TipsComm{
bytes Detail = 1;
string DefaultTips = 2;
}
//////////////////////group/////////////////////
//Actively join the group
message MemberEnterTips{
GroupInfo Group = 1;
GroupMemberFullInfo EntrantUser = 2;
uint64 OperationTime = 3;
}
//Actively leave the group
message MemberLeaveTips{
GroupInfo Group = 1;
GroupMemberFullInfo LeaverUser = 2;
uint64 OperationTime = 3;
}
message MemberInvitedTips{
GroupInfo Group = 1;
GroupMemberFullInfo OpUser = 2;
2021-12-24 15:02:47 +08:00
repeated GroupMemberFullInfo InvitedUserList = 3;
2021-12-21 21:40:50 +08:00
uint64 OperationTime = 4;
}
message MemberKickedTips{
GroupInfo Group = 1;
GroupMemberFullInfo OpUser = 2;
2021-12-24 15:02:47 +08:00
repeated GroupMemberFullInfo KickedUserList = 3;
2021-12-21 21:40:50 +08:00
uint64 OperationTime = 4;
}
message MemberInfoChangedTips{
2021-12-24 15:02:47 +08:00
int32 ChangeType = 1; ///bitwise operators 0001:member info changed; 0010:mute ;
2021-12-21 21:40:50 +08:00
GroupMemberFullInfo OpUser = 2; //who do this
GroupMemberFullInfo FinalInfo = 3; //
uint64 MuteTime = 4;
GroupInfo Group = 5;
}
message GroupCreatedTips{
GroupInfo Group = 1;
GroupMemberFullInfo Creator = 2;
repeated GroupMemberFullInfo MemberList = 3;
uint64 OperationTime = 4;
}
message GroupInfoChangedTips{
2021-12-24 15:02:47 +08:00
int32 ChangedType = 1; //bitwise operators: 0001:groupName; 0010:Notification 0100:Introduction; 1000:FaceUrl
2021-12-21 21:40:50 +08:00
GroupInfo Group = 2;
GroupMemberFullInfo OpUser = 3;
2021-12-10 17:30:11 +08:00
}
2021-12-24 15:02:47 +08:00
message JoinGroupApplicationTips{
2021-12-21 21:40:50 +08:00
GroupInfo Group = 1;
PublicUserInfo Applicant = 2;
string Reason = 3;
}
message ApplicationProcessedTips{
GroupInfo Group = 1;
GroupMemberFullInfo OpUser = 2;
int32 Result = 3;
string Reason = 4;
}
//////////////////////friend/////////////////////
2021-12-20 17:27:05 +08:00
message FriendInfo{
2021-12-21 21:40:50 +08:00
UserInfo OwnerUser = 1;
string Remark = 2;
uint64 CreateTime = 3;
UserInfo FriendUser = 4;
2021-12-20 17:27:05 +08:00
}
2021-12-10 17:30:11 +08:00
2021-12-21 21:40:50 +08:00
message FriendApplication{
uint64 AddTime = 1;
string AddSource = 2;
string AddWording = 3;
2021-12-20 17:27:05 +08:00
}
2021-12-24 15:02:47 +08:00
message FromToUserID{
string FromUserID = 1;
string ToUserID = 2;
}
//FromUserID apply to add ToUserID
2021-12-21 21:40:50 +08:00
message FriendApplicationAddedTips{
2021-12-24 15:02:47 +08:00
FromToUserID FromToUserID = 1;
2021-12-20 17:27:05 +08:00
}
2021-12-10 17:30:11 +08:00
2021-12-24 15:02:47 +08:00
//FromUserID accept or reject ToUserID
2021-12-21 21:40:50 +08:00
message FriendApplicationProcessedTips{
2021-12-24 15:02:47 +08:00
FromToUserID FromToUserID = 1;
2021-12-10 17:30:11 +08:00
}
2021-12-24 15:02:47 +08:00
// FromUserID Added a friend ToUserID
2021-12-21 21:40:50 +08:00
message FriendAddedTips{
FriendInfo Friend = 1;
uint64 OperationTime = 2;
2021-12-24 15:02:47 +08:00
PublicUserInfo OpUser = 3; //who do this
2021-12-21 21:40:50 +08:00
}
2021-12-10 17:30:11 +08:00
2021-12-24 15:02:47 +08:00
// FromUserID deleted a friend ToUserID
2021-12-21 21:40:50 +08:00
message FriendDeletedTips{
2021-12-24 15:02:47 +08:00
FromToUserID FromToUserID = 1;
2021-12-21 21:40:50 +08:00
}
2021-12-10 17:30:11 +08:00
2021-12-24 15:02:47 +08:00
//message BlackInfo{
// PublicUserInfo OwnerUser = 1;
// uint64 CreateTime = 3;
// PublicUserInfo BlackUser = 4;
//}
2021-12-21 21:40:50 +08:00
message BlackAddedTips{
2021-12-24 15:02:47 +08:00
FromToUserID FromToUserID = 1;
2021-12-21 21:40:50 +08:00
}
2021-12-20 17:27:05 +08:00
2021-12-21 21:40:50 +08:00
message BlackDeletedTips{
2021-12-24 15:02:47 +08:00
FromToUserID FromToUserID = 1;
2021-12-21 21:40:50 +08:00
}
message FriendInfoChangedTips{
2021-12-24 15:02:47 +08:00
FromToUserID FromToUserID = 1;
2021-12-21 21:40:50 +08:00
}
//////////////////////user/////////////////////
message SelfInfoUpdatedTips{
2021-12-24 15:02:47 +08:00
string UserID = 1;
2021-12-21 21:40:50 +08:00
}