mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
* optimization: change the configuration file from being read globally to being read independently. * optimization: change the configuration file from being read globally to being read independently. * optimization: change the configuration file from being read globally to being read independently. * optimization: config file changed to dependency injection. * fix: replace global config with dependency injection * fix: replace global config with dependency injection * fix: import the enough param * fix: import the enough param * fix: import the enough param * fix: fix the component check of path * fix: fix the kafka of tls is nil problem * fix: fix the TLS.CACrt is nil error * fix: fix the valiable shadows problem * fix: fix the comflect * optimization: message remove options. * fix: fix the param pass error * fix: find error * fix: find error * fix: find eror * fix: find error * fix: find error * fix: del the undifined func * fix: find error * fix: fix the error * fix: pass config * fix: find error * fix: find error * fix: find error * fix: find error * fix: find error * fix: fix the config * fix: fix the error * fix: fix the config pass error * fix: fix the eror * fix: fix the error * fix: fix the error * fix: fix the error * fix: find error * fix: fix the error * fix: fix the config * fix: add return err * fix: fix the err2 * fix: err * fix: fix the func * fix: del the chinese comment * fix: fix the func * fix: fix the gateway_test logic * fix: s3 * test * test * fix: not found --------- Co-authored-by: luhaoling <2198702716@qq.com> Co-authored-by: withchao <993506633@qq.com>
218 lines
6.0 KiB
Go
218 lines
6.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 rpcclient
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
"github.com/OpenIMSDK/protocol/constant"
|
|
"github.com/OpenIMSDK/protocol/group"
|
|
"github.com/OpenIMSDK/protocol/sdkws"
|
|
"github.com/OpenIMSDK/tools/discoveryregistry"
|
|
"github.com/OpenIMSDK/tools/errs"
|
|
"github.com/OpenIMSDK/tools/utils"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
|
|
util "github.com/openimsdk/open-im-server/v3/pkg/util/genutil"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
type Group struct {
|
|
conn grpc.ClientConnInterface
|
|
Client group.GroupClient
|
|
discov discoveryregistry.SvcDiscoveryRegistry
|
|
Config *config.GlobalConfig
|
|
}
|
|
|
|
func NewGroup(discov discoveryregistry.SvcDiscoveryRegistry, config *config.GlobalConfig) *Group {
|
|
conn, err := discov.GetConn(context.Background(), config.RpcRegisterName.OpenImGroupName)
|
|
if err != nil {
|
|
util.ExitWithError(err)
|
|
}
|
|
client := group.NewGroupClient(conn)
|
|
return &Group{discov: discov, conn: conn, Client: client, Config: config}
|
|
}
|
|
|
|
type GroupRpcClient Group
|
|
|
|
func NewGroupRpcClient(discov discoveryregistry.SvcDiscoveryRegistry, config *config.GlobalConfig) GroupRpcClient {
|
|
return GroupRpcClient(*NewGroup(discov, config))
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetGroupInfos(
|
|
ctx context.Context,
|
|
groupIDs []string,
|
|
complete bool,
|
|
) ([]*sdkws.GroupInfo, error) {
|
|
resp, err := g.Client.GetGroupsInfo(ctx, &group.GetGroupsInfoReq{
|
|
GroupIDs: groupIDs,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if complete {
|
|
if ids := utils.Single(groupIDs, utils.Slice(resp.GroupInfos, func(e *sdkws.GroupInfo) string {
|
|
return e.GroupID
|
|
})); len(ids) > 0 {
|
|
return nil, errs.ErrGroupIDNotFound.Wrap(strings.Join(ids, ","))
|
|
}
|
|
}
|
|
return resp.GroupInfos, nil
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetGroupInfo(ctx context.Context, groupID string) (*sdkws.GroupInfo, error) {
|
|
groups, err := g.GetGroupInfos(ctx, []string{groupID}, true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return groups[0], nil
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetGroupInfoMap(
|
|
ctx context.Context,
|
|
groupIDs []string,
|
|
complete bool,
|
|
) (map[string]*sdkws.GroupInfo, error) {
|
|
groups, err := g.GetGroupInfos(ctx, groupIDs, complete)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return utils.SliceToMap(groups, func(e *sdkws.GroupInfo) string {
|
|
return e.GroupID
|
|
}), nil
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetGroupMemberInfos(
|
|
ctx context.Context,
|
|
groupID string,
|
|
userIDs []string,
|
|
complete bool,
|
|
) ([]*sdkws.GroupMemberFullInfo, error) {
|
|
resp, err := g.Client.GetGroupMembersInfo(ctx, &group.GetGroupMembersInfoReq{
|
|
GroupID: groupID,
|
|
UserIDs: userIDs,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if complete {
|
|
if ids := utils.Single(userIDs, utils.Slice(resp.Members, func(e *sdkws.GroupMemberFullInfo) string {
|
|
return e.UserID
|
|
})); len(ids) > 0 {
|
|
return nil, errs.ErrNotInGroupYet.Wrap(strings.Join(ids, ","))
|
|
}
|
|
}
|
|
return resp.Members, nil
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetGroupMemberInfo(
|
|
ctx context.Context,
|
|
groupID string,
|
|
userID string,
|
|
) (*sdkws.GroupMemberFullInfo, error) {
|
|
members, err := g.GetGroupMemberInfos(ctx, groupID, []string{userID}, true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return members[0], nil
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetGroupMemberInfoMap(
|
|
ctx context.Context,
|
|
groupID string,
|
|
userIDs []string,
|
|
complete bool,
|
|
) (map[string]*sdkws.GroupMemberFullInfo, error) {
|
|
members, err := g.GetGroupMemberInfos(ctx, groupID, userIDs, true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return utils.SliceToMap(members, func(e *sdkws.GroupMemberFullInfo) string {
|
|
return e.UserID
|
|
}), nil
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetOwnerAndAdminInfos(
|
|
ctx context.Context,
|
|
groupID string,
|
|
) ([]*sdkws.GroupMemberFullInfo, error) {
|
|
resp, err := g.Client.GetGroupMemberRoleLevel(ctx, &group.GetGroupMemberRoleLevelReq{
|
|
GroupID: groupID,
|
|
RoleLevels: []int32{constant.GroupOwner, constant.GroupAdmin},
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return resp.Members, nil
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetOwnerInfo(ctx context.Context, groupID string) (*sdkws.GroupMemberFullInfo, error) {
|
|
resp, err := g.Client.GetGroupMemberRoleLevel(ctx, &group.GetGroupMemberRoleLevelReq{
|
|
GroupID: groupID,
|
|
RoleLevels: []int32{constant.GroupOwner},
|
|
})
|
|
return resp.Members[0], err
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetGroupMemberIDs(ctx context.Context, groupID string) ([]string, error) {
|
|
resp, err := g.Client.GetGroupMemberUserIDs(ctx, &group.GetGroupMemberUserIDsReq{
|
|
GroupID: groupID,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return resp.UserIDs, nil
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetGroupInfoCache(ctx context.Context, groupID string) (*sdkws.GroupInfo, error) {
|
|
resp, err := g.Client.GetGroupInfoCache(ctx, &group.GetGroupInfoCacheReq{
|
|
GroupID: groupID,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return resp.GroupInfo, nil
|
|
}
|
|
|
|
func (g *GroupRpcClient) GetGroupMemberCache(
|
|
ctx context.Context,
|
|
groupID string,
|
|
groupMemberID string,
|
|
) (*sdkws.GroupMemberFullInfo, error) {
|
|
resp, err := g.Client.GetGroupMemberCache(ctx, &group.GetGroupMemberCacheReq{
|
|
GroupID: groupID,
|
|
GroupMemberID: groupMemberID,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return resp.Member, nil
|
|
}
|
|
|
|
func (g *GroupRpcClient) DismissGroup(ctx context.Context, groupID string) error {
|
|
_, err := g.Client.DismissGroup(ctx, &group.DismissGroupReq{
|
|
GroupID: groupID,
|
|
DeleteMember: true,
|
|
})
|
|
return err
|
|
}
|
|
|
|
func (g *GroupRpcClient) NotificationUserInfoUpdate(ctx context.Context, userID string) error {
|
|
_, err := g.Client.NotificationUserInfoUpdate(ctx, &group.NotificationUserInfoUpdateReq{
|
|
UserID: userID,
|
|
})
|
|
return err
|
|
}
|