mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 11:22:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			742 lines
		
	
	
		
			25 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			742 lines
		
	
	
		
			25 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 group
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"fmt"
 | 
						|
	"github.com/openimsdk/open-im-server/v3/pkg/common/storage/database"
 | 
						|
	"github.com/openimsdk/open-im-server/v3/pkg/common/storage/model"
 | 
						|
	"github.com/openimsdk/open-im-server/v3/pkg/common/storage/versionctx"
 | 
						|
	"github.com/openimsdk/open-im-server/v3/pkg/rpcclient/notification"
 | 
						|
 | 
						|
	"github.com/openimsdk/open-im-server/v3/pkg/authverify"
 | 
						|
	"github.com/openimsdk/open-im-server/v3/pkg/common/servererrs"
 | 
						|
	"github.com/openimsdk/open-im-server/v3/pkg/common/storage/controller"
 | 
						|
	"github.com/openimsdk/open-im-server/v3/pkg/rpcclient"
 | 
						|
	"github.com/openimsdk/protocol/constant"
 | 
						|
	pbgroup "github.com/openimsdk/protocol/group"
 | 
						|
	"github.com/openimsdk/protocol/sdkws"
 | 
						|
	"github.com/openimsdk/tools/errs"
 | 
						|
	"github.com/openimsdk/tools/log"
 | 
						|
	"github.com/openimsdk/tools/mcontext"
 | 
						|
	"github.com/openimsdk/tools/utils/datautil"
 | 
						|
	"github.com/openimsdk/tools/utils/stringutil"
 | 
						|
)
 | 
						|
 | 
						|
