mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-11-03 18:52:15 +08:00
234 lines
7.0 KiB
Go
234 lines
7.0 KiB
Go
// Copyright © 2023 OpenIM. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package api
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
|
|
"github.com/openimsdk/protocol/group"
|
|
"github.com/openimsdk/tools/a2r"
|
|
)
|
|
|
|
type GroupApi rpcclient.Group
|
|
|
|
func NewGroupApi(client rpcclient.Group) GroupApi {
|
|
return GroupApi(client)
|
|
}
|
|
|
|
func (o *GroupApi) CreateGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.CreateGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) SetGroupInfo(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.SetGroupInfo, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) JoinGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.JoinGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) QuitGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.QuitGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) ApplicationGroupResponse(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GroupApplicationResponse, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) TransferGroupOwner(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.TransferGroupOwner, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetRecvGroupApplicationList(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupApplicationList, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetUserReqGroupApplicationList(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetUserReqApplicationList, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetGroupUsersReqApplicationList(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupUsersReqApplicationList, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetGroupsInfo(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupsInfo, o.Client, c)
|
|
//a2r.Call(group.GroupClient.GetGroupsInfo, o.Client, c, a2r.NewNilReplaceOption(group.GroupClient.GetGroupsInfo))
|
|
}
|
|
|
|
func (o *GroupApi) KickGroupMember(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.KickGroupMember, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetGroupMembersInfo(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupMembersInfo, o.Client, c)
|
|
//a2r.Call(group.GroupClient.GetGroupMembersInfo, o.Client, c, a2r.NewNilReplaceOption(group.GroupClient.GetGroupMembersInfo))
|
|
}
|
|
|
|
func (o *GroupApi) GetGroupMemberList(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupMemberList, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) InviteUserToGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.InviteUserToGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetJoinedGroupList(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetJoinedGroupList, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) DismissGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.DismissGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) MuteGroupMember(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.MuteGroupMember, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) CancelMuteGroupMember(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.CancelMuteGroupMember, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) MuteGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.MuteGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) CancelMuteGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.CancelMuteGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) SetGroupMemberInfo(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.SetGroupMemberInfo, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetGroupAbstractInfo(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupAbstractInfo, o.Client, c)
|
|
}
|
|
|
|
// func (g *Group) SetGroupMemberNickname(c *gin.Context) {
|
|
// a2r.Call(group.GroupClient.SetGroupMemberNickname, g.userClient, c)
|
|
//}
|
|
//
|
|
// func (g *Group) GetGroupAllMemberList(c *gin.Context) {
|
|
// a2r.Call(group.GroupClient.GetGroupAllMember, g.userClient, c)
|
|
//}
|
|
|
|
func (o *GroupApi) GroupCreateCount(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GroupCreateCount, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetGroups(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroups, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetGroupMemberUserIDs(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupMemberUserIDs, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetIncrementalJoinGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetIncrementalJoinGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetIncrementalGroupMember(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetIncrementalGroupMember, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetIncrementalGroupMemberBatch(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.BatchGetIncrementalGroupMember, o.Client, c)
|
|
|
|
// // OLd. Need Deprecated
|
|
// // type BatchIncrementalReq struct {
|
|
// // UserID string `json:"user_id"`
|
|
// // List []*group.GetIncrementalGroupMemberReq `json:"list"`
|
|
// // }
|
|
// // type BatchIncrementalResp struct {
|
|
// // List map[string]*group.GetIncrementalGroupMemberResp `json:"list"`
|
|
// // }
|
|
// // req, err := a2r.ParseRequestNotCheck[BatchIncrementalReq](c)
|
|
// // if err != nil {
|
|
// // apiresp.GinError(c, err)
|
|
// // return
|
|
// // }
|
|
// // resp := &BatchIncrementalResp{
|
|
// // List: make(map[string]*group.GetIncrementalGroupMemberResp),
|
|
// // }
|
|
|
|
// //**** Start ****//
|
|
// var (
|
|
// changeCount int
|
|
// )
|
|
// req, err := a2r.ParseRequestNotCheck[group.BatchGetIncrementalGroupMemberReq](c)
|
|
// if err != nil {
|
|
// apiresp.GinError(c, err)
|
|
// return
|
|
// }
|
|
// resp, err := o.Client.BatchGetIncrementalGroupMember(c, req)
|
|
// if err != nil {
|
|
// if len(resp.RespList) == 0 {
|
|
// apiresp.GinError(c, err)
|
|
// } else {
|
|
// log.ZError(c, "group incr sync version", err)
|
|
// apiresp.GinSuccess(c, resp)
|
|
// }
|
|
// }
|
|
|
|
// res := make(map[string]*group.GetIncrementalGroupMemberResp)
|
|
// for k, val := range resp.RespList {
|
|
// changeCount += len(val.Insert) + len(val.Delete) + len(val.Update)
|
|
// if changeCount >= 200 {
|
|
// break
|
|
// }
|
|
// res[k] = val
|
|
// }
|
|
// resp = &group.BatchGetIncrementalGroupMemberResp{
|
|
// RespList: res,
|
|
// }
|
|
|
|
// // OLd. Need Deprecated
|
|
// // for _, req := range req.List {
|
|
// // if _, ok := resp.List[req.GroupID]; ok {
|
|
// // continue
|
|
// // }
|
|
// // res, err := o.Client.GetIncrementalGroupMember(c, req)
|
|
// // if err != nil {
|
|
// // if len(resp.List) == 0 {
|
|
// // apiresp.GinError(c, err)
|
|
// // } else {
|
|
// // log.ZError(c, "group incr sync version", err, "groupID", req.GroupID, "success", len(resp.List))
|
|
// // apiresp.GinSuccess(c, resp)
|
|
// // }
|
|
// // return
|
|
// // }
|
|
// // resp.List[req.GroupID] = res
|
|
// // changeCount += len(res.Insert) + len(res.Delete) + len(res.Update)
|
|
// // if changeCount >= 200 {
|
|
// // break
|
|
// // }
|
|
// // }
|
|
|
|
// apiresp.GinSuccess(c, resp)
|
|
|
|
//**** End ****//
|
|
|
|
}
|
|
|
|
func (o *GroupApi) GetFullGroupMemberUserIDs(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetFullGroupMemberUserIDs, o.Client, c)
|
|
}
|
|
|
|
func (o *GroupApi) GetFullJoinGroupIDs(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetFullJoinGroupIDs, o.Client, c)
|
|
}
|