mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
133 lines
3.6 KiB
Go
133 lines
3.6 KiB
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/a2r"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/discoveryregistry"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/group"
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func NewGroup(discov discoveryregistry.SvcDiscoveryRegistry) *Group {
|
|
conn, err := discov.GetConn(context.Background(), config.Config.RpcRegisterName.OpenImGroupName)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
client := group.NewGroupClient(conn)
|
|
return &Group{discov: discov, conn: conn, client: client}
|
|
}
|
|
|
|
type Group struct {
|
|
conn *grpc.ClientConn
|
|
client group.GroupClient
|
|
discov discoveryregistry.SvcDiscoveryRegistry
|
|
}
|
|
|
|
func (o *Group) Client() group.GroupClient {
|
|
return o.client
|
|
}
|
|
|
|
func (o *Group) CreateGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.CreateGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) SetGroupInfo(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.SetGroupInfo, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) JoinGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.JoinGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) QuitGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.QuitGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) ApplicationGroupResponse(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GroupApplicationResponse, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) TransferGroupOwner(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.TransferGroupOwner, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) GetRecvGroupApplicationList(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupApplicationList, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) GetUserReqGroupApplicationList(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetUserReqApplicationList, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) GetGroupsInfo(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupsInfo, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) KickGroupMember(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.KickGroupMember, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) GetGroupMembersInfo(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupMembersInfo, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) GetGroupMemberList(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetGroupMemberList, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) InviteUserToGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.InviteUserToGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) GetJoinedGroupList(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetJoinedGroupList, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) DismissGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.DismissGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) MuteGroupMember(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.MuteGroupMember, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) CancelMuteGroupMember(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.CancelMuteGroupMember, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) MuteGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.MuteGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) CancelMuteGroup(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.CancelMuteGroup, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) SetGroupMemberInfo(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.SetGroupMemberInfo, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) 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 *Group) GetJoinedSuperGroupList(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetJoinedSuperGroupList, o.Client, c)
|
|
}
|
|
|
|
func (o *Group) GetSuperGroupsInfo(c *gin.Context) {
|
|
a2r.Call(group.GroupClient.GetSuperGroupsInfo, o.Client, c)
|
|
}
|