mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
51 lines
1.5 KiB
Go
51 lines
1.5 KiB
Go
package cronTask
|
|
|
|
import (
|
|
"Open_IM/pkg/common/constant"
|
|
"Open_IM/pkg/common/db/mysql_model/im_mysql_model"
|
|
"Open_IM/pkg/common/log"
|
|
"Open_IM/pkg/utils"
|
|
"github.com/robfig/cron/v3"
|
|
)
|
|
|
|
const cronTaskOperationID = "cronTaskOperationID-"
|
|
|
|
func StartCronTask() {
|
|
log.NewInfo(utils.OperationIDGenerator(), "start cron task")
|
|
c := cron.New()
|
|
_, err := c.AddFunc("30 3-6,20-23 * * *", func() {
|
|
operationID := getCronTaskOperationID()
|
|
userIDList, err := im_mysql_model.SelectAllUserID()
|
|
if err == nil {
|
|
log.NewDebug(operationID, utils.GetSelfFuncName(), "userIDList: ", userIDList)
|
|
for _, userID := range userIDList {
|
|
if err := DeleteMongoMsgAndResetRedisSeq(operationID, userID, constant.WriteDiffusion); err != nil {
|
|
log.NewError(operationID, utils.GetSelfFuncName(), err.Error(), userID, constant.WriteDiffusion)
|
|
}
|
|
}
|
|
} else {
|
|
log.NewError(operationID, utils.GetSelfFuncName(), err.Error())
|
|
}
|
|
|
|
workingGroupIDList, err := im_mysql_model.GetGroupIDListByGroupType(constant.WorkingGroup)
|
|
if err == nil {
|
|
for _, groupID := range workingGroupIDList {
|
|
if err := DeleteMongoMsgAndResetRedisSeq(operationID, groupID, constant.ReadDiffusion); err != nil {
|
|
log.NewError(operationID, utils.GetSelfFuncName(), operationID, groupID, constant.ReadDiffusion, err.Error())
|
|
}
|
|
}
|
|
} else {
|
|
log.NewError(operationID, utils.GetSelfFuncName(), err.Error())
|
|
return
|
|
}
|
|
})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
c.Start()
|
|
}
|
|
|
|
func getCronTaskOperationID() string {
|
|
return cronTaskOperationID + utils.OperationIDGenerator()
|
|
}
|