Files
open-im-server/internal/crontask/clear_msg.go
T

106 lines
4.4 KiB
Go
Raw Normal View History

2022-08-09 16:38:33 +08:00
package cronTask
2022-08-08 11:30:10 +08:00
import (
"Open_IM/pkg/common/config"
2022-08-10 19:31:57 +08:00
"Open_IM/pkg/common/constant"
2023-02-15 15:52:32 +08:00
"Open_IM/pkg/common/db/controller"
2022-08-08 11:30:10 +08:00
"Open_IM/pkg/common/log"
2023-02-15 15:52:32 +08:00
"Open_IM/pkg/common/tracelog"
2022-08-08 11:30:10 +08:00
"Open_IM/pkg/utils"
2023-02-15 15:52:32 +08:00
"context"
2022-08-10 19:31:57 +08:00
"math"
2022-08-08 11:30:10 +08:00
)
2023-02-16 15:20:59 +08:00
type ClearMsgTool struct {
msgInterface controller.MsgInterface
2023-02-22 20:33:19 +08:00
userInterface controller.UserDatabase
groupInterface controller.GroupDatabase
2022-08-08 11:30:10 +08:00
}
2023-02-16 15:20:59 +08:00
func (c *ClearMsgTool) getCronTaskOperationID() string {
2023-02-15 15:52:32 +08:00
return cronTaskOperationID + utils.OperationIDGenerator()
2022-08-10 15:14:51 +08:00
}
2023-02-16 15:20:59 +08:00
func (c *ClearMsgTool) ClearAll() {
2023-02-15 15:52:32 +08:00
operationID := c.getCronTaskOperationID()
ctx := context.Background()
tracelog.SetOperationID(ctx, operationID)
2023-02-16 15:20:59 +08:00
log.NewInfo(operationID, "============================ start del cron task ============================")
2023-02-15 15:52:32 +08:00
var err error
2023-02-16 15:20:59 +08:00
userIDList, err := c.userInterface.GetAllUserID(ctx)
2023-02-15 15:52:32 +08:00
if err == nil {
2023-02-16 15:20:59 +08:00
c.ClearUsersMsg(ctx, userIDList)
2023-02-15 15:52:32 +08:00
} else {
log.NewError(operationID, utils.GetSelfFuncName(), err.Error())
}
// working group msg clear
2023-02-16 15:20:59 +08:00
workingGroupIDList, err := c.groupInterface.GetGroupIDsByGroupType(ctx, constant.WorkingGroup)
2023-02-15 15:52:32 +08:00
if err == nil {
2023-02-16 15:20:59 +08:00
c.ClearSuperGroupMsg(ctx, workingGroupIDList)
2023-02-15 15:52:32 +08:00
} else {
log.NewError(operationID, utils.GetSelfFuncName(), err.Error())
}
2023-02-16 15:20:59 +08:00
log.NewInfo(operationID, "============================ start del cron finished ============================")
2022-11-04 16:18:45 +08:00
}
2023-02-16 15:20:59 +08:00
func (c *ClearMsgTool) ClearUsersMsg(ctx context.Context, userIDList []string) {
2023-02-15 15:52:32 +08:00
for _, userID := range userIDList {
2023-02-20 10:13:29 +08:00
if err := c.msgInterface.DeleteUserMsgsAndSetMinSeq(ctx, userID, int64(config.Config.Mongo.DBRetainChatRecords*24*60*60)); err != nil {
2023-02-16 15:20:59 +08:00
log.NewError(tracelog.GetOperationID(ctx), utils.GetSelfFuncName(), err.Error(), userID)
2022-08-10 15:14:51 +08:00
}
2023-02-20 10:13:29 +08:00
_, maxSeqMongo, minSeqCache, maxSeqCache, err := c.msgInterface.GetUserMinMaxSeqInMongoAndCache(ctx, userID)
2023-02-16 15:20:59 +08:00
if err != nil {
log.NewError(tracelog.GetOperationID(ctx), utils.GetSelfFuncName(), err.Error(), "GetUserMinMaxSeqInMongoAndCache failed", userID)
continue
2022-11-03 18:31:29 +08:00
}
2023-02-20 10:13:29 +08:00
c.FixUserSeq(ctx, userID, minSeqCache, maxSeqCache)
c.CheckMaxSeqWithMongo(ctx, userID, maxSeqCache, maxSeqMongo, constant.WriteDiffusion)
2022-11-01 19:39:56 +08:00
}
2023-02-15 15:52:32 +08:00
}
2023-02-16 15:20:59 +08:00
func (c *ClearMsgTool) ClearSuperGroupMsg(ctx context.Context, workingGroupIDList []string) {
2023-02-15 15:52:32 +08:00
for _, groupID := range workingGroupIDList {
2023-02-16 15:20:59 +08:00
userIDs, err := c.groupInterface.FindGroupMemberUserID(ctx, groupID)
2022-12-26 10:25:42 +08:00
if err != nil {
2023-02-16 15:20:59 +08:00
log.NewError(tracelog.GetOperationID(ctx), utils.GetSelfFuncName(), "FindGroupMemberUserID", err.Error(), groupID)
2023-02-15 15:52:32 +08:00
continue
2022-12-26 10:25:42 +08:00
}
2023-02-20 10:13:29 +08:00
if err := c.msgInterface.DeleteUserSuperGroupMsgsAndSetMinSeq(ctx, groupID, userIDs, int64(config.Config.Mongo.DBRetainChatRecords*24*60*60)); err != nil {
log.NewError(tracelog.GetOperationID(ctx), utils.GetSelfFuncName(), err.Error(), "DeleteUserSuperGroupMsgsAndSetMinSeq failed", groupID, userIDs, config.Config.Mongo.DBRetainChatRecords)
2022-11-03 19:50:06 +08:00
}
2023-02-20 10:13:29 +08:00
_, maxSeqMongo, maxSeqCache, err := c.msgInterface.GetSuperGroupMinMaxSeqInMongoAndCache(ctx, groupID)
if err != nil {
log.NewError(tracelog.GetOperationID(ctx), utils.GetSelfFuncName(), err.Error(), "GetUserMinMaxSeqInMongoAndCache failed", groupID)
continue
}
c.FixGroupUserSeq(ctx, userIDs, groupID)
c.CheckMaxSeqWithMongo(ctx, groupID, maxSeqCache, maxSeqMongo, constant.WriteDiffusion)
2022-11-03 19:50:06 +08:00
}
}
2023-02-20 10:13:29 +08:00
func (c *ClearMsgTool) FixUserSeq(ctx context.Context, userID string, minSeqCache, maxSeqCache int64) {
if minSeqCache > maxSeqCache {
if err := c.msgInterface.SetUserMinSeq(ctx, userID, maxSeqCache); err != nil {
log.NewError(tracelog.GetOperationID(ctx), "SetUserMinSeq failed", userID, minSeqCache, maxSeqCache)
} else {
log.NewWarn(tracelog.GetOperationID(ctx), "SetUserMinSeq success", userID, minSeqCache, maxSeqCache)
2022-08-11 12:09:44 +08:00
}
2022-08-10 19:31:57 +08:00
}
2023-02-20 10:13:29 +08:00
}
func (c *ClearMsgTool) FixGroupUserSeq(ctx context.Context, userID string, groupID string, minSeqCache, maxSeqCache int64) {
if minSeqCache > maxSeqCache {
if err := c.msgInterface.SetGroupUserMinSeq(ctx, groupID, userID, maxSeqCache); err != nil {
log.NewError(tracelog.GetOperationID(ctx), "SetGroupUserMinSeq failed", userID, minSeqCache, maxSeqCache)
} else {
log.NewWarn(tracelog.GetOperationID(ctx), "SetGroupUserMinSeq success", userID, minSeqCache, maxSeqCache)
}
2022-11-03 19:26:41 +08:00
}
2023-02-20 10:13:29 +08:00
}
func (c *ClearMsgTool) CheckMaxSeqWithMongo(ctx context.Context, sourceID string, maxSeqCache, maxSeqMongo int64, diffusionType int) {
if math.Abs(float64(maxSeqMongo-maxSeqCache)) > 10 {
log.NewWarn(tracelog.GetOperationID(ctx), "cache max seq and mongo max seq is diff > 10", sourceID, maxSeqCache, maxSeqMongo, diffusionType)
2022-08-10 19:31:57 +08:00
}
}