You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/pkg/proto/group/group.proto

260 lines
5.6 KiB

syntax = "proto3";
3 years ago
import "Open_IM/pkg/proto/sdk_ws/ws.proto";
option go_package = "./group;group";
package group;
message CommonResp{
3 years ago
int32 ErrCode = 1;
string ErrMsg = 2;
}
3 years ago
message GroupAddMemberInfo{
string UserID = 1;
int32 Role = 2;
3 years ago
}
3 years ago
3 years ago
message CreateGroupReq{
repeated GroupAddMemberInfo InitMemberList = 1; //
string GroupName = 2;
string Introduction = 3;
string Notification = 4;
string FaceUrl = 5;
string Ext = 6;
string OperationID = 7;
string OpUserID = 8;
string FromUserID = 9;
}
3 years ago
message CreateGroupResp{
3 years ago
int32 ErrCode = 1;
string ErrMsg = 2;
3 years ago
open_im_sdk.GroupInfo GroupInfo = 3;
}
3 years ago
message GetGroupsInfoReq{
3 years ago
repeated string GroupIDList = 1;
string OperationID = 2;
string OpUserID = 3;
}
3 years ago
3 years ago
message GetGroupsInfoResp{
3 years ago
int32 ErrCode = 1;
string ErrMsg = 2;
3 years ago
repeated open_im_sdk.GroupInfo GroupInfoList = 3;
}
3 years ago
3 years ago
message SetGroupInfoReq{
3 years ago
open_im_sdk.GroupInfo GroupInfo = 1;
string OpUserID = 2;
string FromUserID = 3;
string OperationID = 4;
3 years ago
}
3 years ago
//owner or manager
3 years ago
message GetGroupApplicationListReq {
3 years ago
string OpUserID = 1;
string OperationID = 2;
3 years ago
string FromUserID = 3; //owner or manager
}
3 years ago
message GetGroupApplicationList_Data_User {
string ID = 1;
string GroupID = 2;
string FromUserID = 3;
string ToUserID = 4;
int32 Flag = 5;
string RequestMsg = 6;
string HandledMsg = 7;
int64 AddTime = 8;
string FromUserNickname = 9;
string ToUserNickname = 10;
string FromUserFaceUrl = 11;
string ToUserFaceUrl = 12;
string HandledUser = 13;
int32 Type = 14;
int32 HandleStatus = 15;
int32 HandleResult = 16;
}
3 years ago
message GetGroupApplicationListData {
int32 Count = 1;
repeated GetGroupApplicationList_Data_User User = 2;
}
3 years ago
message GetGroupApplicationListResp {
int32 ErrCode = 1;
string ErrMsg = 2;
GetGroupApplicationListData Data = 3;
3 years ago
}
3 years ago
message TransferGroupOwnerReq {
string GroupID = 1;
3 years ago
string OldOwnerUserID = 2;
string NewOwnerUserID = 3;
string OperationID = 4;
3 years ago
string OpUserID = 5;
}
3 years ago
message JoinGroupReq{
3 years ago
string GroupID = 1;
string ReqMessage = 2;
string FromUserID = 3;
string OperationID = 4;
3 years ago
string OpUserID = 5;
}
3 years ago
message GroupApplicationResponseReq{
string OperationID = 1;
3 years ago
string OpUserID = 2;
string GroupID = 3;
3 years ago
string FromUserID = 4; //请求加群:请求者,邀请加群:邀请人
string ToUserID = 7; //请求加群:0邀请加群:被邀请人
int64 AddTime = 10;
string HandledMsg = 12;
3 years ago
// int32 Type = 13;
// int32 HandleStatus = 14;
int32 HandleResult = 15;
3 years ago
}
3 years ago
3 years ago
message SetOwnerGroupNickNameReq{
3 years ago
string GroupID = 1;
string Nickname = 2;
string OperationID = 3;
3 years ago
string FromUserID = 4;
3 years ago
string OpUserID = 5;
}
3 years ago
message QuitGroupReq{
3 years ago
string GroupID = 1;
string OperationID = 2;
string FromUserID = 3;
3 years ago
string OpUserID = 4;
}
3 years ago
message GetGroupMemberListReq {
3 years ago
string GroupID = 1;
string OpUserID = 2;
string OperationID = 3;
int32 Filter = 4;
int32 NextSeq = 5;
3 years ago
}
message GetGroupMemberListResp {
3 years ago
int32 ErrCode = 1;
string ErrMsg = 2;
3 years ago
repeated open_im_sdk.GroupMemberFullInfo memberList = 3;
int32 nextSeq = 4;
3 years ago
}
message GetGroupMembersInfoReq {
3 years ago
string GroupID = 1;
repeated string memberList = 2;
3 years ago
string OpUserID = 3;
string OperationID = 4;
}
3 years ago
message GetGroupMembersInfoResp {
3 years ago
int32 ErrCode = 1;
string ErrMsg = 2;
3 years ago
repeated open_im_sdk.GroupMemberFullInfo memberList = 3;
3 years ago
}
3 years ago
message KickGroupMemberReq {
3 years ago
string GroupID = 1;
repeated string KickedUserIDList = 2;
string Reason = 3;
string OperationID = 5;
3 years ago
string OpUserID = 6;
3 years ago
}
message Id2Result {
3 years ago
string UserID = 1;
int32 Result = 2; //0 ok; -1 error
}
3 years ago
message KickGroupMemberResp {
3 years ago
int32 ErrCode = 1;
string ErrMsg = 2;
3 years ago
repeated Id2Result Id2ResultList = 3;
3 years ago
}
3 years ago
message GetJoinedGroupListReq {
string FromUserID = 1;
string operationID = 2;
3 years ago
string OpUserID = 3;
3 years ago
}
3 years ago
message GetJoinedGroupListResp{
3 years ago
int32 ErrCode = 1;
3 years ago
string ErrMsg = 2;
repeated open_im_sdk.GroupInfo GroupList = 3;
3 years ago
}
3 years ago
message InviteUserToGroupReq {
string OperationID = 2;
string GroupID = 3;
string Reason = 4;
repeated string InvitedUserIDList = 5;
3 years ago
string OpUserID = 6;
3 years ago
}
3 years ago
message InviteUserToGroupResp {
3 years ago
int32 ErrCode = 1;
string ErrMsg = 2;
3 years ago
repeated Id2Result Id2ResultList = 3; // 0 ok, -1 error
3 years ago
}
3 years ago
3 years ago
message GetGroupAllMemberReq {
3 years ago
string GroupID = 1;
string OpUserID = 2;
string OperationID = 3;
3 years ago
}
message GetGroupAllMemberResp {
3 years ago
int32 ErrCode = 1;
string ErrMsg = 2;
3 years ago
repeated open_im_sdk.GroupMemberFullInfo memberList = 3;
3 years ago
}
service group{
rpc createGroup(CreateGroupReq) returns(CreateGroupResp);
rpc joinGroup(JoinGroupReq) returns(CommonResp);
rpc quitGroup(QuitGroupReq) returns(CommonResp);
rpc getGroupsInfo(GetGroupsInfoReq) returns(GetGroupsInfoResp);
rpc setGroupInfo(SetGroupInfoReq) returns(CommonResp);
rpc getGroupApplicationList(GetGroupApplicationListReq) returns(GetGroupApplicationListResp);
3 years ago
rpc transferGroupOwner(TransferGroupOwnerReq) returns(CommonResp);
rpc groupApplicationResponse(GroupApplicationResponseReq) returns(CommonResp);
// rpc setOwnerGroupNickName(SetOwnerGroupNickNameReq) returns(CommonResp);
rpc getGroupMemberList(GetGroupMemberListReq) returns(GetGroupMemberListResp);
rpc getGroupMembersInfo(GetGroupMembersInfoReq) returns(GetGroupMembersInfoResp);
rpc kickGroupMember(KickGroupMemberReq) returns (KickGroupMemberResp);
3 years ago
rpc getJoinedGroupList(GetJoinedGroupListReq) returns (GetJoinedGroupListResp);
rpc inviteUserToGroup(InviteUserToGroupReq) returns (InviteUserToGroupResp);
rpc getGroupAllMember(GetGroupAllMemberReq) returns(GetGroupAllMemberResp);
3 years ago
}