mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 08:29:33 +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>
		
			
				
	
	
		
			222 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			222 lines
		
	
	
		
			7.4 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 notification
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	"github.com/OpenIMSDK/tools/mcontext"
 | |
| 
 | |
| 	"github.com/OpenIMSDK/Open-IM-Server/pkg/common/convert"
 | |
| 	"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/controller"
 | |
| 	relationTb "github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/table/relation"
 | |
| 	"github.com/OpenIMSDK/Open-IM-Server/pkg/rpcclient"
 | |
| 	pbFriend "github.com/OpenIMSDK/protocol/friend"
 | |
| 	"github.com/OpenIMSDK/protocol/sdkws"
 | |
| 	"github.com/OpenIMSDK/tools/constant"
 | |
| )
 | |
| 
 | |
| type FriendNotificationSender struct {
 | |
| 	*rpcclient.NotificationSender
 | |
| 	// 找不到报错
 | |
| 	getUsersInfo func(ctx context.Context, userIDs []string) ([]CommonUser, error)
 | |
| 	// db controller
 | |
| 	db controller.FriendDatabase
 | |
| }
 | |
| 
 | |
| type friendNotificationSenderOptions func(*FriendNotificationSender)
 | |
| 
 | |
| func WithFriendDB(db controller.FriendDatabase) friendNotificationSenderOptions {
 | |
| 	return func(s *FriendNotificationSender) {
 | |
| 		s.db = db
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func WithDBFunc(
 | |
| 	fn func(ctx context.Context, userIDs []string) (users []*relationTb.UserModel, err error),
 | |
| ) friendNotificationSenderOptions {
 | |
| 	return func(s *FriendNotificationSender) {
 | |
| 		f := func(ctx context.Context, userIDs []string) (result []CommonUser, err error) {
 | |
| 			users, err := fn(ctx, userIDs)
 | |
| 			if err != nil {
 | |
| 				return nil, err
 | |
| 			}
 | |
| 			for _, user := range users {
 | |
| 				result = append(result, user)
 | |
| 			}
 | |
| 			return result, nil
 | |
| 		}
 | |
| 		s.getUsersInfo = f
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func WithRpcFunc(
 | |
| 	fn func(ctx context.Context, userIDs []string) ([]*sdkws.UserInfo, error),
 | |
| ) friendNotificationSenderOptions {
 | |
| 	return func(s *FriendNotificationSender) {
 | |
| 		f := func(ctx context.Context, userIDs []string) (result []CommonUser, err error) {
 | |
| 			users, err := fn(ctx, userIDs)
 | |
| 			if err != nil {
 | |
| 				return nil, err
 | |
| 			}
 | |
| 			for _, user := range users {
 | |
| 				result = append(result, user)
 | |
| 			}
 | |
| 			return result, err
 | |
| 		}
 | |
| 		s.getUsersInfo = f
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func NewFriendNotificationSender(
 | |
| 	msgRpcClient *rpcclient.MessageRpcClient,
 | |
| 	opts ...friendNotificationSenderOptions,
 | |
| ) *FriendNotificationSender {
 | |
| 	f := &FriendNotificationSender{
 | |
| 		NotificationSender: rpcclient.NewNotificationSender(rpcclient.WithRpcClient(msgRpcClient)),
 | |
| 	}
 | |
| 	for _, opt := range opts {
 | |
| 		opt(f)
 | |
| 	}
 | |
| 	return f
 | |
| }
 | |
| 
 | |
| func (f *FriendNotificationSender) getUsersInfoMap(
 | |
| 	ctx context.Context,
 | |
| 	userIDs []string,
 | |
| ) (map[string]*sdkws.UserInfo, error) {
 | |
| 	users, err := f.getUsersInfo(ctx, userIDs)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	result := make(map[string]*sdkws.UserInfo)
 | |
| 	for _, user := range users {
 | |
| 		result[user.GetUserID()] = user.(*sdkws.UserInfo)
 | |
| 	}
 | |
| 	return result, nil
 | |
| }
 | |
| 
 | |
| func (f *FriendNotificationSender) getFromToUserNickname(
 | |
| 	ctx context.Context,
 | |
| 	fromUserID, toUserID string,
 | |
| ) (string, string, error) {
 | |
| 	users, err := f.getUsersInfoMap(ctx, []string{fromUserID, toUserID})
 | |
| 	if err != nil {
 | |
| 		return "", "", nil
 | |
| 	}
 | |
| 	return users[fromUserID].Nickname, users[toUserID].Nickname, nil
 | |
| }
 | |
| 
 | |
| func (f *FriendNotificationSender) UserInfoUpdatedNotification(ctx context.Context, changedUserID string) error {
 | |
| 	tips := sdkws.UserInfoUpdatedTips{UserID: changedUserID}
 | |
| 	return f.Notification(ctx, mcontext.GetOpUserID(ctx), changedUserID, constant.UserInfoUpdatedNotification, &tips)
 | |
| }
 | |
| 
 | |
| func (f *FriendNotificationSender) FriendApplicationAddNotification(
 | |
| 	ctx context.Context,
 | |
| 	req *pbFriend.ApplyToAddFriendReq,
 | |
| ) error {
 | |
| 	tips := sdkws.FriendApplicationTips{FromToUserID: &sdkws.FromToUserID{
 | |
| 		FromUserID: req.FromUserID,
 | |
| 		ToUserID:   req.ToUserID,
 | |
| 	}}
 | |
| 	return f.Notification(ctx, req.FromUserID, req.ToUserID, constant.FriendApplicationNotification, &tips)
 | |
| }
 | |
| 
 | |
| func (c *FriendNotificationSender) FriendApplicationAgreedNotification(
 | |
| 	ctx context.Context,
 | |
| 	req *pbFriend.RespondFriendApplyReq,
 | |
| ) error {
 | |
| 	tips := sdkws.FriendApplicationApprovedTips{FromToUserID: &sdkws.FromToUserID{
 | |
| 		FromUserID: req.FromUserID,
 | |
| 		ToUserID:   req.ToUserID,
 | |
| 	}, HandleMsg: req.HandleMsg}
 | |
| 	return c.Notification(ctx, req.ToUserID, req.FromUserID, constant.FriendApplicationApprovedNotification, &tips)
 | |
| }
 | |
| 
 | |
| func (c *FriendNotificationSender) FriendApplicationRefusedNotification(
 | |
| 	ctx context.Context,
 | |
| 	req *pbFriend.RespondFriendApplyReq,
 | |
| ) error {
 | |
| 	tips := sdkws.FriendApplicationApprovedTips{FromToUserID: &sdkws.FromToUserID{
 | |
| 		FromUserID: req.FromUserID,
 | |
| 		ToUserID:   req.ToUserID,
 | |
| 	}, HandleMsg: req.HandleMsg}
 | |
| 	return c.Notification(ctx, req.ToUserID, req.FromUserID, constant.FriendApplicationRejectedNotification, &tips)
 | |
| }
 | |
| 
 | |
| func (c *FriendNotificationSender) FriendAddedNotification(
 | |
| 	ctx context.Context,
 | |
| 	operationID, opUserID, fromUserID, toUserID string,
 | |
| ) error {
 | |
| 	tips := sdkws.FriendAddedTips{Friend: &sdkws.FriendInfo{}, OpUser: &sdkws.PublicUserInfo{}}
 | |
| 	user, err := c.getUsersInfo(ctx, []string{opUserID})
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	tips.OpUser.UserID = user[0].GetUserID()
 | |
| 	tips.OpUser.Ex = user[0].GetEx()
 | |
| 	tips.OpUser.Nickname = user[0].GetNickname()
 | |
| 	tips.OpUser.FaceURL = user[0].GetFaceURL()
 | |
| 	friends, err := c.db.FindFriendsWithError(ctx, fromUserID, []string{toUserID})
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	tips.Friend, err = convert.FriendDB2Pb(ctx, friends[0], c.getUsersInfoMap)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	return c.Notification(ctx, fromUserID, toUserID, constant.FriendAddedNotification, &tips)
 | |
| }
 | |
| 
 | |
| func (c *FriendNotificationSender) FriendDeletedNotification(ctx context.Context, req *pbFriend.DeleteFriendReq) error {
 | |
| 	tips := sdkws.FriendDeletedTips{FromToUserID: &sdkws.FromToUserID{
 | |
| 		FromUserID: req.OwnerUserID,
 | |
| 		ToUserID:   req.FriendUserID,
 | |
| 	}}
 | |
| 	return c.Notification(ctx, req.OwnerUserID, req.FriendUserID, constant.FriendDeletedNotification, &tips)
 | |
| }
 | |
| 
 | |
| func (c *FriendNotificationSender) FriendRemarkSetNotification(ctx context.Context, fromUserID, toUserID string) error {
 | |
| 	tips := sdkws.FriendInfoChangedTips{FromToUserID: &sdkws.FromToUserID{}}
 | |
| 	tips.FromToUserID.FromUserID = fromUserID
 | |
| 	tips.FromToUserID.ToUserID = toUserID
 | |
| 	return c.Notification(ctx, fromUserID, toUserID, constant.FriendRemarkSetNotification, &tips)
 | |
| }
 | |
| 
 | |
| func (c *FriendNotificationSender) BlackAddedNotification(ctx context.Context, req *pbFriend.AddBlackReq) error {
 | |
| 	tips := sdkws.BlackAddedTips{FromToUserID: &sdkws.FromToUserID{}}
 | |
| 	tips.FromToUserID.FromUserID = req.OwnerUserID
 | |
| 	tips.FromToUserID.ToUserID = req.BlackUserID
 | |
| 	return c.Notification(ctx, req.OwnerUserID, req.BlackUserID, constant.BlackAddedNotification, &tips)
 | |
| }
 | |
| 
 | |
| func (c *FriendNotificationSender) BlackDeletedNotification(ctx context.Context, req *pbFriend.RemoveBlackReq) {
 | |
| 	blackDeletedTips := sdkws.BlackDeletedTips{FromToUserID: &sdkws.FromToUserID{
 | |
| 		FromUserID: req.OwnerUserID,
 | |
| 		ToUserID:   req.BlackUserID,
 | |
| 	}}
 | |
| 	c.Notification(ctx, req.OwnerUserID, req.BlackUserID, constant.BlackDeletedNotification, &blackDeletedTips)
 | |
| }
 | |
| 
 | |
| func (c *FriendNotificationSender) FriendInfoUpdatedNotification(
 | |
| 	ctx context.Context,
 | |
| 	changedUserID string,
 | |
| 	needNotifiedUserID string,
 | |
| ) {
 | |
| 	tips := sdkws.UserInfoUpdatedTips{UserID: changedUserID}
 | |
| 	c.Notification(ctx, mcontext.GetOpUserID(ctx), needNotifiedUserID, constant.FriendInfoUpdatedNotification, &tips)
 | |
| }
 |