func NewGroupNotificationSender(db controller.GroupDatabase, msgRpcClient *rpcclient.MessageRpcClient, userRpcClient *rpcclient.UserRpcClient, config *Config, fn func(ctx context.Context, userIDs []string) ([]notification.CommonUser, error)) *GroupNotificationSender {
 | 
						|
	return &GroupNotificationSender{
 | 
						|
		NotificationSender: rpcclient.NewNotificationSender(&config.NotificationConfig, rpcclient.WithRpcClient(msgRpcClient), rpcclient.WithUserRpcClient(userRpcClient)),
 | 
						|
		getUsersInfo:       fn,
 | 
						|
		db:                 db,
 | 
						|
		config:             config,
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
type GroupNotificationSender struct {
 | 
						|
	*rpcclient.NotificationSender
 | 
						|
	getUsersInfo func(ctx context.Context, userIDs []string) ([]notification.CommonUser, error)
 | 
						|
	db           controller.GroupDatabase
 | 
						|
	config       *Config
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) PopulateGroupMember(ctx context.Context, members ...*model.GroupMember) error {
 | 
						|
	if len(members) == 0 {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
	emptyUserIDs := make(map[string]struct{})
 | 
						|
	for _, member := range members {
 | 
						|
		if member.Nickname == "" || member.FaceURL == "" {
 | 
						|
			emptyUserIDs[member.UserID] = struct{}{}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	if len(emptyUserIDs) > 0 {
 | 
						|
		users, err := g.getUsersInfo(ctx, datautil.Keys(emptyUserIDs))
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		userMap := make(map[string]notification.CommonUser)
 | 
						|
		for i, user := range users {
 | 
						|
			userMap[user.GetUserID()] = users[i]
 | 
						|
		}
 | 
						|
		for i, member := range members {
 | 
						|
			user, ok := userMap[member.UserID]
 | 
						|
			if !ok {
 | 
						|
				continue
 | 
						|
			}
 | 
						|
			if member.Nickname == "" {
 | 
						|
				members[i].Nickname = user.GetNickname()
 | 
						|
			}
 | 
						|
			if member.FaceURL == "" {
 | 
						|
				members[i].FaceURL = user.GetFaceURL()
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) getUser(ctx context.Context, userID string) (*sdkws.PublicUserInfo, error) {
 | 
						|
	users, err := g.getUsersInfo(ctx, []string{userID})
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if len(users) == 0 {
 | 
						|
		return nil, servererrs.ErrUserIDNotFound.WrapMsg(fmt.Sprintf("user %s not found", userID))
 | 
						|
	}
 | 
						|
	return &sdkws.PublicUserInfo{
 | 
						|
		UserID:   users[0].GetUserID(),
 | 
						|
		Nickname: users[0].GetNickname(),
 | 
						|
		FaceURL:  users[0].GetFaceURL(),
 | 
						|
		Ex:       users[0].GetEx(),
 | 
						|
	}, nil
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) getGroupInfo(ctx context.Context, groupID string) (*sdkws.GroupInfo, error) {
 | 
						|
	gm, err := g.db.TakeGroup(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	num, err := g.db.FindGroupMemberNum(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	ownerUserIDs, err := g.db.GetGroupRoleLevelMemberIDs(ctx, groupID, constant.GroupOwner)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	var ownerUserID string
 | 
						|
	if len(ownerUserIDs) > 0 {
 | 
						|
		ownerUserID = ownerUserIDs[0]
 | 
						|
	}
 | 
						|
	return &sdkws.GroupInfo{
 | 
						|
		GroupID:                gm.GroupID,
 | 
						|
		GroupName:              gm.GroupName,
 | 
						|
		Notification:           gm.Notification,
 | 
						|
		Introduction:           gm.Introduction,
 | 
						|
		FaceURL:                gm.FaceURL,
 | 
						|
		OwnerUserID:            ownerUserID,
 | 
						|
		CreateTime:             gm.CreateTime.UnixMilli(),
 | 
						|
		MemberCount:            num,
 | 
						|
		Ex:                     gm.Ex,
 | 
						|
		Status:                 gm.Status,
 | 
						|
		CreatorUserID:          gm.CreatorUserID,
 | 
						|
		GroupType:              gm.GroupType,
 | 
						|
		NeedVerification:       gm.NeedVerification,
 | 
						|
		LookMemberInfo:         gm.LookMemberInfo,
 | 
						|
		ApplyMemberFriend:      gm.ApplyMemberFriend,
 | 
						|
		NotificationUpdateTime: gm.NotificationUpdateTime.UnixMilli(),
 | 
						|
		NotificationUserID:     gm.NotificationUserID,
 | 
						|
	}, nil
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) getGroupMembers(ctx context.Context, groupID string, userIDs []string) ([]*sdkws.GroupMemberFullInfo, error) {
 | 
						|
	members, err := g.db.FindGroupMembers(ctx, groupID, userIDs)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if err := g.PopulateGroupMember(ctx, members...); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	log.ZDebug(ctx, "getGroupMembers", "members", members)
 | 
						|
	res := make([]*sdkws.GroupMemberFullInfo, 0, len(members))
 | 
						|
	for _, member := range members {
 | 
						|
		res = append(res, g.groupMemberDB2PB(member, 0))
 | 
						|
	}
 | 
						|
	return res, nil
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) getGroupMemberMap(ctx context.Context, groupID string, userIDs []string) (map[string]*sdkws.GroupMemberFullInfo, error) {
 | 
						|
	members, err := g.getGroupMembers(ctx, groupID, userIDs)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	m := make(map[string]*sdkws.GroupMemberFullInfo)
 | 
						|
	for i, member := range members {
 | 
						|
		m[member.UserID] = members[i]
 | 
						|
	}
 | 
						|
	return m, nil
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) getGroupMember(ctx context.Context, groupID string, userID string) (*sdkws.GroupMemberFullInfo, error) {
 | 
						|
	members, err := g.getGroupMembers(ctx, groupID, []string{userID})
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if len(members) == 0 {
 | 
						|
		return nil, errs.ErrInternalServer.WrapMsg(fmt.Sprintf("group %s member %s not found", groupID, userID))
 | 
						|
	}
 | 
						|
	return members[0], nil
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) getGroupOwnerAndAdminUserID(ctx context.Context, groupID string) ([]string, error) {
 | 
						|
	members, err := g.db.FindGroupMemberRoleLevels(ctx, groupID, []int32{constant.GroupOwner, constant.GroupAdmin})
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if err := g.PopulateGroupMember(ctx, members...); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	fn := func(e *model.GroupMember) string { return e.UserID }
 | 
						|
	return datautil.Slice(members, fn), nil
 | 
						|
}
 | 
						|
 | 
						|
//nolint:unused
 | 
						|
func (g *GroupNotificationSender) groupDB2PB(group *model.Group, ownerUserID string, memberCount uint32) *sdkws.GroupInfo {
 | 
						|
	return &sdkws.GroupInfo{
 | 
						|
		GroupID:                group.GroupID,
 | 
						|
		GroupName:              group.GroupName,
 | 
						|
		Notification:           group.Notification,
 | 
						|
		Introduction:           group.Introduction,
 | 
						|
		FaceURL:                group.FaceURL,
 | 
						|
		OwnerUserID:            ownerUserID,
 | 
						|
		CreateTime:             group.CreateTime.UnixMilli(),
 | 
						|
		MemberCount:            memberCount,
 | 
						|
		Ex:                     group.Ex,
 | 
						|
		Status:                 group.Status,
 | 
						|
		CreatorUserID:          group.CreatorUserID,
 | 
						|
		GroupType:              group.GroupType,
 | 
						|
		NeedVerification:       group.NeedVerification,
 | 
						|
		LookMemberInfo:         group.LookMemberInfo,
 | 
						|
		ApplyMemberFriend:      group.ApplyMemberFriend,
 | 
						|
		NotificationUpdateTime: group.NotificationUpdateTime.UnixMilli(),
 | 
						|
		NotificationUserID:     group.NotificationUserID,
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) groupMemberDB2PB(member *model.GroupMember, appMangerLevel int32) *sdkws.GroupMemberFullInfo {
 | 
						|
	return &sdkws.GroupMemberFullInfo{
 | 
						|
		GroupID:        member.GroupID,
 | 
						|
		UserID:         member.UserID,
 | 
						|
		RoleLevel:      member.RoleLevel,
 | 
						|
		JoinTime:       member.JoinTime.UnixMilli(),
 | 
						|
		Nickname:       member.Nickname,
 | 
						|
		FaceURL:        member.FaceURL,
 | 
						|
		AppMangerLevel: appMangerLevel,
 | 
						|
		JoinSource:     member.JoinSource,
 | 
						|
		OperatorUserID: member.OperatorUserID,
 | 
						|
		Ex:             member.Ex,
 | 
						|
		MuteEndTime:    member.MuteEndTime.UnixMilli(),
 | 
						|
		InviterUserID:  member.InviterUserID,
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
/* func (g *GroupNotificationSender) getUsersInfoMap(ctx context.Context, userIDs []string) (map[string]*sdkws.UserInfo, error) {
 | 
						|
	users, err := g.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 (g *GroupNotificationSender) fillOpUser(ctx context.Context, opUser **sdkws.GroupMemberFullInfo, groupID string) (err error) {
 | 
						|
	if opUser == nil {
 | 
						|
		return errs.ErrInternalServer.WrapMsg("**sdkws.GroupMemberFullInfo is nil")
 | 
						|
	}
 | 
						|
	userID := mcontext.GetOpUserID(ctx)
 | 
						|
	if groupID != "" {
 | 
						|
		if authverify.IsManagerUserID(userID, g.config.Share.IMAdminUserID) {
 | 
						|
			*opUser = &sdkws.GroupMemberFullInfo{
 | 
						|
				GroupID:        groupID,
 | 
						|
				UserID:         userID,
 | 
						|
				RoleLevel:      constant.GroupAdmin,
 | 
						|
				AppMangerLevel: constant.AppAdmin,
 | 
						|
			}
 | 
						|
		} else {
 | 
						|
			member, err := g.db.TakeGroupMember(ctx, groupID, userID)
 | 
						|
			if err == nil {
 | 
						|
				*opUser = g.groupMemberDB2PB(member, 0)
 | 
						|
			} else if !errs.ErrRecordNotFound.Is(err) {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	user, err := g.getUser(ctx, userID)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	if *opUser == nil {
 | 
						|
		*opUser = &sdkws.GroupMemberFullInfo{
 | 
						|
			GroupID:        groupID,
 | 
						|
			UserID:         userID,
 | 
						|
			Nickname:       user.Nickname,
 | 
						|
			FaceURL:        user.FaceURL,
 | 
						|
			OperatorUserID: userID,
 | 
						|
		}
 | 
						|
	} else {
 | 
						|
		if (*opUser).Nickname == "" {
 | 
						|
			(*opUser).Nickname = user.Nickname
 | 
						|
		}
 | 
						|
		if (*opUser).FaceURL == "" {
 | 
						|
			(*opUser).FaceURL = user.FaceURL
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) setVersion(ctx context.Context, version *uint64, versionID *string, collName string, id string) {
 | 
						|
	versions := versionctx.GetVersionLog(ctx).Get()
 | 
						|
	for _, coll := range versions {
 | 
						|
		if coll.Name == collName && coll.Doc.DID == id {
 | 
						|
			*version = uint64(coll.Doc.Version)
 | 
						|
			*versionID = coll.Doc.ID.Hex()
 | 
						|
			return
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupCreatedNotification(ctx context.Context, tips *sdkws.GroupCreatedTips) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, tips.Group.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), tips.Group.GroupID, constant.GroupCreatedNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupInfoSetNotification(ctx context.Context, tips *sdkws.GroupInfoSetTips) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), tips.Group.GroupID, constant.GroupInfoSetNotification, tips, rpcclient.WithRpcGetUserName())
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupInfoSetNameNotification(ctx context.Context, tips *sdkws.GroupInfoSetNameTips) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), tips.Group.GroupID, constant.GroupInfoSetNameNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupInfoSetAnnouncementNotification(ctx context.Context, tips *sdkws.GroupInfoSetAnnouncementTips) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), tips.Group.GroupID, constant.GroupInfoSetAnnouncementNotification, tips, rpcclient.WithRpcGetUserName())
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) JoinGroupApplicationNotification(ctx context.Context, req *pbgroup.JoinGroupReq) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, req.GroupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	var user *sdkws.PublicUserInfo
 | 
						|
	user, err = g.getUser(ctx, req.InviterUserID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	userIDs, err := g.getGroupOwnerAndAdminUserID(ctx, req.GroupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	userIDs = append(userIDs, req.InviterUserID, mcontext.GetOpUserID(ctx))
 | 
						|
	tips := &sdkws.JoinGroupApplicationTips{Group: group, Applicant: user, ReqMsg: req.ReqMessage}
 | 
						|
	for _, userID := range datautil.Distinct(userIDs) {
 | 
						|
		g.Notification(ctx, mcontext.GetOpUserID(ctx), userID, constant.JoinGroupApplicationNotification, tips)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) MemberQuitNotification(ctx context.Context, member *sdkws.GroupMemberFullInfo) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, member.GroupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.MemberQuitTips{Group: group, QuitUser: member}
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, member.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), member.GroupID, constant.MemberQuitNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupApplicationAcceptedNotification(ctx context.Context, req *pbgroup.GroupApplicationResponseReq) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, req.GroupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	var userIDs []string
 | 
						|
	userIDs, err = g.getGroupOwnerAndAdminUserID(ctx, req.GroupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.GroupApplicationAcceptedTips{Group: group, HandleMsg: req.HandledMsg}
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	for _, userID := range append(userIDs, req.FromUserID) {
 | 
						|
		if userID == req.FromUserID {
 | 
						|
			tips.ReceiverAs = 0
 | 
						|
		} else {
 | 
						|
			tips.ReceiverAs = 1
 | 
						|
		}
 | 
						|
		g.Notification(ctx, mcontext.GetOpUserID(ctx), userID, constant.GroupApplicationAcceptedNotification, tips)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupApplicationRejectedNotification(ctx context.Context, req *pbgroup.GroupApplicationResponseReq) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, req.GroupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	var userIDs []string
 | 
						|
	userIDs, err = g.getGroupOwnerAndAdminUserID(ctx, req.GroupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.GroupApplicationRejectedTips{Group: group, HandleMsg: req.HandledMsg}
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	for _, userID := range append(userIDs, req.FromUserID) {
 | 
						|
		if userID == req.FromUserID {
 | 
						|
			tips.ReceiverAs = 0
 | 
						|
		} else {
 | 
						|
			tips.ReceiverAs = 1
 | 
						|
		}
 | 
						|
		g.Notification(ctx, mcontext.GetOpUserID(ctx), userID, constant.GroupApplicationRejectedNotification, tips)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupOwnerTransferredNotification(ctx context.Context, req *pbgroup.TransferGroupOwnerReq) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, req.GroupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	opUserID := mcontext.GetOpUserID(ctx)
 | 
						|
	var member map[string]*sdkws.GroupMemberFullInfo
 | 
						|
	member, err = g.getGroupMemberMap(ctx, req.GroupID, []string{opUserID, req.NewOwnerUserID})
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.GroupOwnerTransferredTips{Group: group, OpUser: member[opUserID], NewGroupOwner: member[req.NewOwnerUserID]}
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, req.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), group.GroupID, constant.GroupOwnerTransferredNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) MemberKickedNotification(ctx context.Context, tips *sdkws.MemberKickedTips) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, tips.Group.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), tips.Group.GroupID, constant.MemberKickedNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) MemberInvitedNotification(ctx context.Context, groupID, reason string, invitedUserIDList []string) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	var users []*sdkws.GroupMemberFullInfo
 | 
						|
	users, err = g.getGroupMembers(ctx, groupID, invitedUserIDList)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.MemberInvitedTips{Group: group, InvitedUserList: users}
 | 
						|
	err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID)
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, tips.Group.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), group.GroupID, constant.MemberInvitedNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) MemberEnterNotification(ctx context.Context, groupID string, entrantUserID string) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	var user *sdkws.GroupMemberFullInfo
 | 
						|
	user, err = g.getGroupMember(ctx, groupID, entrantUserID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.MemberEnterTips{Group: group, EntrantUser: user}
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, tips.Group.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), group.GroupID, constant.MemberEnterNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupDismissedNotification(ctx context.Context, tips *sdkws.GroupDismissedTips) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), tips.Group.GroupID, constant.GroupDismissedNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupMemberMutedNotification(ctx context.Context, groupID, groupMemberUserID string, mutedSeconds uint32) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	var user map[string]*sdkws.GroupMemberFullInfo
 | 
						|
	user, err = g.getGroupMemberMap(ctx, groupID, []string{mcontext.GetOpUserID(ctx), groupMemberUserID})
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.GroupMemberMutedTips{
 | 
						|
		Group: group, MutedSeconds: mutedSeconds,
 | 
						|
		OpUser: user[mcontext.GetOpUserID(ctx)], MutedUser: user[groupMemberUserID],
 | 
						|
	}
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, tips.Group.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), group.GroupID, constant.GroupMemberMutedNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupMemberCancelMutedNotification(ctx context.Context, groupID, groupMemberUserID string) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	var user map[string]*sdkws.GroupMemberFullInfo
 | 
						|
	user, err = g.getGroupMemberMap(ctx, groupID, []string{mcontext.GetOpUserID(ctx), groupMemberUserID})
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.GroupMemberCancelMutedTips{Group: group, OpUser: user[mcontext.GetOpUserID(ctx)], MutedUser: user[groupMemberUserID]}
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, tips.Group.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), group.GroupID, constant.GroupMemberCancelMutedNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupMutedNotification(ctx context.Context, groupID string) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	var users []*sdkws.GroupMemberFullInfo
 | 
						|
	users, err = g.getGroupMembers(ctx, groupID, []string{mcontext.GetOpUserID(ctx)})
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.GroupMutedTips{Group: group}
 | 
						|
	if len(users) > 0 {
 | 
						|
		tips.OpUser = users[0]
 | 
						|
	}
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), group.GroupID, constant.GroupMutedNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupCancelMutedNotification(ctx context.Context, groupID string) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	var users []*sdkws.GroupMemberFullInfo
 | 
						|
	users, err = g.getGroupMembers(ctx, groupID, []string{mcontext.GetOpUserID(ctx)})
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.GroupCancelMutedTips{Group: group}
 | 
						|
	if len(users) > 0 {
 | 
						|
		tips.OpUser = users[0]
 | 
						|
	}
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), group.GroupID, constant.GroupCancelMutedNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupMemberInfoSetNotification(ctx context.Context, groupID, groupMemberUserID string) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	var user map[string]*sdkws.GroupMemberFullInfo
 | 
						|
	user, err = g.getGroupMemberMap(ctx, groupID, []string{groupMemberUserID})
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.GroupMemberInfoSetTips{Group: group, OpUser: user[mcontext.GetOpUserID(ctx)], ChangedUser: user[groupMemberUserID]}
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, tips.Group.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), group.GroupID, constant.GroupMemberInfoSetNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupMemberSetToAdminNotification(ctx context.Context, groupID, groupMemberUserID string) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	user, err := g.getGroupMemberMap(ctx, groupID, []string{mcontext.GetOpUserID(ctx), groupMemberUserID})
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.GroupMemberInfoSetTips{Group: group, OpUser: user[mcontext.GetOpUserID(ctx)], ChangedUser: user[groupMemberUserID]}
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, tips.Group.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), group.GroupID, constant.GroupMemberSetToAdminNotification, tips)
 | 
						|
}
 | 
						|
 | 
						|
func (g *GroupNotificationSender) GroupMemberSetToOrdinaryUserNotification(ctx context.Context, groupID, groupMemberUserID string) {
 | 
						|
	var err error
 | 
						|
	defer func() {
 | 
						|
		if err != nil {
 | 
						|
			log.ZError(ctx, stringutil.GetFuncName(1)+" failed", err)
 | 
						|
		}
 | 
						|
	}()
 | 
						|
	var group *sdkws.GroupInfo
 | 
						|
	group, err = g.getGroupInfo(ctx, groupID)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	var user map[string]*sdkws.GroupMemberFullInfo
 | 
						|
	user, err = g.getGroupMemberMap(ctx, groupID, []string{mcontext.GetOpUserID(ctx), groupMemberUserID})
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	tips := &sdkws.GroupMemberInfoSetTips{Group: group, OpUser: user[mcontext.GetOpUserID(ctx)], ChangedUser: user[groupMemberUserID]}
 | 
						|
	if err = g.fillOpUser(ctx, &tips.OpUser, tips.Group.GroupID); err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	g.setVersion(ctx, &tips.GroupMemberVersion, &tips.GroupMemberVersionID, database.GroupMemberVersionName, tips.Group.GroupID)
 | 
						|
	g.Notification(ctx, mcontext.GetOpUserID(ctx), group.GroupID, constant.GroupMemberSetToOrdinaryUserNotification, tips)
 | 
						|
}
 |