mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 00:12:18 +08:00 
			
		
		
		
	* fix: StringValue When there are double quotes in the string value, serialization and deserialization fail Signed-off-by: withchao <993506633@qq.com> * test: StatusTemporaryRedirect -> StatusFound Signed-off-by: withchao <993506633@qq.com> * chore: pb a2r Signed-off-by: withchao <993506633@qq.com> * chore: replacement package Signed-off-by: withchao <993506633@qq.com> * chore: replacement package Signed-off-by: withchao <993506633@qq.com> * chore: replacement package Signed-off-by: withchao <993506633@qq.com> * fix: remove go mod replace Signed-off-by: withchao <993506633@qq.com> * fix: tools version Signed-off-by: withchao <993506633@qq.com> * fix: config.yaml Signed-off-by: withchao <993506633@qq.com> --------- Signed-off-by: withchao <993506633@qq.com>
		
			
				
	
	
		
			210 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			210 lines
		
	
	
		
			5.6 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"
 | |
| 
 | |
| 	"google.golang.org/grpc"
 | |
| 
 | |
| 	"github.com/OpenIMSDK/protocol/group"
 | |
| 	"github.com/OpenIMSDK/protocol/sdkws"
 | |
| 	"github.com/OpenIMSDK/tools/config"
 | |
| 	"github.com/OpenIMSDK/tools/constant"
 | |
| 	"github.com/OpenIMSDK/tools/discoveryregistry"
 | |
| 	"github.com/OpenIMSDK/tools/errs"
 | |
| 	"github.com/OpenIMSDK/tools/utils"
 | |
| )
 | |
| 
 | |
| type Group struct {
 | |
| 	conn   grpc.ClientConnInterface
 | |
| 	Client group.GroupClient
 | |
| 	discov discoveryregistry.SvcDiscoveryRegistry
 | |
| }
 | |
| 
 | |
| 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 GroupRpcClient Group
 | |
| 
 | |
| func NewGroupRpcClient(discov discoveryregistry.SvcDiscoveryRegistry) GroupRpcClient {
 | |
| 	return GroupRpcClient(*NewGroup(discov))
 | |
| }
 | |
| 
 | |
| 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
 | |
| }
 |