|
|
|
@ -17,6 +17,8 @@ package cache
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"errors"
|
|
|
|
|
"github.com/dtm-labs/rockscache"
|
|
|
|
|
unrelationtb "github.com/openimsdk/open-im-server/v3/pkg/common/db/table/unrelation"
|
|
|
|
|
"strconv"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
@ -103,11 +105,7 @@ type MsgModel interface {
|
|
|
|
|
GetTokensWithoutError(ctx context.Context, userID string, platformID int) (map[string]int, error)
|
|
|
|
|
SetTokenMapByUidPid(ctx context.Context, userID string, platformID int, m map[string]int) error
|
|
|
|
|
DeleteTokenByUidPid(ctx context.Context, userID string, platformID int, fields []string) error
|
|
|
|
|
GetMessagesBySeq(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
conversationID string,
|
|
|
|
|
seqs []int64,
|
|
|
|
|
) (seqMsg []*sdkws.MsgData, failedSeqList []int64, err error)
|
|
|
|
|
GetMessagesBySeq(ctx context.Context, conversationID string, seqs []int64) (seqMsg []*sdkws.MsgData, failedSeqList []int64, err error)
|
|
|
|
|
SetMessageToCache(ctx context.Context, conversationID string, msgs []*sdkws.MsgData) (int, error)
|
|
|
|
|
UserDeleteMsgs(ctx context.Context, conversationID string, seqs []int64, userID string) error
|
|
|
|
|
DelUserDeleteMsgsList(ctx context.Context, conversationID string, seqs []int64)
|
|
|
|
@ -120,12 +118,7 @@ type MsgModel interface {
|
|
|
|
|
JudgeMessageReactionExist(ctx context.Context, clientMsgID string, sessionType int32) (bool, error)
|
|
|
|
|
GetOneMessageAllReactionList(ctx context.Context, clientMsgID string, sessionType int32) (map[string]string, error)
|
|
|
|
|
DeleteOneMessageKey(ctx context.Context, clientMsgID string, sessionType int32, subKey string) error
|
|
|
|
|
SetMessageReactionExpire(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
clientMsgID string,
|
|
|
|
|
sessionType int32,
|
|
|
|
|
expiration time.Duration,
|
|
|
|
|
) (bool, error)
|
|
|
|
|
SetMessageReactionExpire(ctx context.Context, clientMsgID string, sessionType int32, expiration time.Duration) (bool, error)
|
|
|
|
|
GetMessageTypeKeyValue(ctx context.Context, clientMsgID string, sessionType int32, typeKey string) (string, error)
|
|
|
|
|
SetMessageTypeKeyValue(ctx context.Context, clientMsgID string, sessionType int32, typeKey, value string) error
|
|
|
|
|
LockMessageTypeKey(ctx context.Context, clientMsgID string, TypeKey string) error
|
|
|
|
@ -138,10 +131,10 @@ func NewMsgCacheModel(client redis.UniversalClient) MsgModel {
|
|
|
|
|
|
|
|
|
|
type msgCache struct {
|
|
|
|
|
metaCache
|
|
|
|
|
rdb redis.UniversalClient
|
|
|
|
|
// expireTime time.Duration
|
|
|
|
|
// rcClient *rockscache.Client
|
|
|
|
|
// msgDocDatabase unrelationtb.MsgDocModelInterface
|
|
|
|
|
rdb redis.UniversalClient
|
|
|
|
|
expireTime time.Duration
|
|
|
|
|
rcClient *rockscache.Client
|
|
|
|
|
msgDocDatabase unrelationtb.MsgDocModelInterface
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) getMaxSeqKey(conversationID string) string {
|
|
|
|
@ -156,53 +149,51 @@ func (c *msgCache) getHasReadSeqKey(conversationID string, userID string) string
|
|
|
|
|
return hasReadSeq + userID + ":" + conversationID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) setSeq(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
conversationID string,
|
|
|
|
|
seq int64,
|
|
|
|
|
getkey func(conversationID string) string,
|
|
|
|
|
) error {
|
|
|
|
|
func (c *msgCache) setSeq(ctx context.Context, conversationID string, seq int64, getkey func(conversationID string) string) error {
|
|
|
|
|
return utils.Wrap1(c.rdb.Set(ctx, getkey(conversationID), seq, 0).Err())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) getSeq(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
conversationID string,
|
|
|
|
|
getkey func(conversationID string) string,
|
|
|
|
|
) (int64, error) {
|
|
|
|
|
func (c *msgCache) getSeq(ctx context.Context, conversationID string, getkey func(conversationID string) string) (int64, error) {
|
|
|
|
|
return utils.Wrap2(c.rdb.Get(ctx, getkey(conversationID)).Int64())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) getSeqs(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
items []string,
|
|
|
|
|
getkey func(s string) string,
|
|
|
|
|
) (m map[string]int64, err error) {
|
|
|
|
|
pipe := c.rdb.Pipeline()
|
|
|
|
|
for _, v := range items {
|
|
|
|
|
err2 := pipe.Get(ctx, getkey(v)).Err()
|
|
|
|
|
if err2 != nil && !errors.Is(err2, redis.Nil) {
|
|
|
|
|
return nil, errs.Wrap(err2)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
result, err := pipe.Exec(ctx)
|
|
|
|
|
if err != nil && !errors.Is(err, redis.Nil) {
|
|
|
|
|
return nil, errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
func (c *msgCache) getSeqs(ctx context.Context, items []string, getkey func(s string) string) (m map[string]int64, err error) {
|
|
|
|
|
m = make(map[string]int64, len(items))
|
|
|
|
|
for i, v := range result {
|
|
|
|
|
seq := v.(*redis.StringCmd)
|
|
|
|
|
|
|
|
|
|
if seq.Err() != nil && !errors.Is(seq.Err(), redis.Nil) {
|
|
|
|
|
return nil, errs.Wrap(v.Err())
|
|
|
|
|
for i, v := range items {
|
|
|
|
|
res, err := c.rdb.Get(ctx, getkey(v)).Result()
|
|
|
|
|
if err != nil && err != redis.Nil {
|
|
|
|
|
return nil, errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
val := utils.StringToInt64(seq.Val())
|
|
|
|
|
val := utils.StringToInt64(res)
|
|
|
|
|
if val != 0 {
|
|
|
|
|
m[items[i]] = val
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return m, nil
|
|
|
|
|
|
|
|
|
|
//pipe := c.rdb.Pipeline()
|
|
|
|
|
//for _, v := range items {
|
|
|
|
|
// if err := pipe.Get(ctx, getkey(v)).Err(); err != nil && err != redis.Nil {
|
|
|
|
|
// return nil, errs.Wrap(err)
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//result, err := pipe.Exec(ctx)
|
|
|
|
|
//if err != nil && err != redis.Nil {
|
|
|
|
|
// return nil, errs.Wrap(err)
|
|
|
|
|
//}
|
|
|
|
|
//m = make(map[string]int64, len(items))
|
|
|
|
|
//for i, v := range result {
|
|
|
|
|
// seq := v.(*redis.StringCmd)
|
|
|
|
|
// if seq.Err() != nil && seq.Err() != redis.Nil {
|
|
|
|
|
// return nil, errs.Wrap(v.Err())
|
|
|
|
|
// }
|
|
|
|
|
// val := utils.StringToInt64(seq.Val())
|
|
|
|
|
// if val != 0 {
|
|
|
|
|
// m[items[i]] = val
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//return m, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) SetMaxSeq(ctx context.Context, conversationID string, maxSeq int64) error {
|
|
|
|
@ -222,16 +213,21 @@ func (c *msgCache) SetMinSeq(ctx context.Context, conversationID string, minSeq
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) setSeqs(ctx context.Context, seqs map[string]int64, getkey func(key string) string) error {
|
|
|
|
|
pipe := c.rdb.Pipeline()
|
|
|
|
|
for k, seq := range seqs {
|
|
|
|
|
err := pipe.Set(ctx, getkey(k), seq, 0).Err()
|
|
|
|
|
if err != nil {
|
|
|
|
|
for conversationID, seq := range seqs {
|
|
|
|
|
if err := c.rdb.Set(ctx, getkey(conversationID), seq, 0).Err(); err != nil {
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_, err := pipe.Exec(ctx)
|
|
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
return nil
|
|
|
|
|
//pipe := c.rdb.Pipeline()
|
|
|
|
|
//for k, seq := range seqs {
|
|
|
|
|
// err := pipe.Set(ctx, getkey(k), seq, 0).Err()
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// return errs.Wrap(err)
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//_, err := pipe.Exec(ctx)
|
|
|
|
|
//return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) SetMinSeqs(ctx context.Context, seqs map[string]int64) error {
|
|
|
|
@ -254,30 +250,17 @@ func (c *msgCache) GetConversationUserMinSeq(ctx context.Context, conversationID
|
|
|
|
|
return utils.Wrap2(c.rdb.Get(ctx, c.getConversationUserMinSeqKey(conversationID, userID)).Int64())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) GetConversationUserMinSeqs(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
conversationID string,
|
|
|
|
|
userIDs []string,
|
|
|
|
|
) (m map[string]int64, err error) {
|
|
|
|
|
func (c *msgCache) GetConversationUserMinSeqs(ctx context.Context, conversationID string, userIDs []string) (m map[string]int64, err error) {
|
|
|
|
|
return c.getSeqs(ctx, userIDs, func(userID string) string {
|
|
|
|
|
return c.getConversationUserMinSeqKey(conversationID, userID)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) SetConversationUserMinSeq(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
conversationID string,
|
|
|
|
|
userID string,
|
|
|
|
|
minSeq int64,
|
|
|
|
|
) error {
|
|
|
|
|
func (c *msgCache) SetConversationUserMinSeq(ctx context.Context, conversationID string, userID string, minSeq int64) error {
|
|
|
|
|
return utils.Wrap1(c.rdb.Set(ctx, c.getConversationUserMinSeqKey(conversationID, userID), minSeq, 0).Err())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) SetConversationUserMinSeqs(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
conversationID string,
|
|
|
|
|
seqs map[string]int64,
|
|
|
|
|
) (err error) {
|
|
|
|
|
func (c *msgCache) SetConversationUserMinSeqs(ctx context.Context, conversationID string, seqs map[string]int64) (err error) {
|
|
|
|
|
return c.setSeqs(ctx, seqs, func(userID string) string {
|
|
|
|
|
return c.getConversationUserMinSeqKey(conversationID, userID)
|
|
|
|
|
})
|
|
|
|
@ -305,11 +288,7 @@ func (c *msgCache) UserSetHasReadSeqs(ctx context.Context, userID string, hasRea
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) GetHasReadSeqs(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
userID string,
|
|
|
|
|
conversationIDs []string,
|
|
|
|
|
) (map[string]int64, error) {
|
|
|
|
|
func (c *msgCache) GetHasReadSeqs(ctx context.Context, userID string, conversationIDs []string) (map[string]int64, error) {
|
|
|
|
|
return c.getSeqs(ctx, conversationIDs, func(conversationID string) string {
|
|
|
|
|
return c.getHasReadSeqKey(conversationID, userID)
|
|
|
|
|
})
|
|
|
|
@ -363,62 +342,86 @@ func (c *msgCache) allMessageCacheKey(conversationID string) string {
|
|
|
|
|
return messageCache + conversationID + "_*"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) GetMessagesBySeq(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
conversationID string,
|
|
|
|
|
seqs []int64,
|
|
|
|
|
) (seqMsgs []*sdkws.MsgData, failedSeqs []int64, err error) {
|
|
|
|
|
pipe := c.rdb.Pipeline()
|
|
|
|
|
for _, v := range seqs {
|
|
|
|
|
// MESSAGE_CACHE:169.254.225.224_reliability1653387820_0_1
|
|
|
|
|
key := c.getMessageCacheKey(conversationID, v)
|
|
|
|
|
err2 := pipe.Get(ctx, key).Err()
|
|
|
|
|
if err2 != nil && errors.Is(err2, redis.Nil) {
|
|
|
|
|
return nil, nil, err2
|
|
|
|
|
func (c *msgCache) GetMessagesBySeq(ctx context.Context, conversationID string, seqs []int64) (seqMsgs []*sdkws.MsgData, failedSeqs []int64, err error) {
|
|
|
|
|
for _, seq := range seqs {
|
|
|
|
|
res, err := c.rdb.Get(ctx, c.getMessageCacheKey(conversationID, seq)).Result()
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.ZError(ctx, "GetMessagesBySeq failed", err, "conversationID", conversationID, "seq", seq)
|
|
|
|
|
failedSeqs = append(failedSeqs, seq)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
result, err := pipe.Exec(ctx)
|
|
|
|
|
for i, v := range result {
|
|
|
|
|
cmd := v.(*redis.StringCmd)
|
|
|
|
|
if cmd.Err() != nil {
|
|
|
|
|
failedSeqs = append(failedSeqs, seqs[i])
|
|
|
|
|
} else {
|
|
|
|
|
msg := sdkws.MsgData{}
|
|
|
|
|
err = msgprocessor.String2Pb(cmd.Val(), &msg)
|
|
|
|
|
if err == nil {
|
|
|
|
|
if msg.Status != constant.MsgDeleted {
|
|
|
|
|
seqMsgs = append(seqMsgs, &msg)
|
|
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
log.ZWarn(ctx, "UnmarshalString failed", err, "conversationID", conversationID, "seq", seqs[i], "msg", cmd.Val())
|
|
|
|
|
}
|
|
|
|
|
failedSeqs = append(failedSeqs, seqs[i])
|
|
|
|
|
msg := sdkws.MsgData{}
|
|
|
|
|
if err = msgprocessor.String2Pb(res, &msg); err != nil {
|
|
|
|
|
log.ZError(ctx, "GetMessagesBySeq Unmarshal failed", err, "res", res, "conversationID", conversationID, "seq", seq)
|
|
|
|
|
failedSeqs = append(failedSeqs, seq)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if msg.Status == constant.MsgDeleted {
|
|
|
|
|
failedSeqs = append(failedSeqs, seq)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
seqMsgs = append(seqMsgs, &msg)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return seqMsgs, failedSeqs, err
|
|
|
|
|
return
|
|
|
|
|
//pipe := c.rdb.Pipeline()
|
|
|
|
|
//for _, v := range seqs {
|
|
|
|
|
// // MESSAGE_CACHE:169.254.225.224_reliability1653387820_0_1
|
|
|
|
|
// key := c.getMessageCacheKey(conversationID, v)
|
|
|
|
|
// if err := pipe.Get(ctx, key).Err(); err != nil && err != redis.Nil {
|
|
|
|
|
// return nil, nil, err
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//result, err := pipe.Exec(ctx)
|
|
|
|
|
//for i, v := range result {
|
|
|
|
|
// cmd := v.(*redis.StringCmd)
|
|
|
|
|
// if cmd.Err() != nil {
|
|
|
|
|
// failedSeqs = append(failedSeqs, seqs[i])
|
|
|
|
|
// } else {
|
|
|
|
|
// msg := sdkws.MsgData{}
|
|
|
|
|
// err = msgprocessor.String2Pb(cmd.Val(), &msg)
|
|
|
|
|
// if err == nil {
|
|
|
|
|
// if msg.Status != constant.MsgDeleted {
|
|
|
|
|
// seqMsgs = append(seqMsgs, &msg)
|
|
|
|
|
// continue
|
|
|
|
|
// }
|
|
|
|
|
// } else {
|
|
|
|
|
// log.ZWarn(ctx, "UnmarshalString failed", err, "conversationID", conversationID, "seq", seqs[i], "msg", cmd.Val())
|
|
|
|
|
// }
|
|
|
|
|
// failedSeqs = append(failedSeqs, seqs[i])
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//return seqMsgs, failedSeqs, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) SetMessageToCache(ctx context.Context, conversationID string, msgs []*sdkws.MsgData) (int, error) {
|
|
|
|
|
pipe := c.rdb.Pipeline()
|
|
|
|
|
var failedMsgs []*sdkws.MsgData
|
|
|
|
|
for _, msg := range msgs {
|
|
|
|
|
key := c.getMessageCacheKey(conversationID, msg.Seq)
|
|
|
|
|
s, err := msgprocessor.Pb2String(msg)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return 0, errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
err = pipe.Set(ctx, key, s, time.Duration(config.Config.MsgCacheTimeout)*time.Second).Err()
|
|
|
|
|
if err != nil {
|
|
|
|
|
failedMsgs = append(failedMsgs, msg)
|
|
|
|
|
log.ZWarn(ctx, "set msg 2 cache failed", err, "msg", failedMsgs)
|
|
|
|
|
key := c.getMessageCacheKey(conversationID, msg.Seq)
|
|
|
|
|
if err := c.rdb.Set(ctx, key, s, time.Duration(config.Config.MsgCacheTimeout)*time.Second).Err(); err != nil {
|
|
|
|
|
return 0, errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_, err := pipe.Exec(ctx)
|
|
|
|
|
|
|
|
|
|
return len(failedMsgs), err
|
|
|
|
|
return len(msgs), nil
|
|
|
|
|
//pipe := c.rdb.Pipeline()
|
|
|
|
|
//var failedMsgs []*sdkws.MsgData
|
|
|
|
|
//for _, msg := range msgs {
|
|
|
|
|
// key := c.getMessageCacheKey(conversationID, msg.Seq)
|
|
|
|
|
// s, err := msgprocessor.Pb2String(msg)
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// return 0, errs.Wrap(err)
|
|
|
|
|
// }
|
|
|
|
|
// err = pipe.Set(ctx, key, s, time.Duration(config.Config.MsgCacheTimeout)*time.Second).Err()
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// failedMsgs = append(failedMsgs, msg)
|
|
|
|
|
// log.ZWarn(ctx, "set msg 2 cache failed", err, "msg", failedMsgs)
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//_, err := pipe.Exec(ctx)
|
|
|
|
|
//return len(failedMsgs), err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) getMessageDelUserListKey(conversationID string, seq int64) string {
|
|
|
|
@ -430,28 +433,47 @@ func (c *msgCache) getUserDelList(conversationID, userID string) string {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) UserDeleteMsgs(ctx context.Context, conversationID string, seqs []int64, userID string) error {
|
|
|
|
|
pipe := c.rdb.Pipeline()
|
|
|
|
|
for _, seq := range seqs {
|
|
|
|
|
delUserListKey := c.getMessageDelUserListKey(conversationID, seq)
|
|
|
|
|
userDelListKey := c.getUserDelList(conversationID, userID)
|
|
|
|
|
err := pipe.SAdd(ctx, delUserListKey, userID).Err()
|
|
|
|
|
err := c.rdb.SAdd(ctx, delUserListKey, userID).Err()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
err = pipe.SAdd(ctx, userDelListKey, seq).Err()
|
|
|
|
|
err = c.rdb.SAdd(ctx, userDelListKey, seq).Err()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
if err := pipe.Expire(ctx, delUserListKey, time.Duration(config.Config.MsgCacheTimeout)*time.Second).Err(); err != nil {
|
|
|
|
|
if err := c.rdb.Expire(ctx, delUserListKey, time.Duration(config.Config.MsgCacheTimeout)*time.Second).Err(); err != nil {
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
if err := pipe.Expire(ctx, userDelListKey, time.Duration(config.Config.MsgCacheTimeout)*time.Second).Err(); err != nil {
|
|
|
|
|
if err := c.rdb.Expire(ctx, userDelListKey, time.Duration(config.Config.MsgCacheTimeout)*time.Second).Err(); err != nil {
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_, err := pipe.Exec(ctx)
|
|
|
|
|
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
return nil
|
|
|
|
|
//pipe := c.rdb.Pipeline()
|
|
|
|
|
//for _, seq := range seqs {
|
|
|
|
|
// delUserListKey := c.getMessageDelUserListKey(conversationID, seq)
|
|
|
|
|
// userDelListKey := c.getUserDelList(conversationID, userID)
|
|
|
|
|
// err := pipe.SAdd(ctx, delUserListKey, userID).Err()
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// return errs.Wrap(err)
|
|
|
|
|
// }
|
|
|
|
|
// err = pipe.SAdd(ctx, userDelListKey, seq).Err()
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// return errs.Wrap(err)
|
|
|
|
|
// }
|
|
|
|
|
// if err := pipe.Expire(ctx, delUserListKey, time.Duration(config.Config.MsgCacheTimeout)*time.Second).Err(); err != nil {
|
|
|
|
|
// return errs.Wrap(err)
|
|
|
|
|
// }
|
|
|
|
|
// if err := pipe.Expire(ctx, userDelListKey, time.Duration(config.Config.MsgCacheTimeout)*time.Second).Err(); err != nil {
|
|
|
|
|
// return errs.Wrap(err)
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//_, err := pipe.Exec(ctx)
|
|
|
|
|
//return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) GetUserDelList(ctx context.Context, userID, conversationID string) (seqs []int64, err error) {
|
|
|
|
@ -476,47 +498,74 @@ func (c *msgCache) DelUserDeleteMsgsList(ctx context.Context, conversationID str
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if len(delUsers) > 0 {
|
|
|
|
|
pipe := c.rdb.Pipeline()
|
|
|
|
|
var failedFlag bool
|
|
|
|
|
for _, userID := range delUsers {
|
|
|
|
|
err = pipe.SRem(ctx, c.getUserDelList(conversationID, userID), seq).Err()
|
|
|
|
|
err = c.rdb.SRem(ctx, c.getUserDelList(conversationID, userID), seq).Err()
|
|
|
|
|
if err != nil {
|
|
|
|
|
failedFlag = true
|
|
|
|
|
log.ZWarn(
|
|
|
|
|
ctx,
|
|
|
|
|
"DelUserDeleteMsgsList failed",
|
|
|
|
|
err,
|
|
|
|
|
"conversationID",
|
|
|
|
|
conversationID,
|
|
|
|
|
"seq",
|
|
|
|
|
seq,
|
|
|
|
|
"userID",
|
|
|
|
|
userID,
|
|
|
|
|
)
|
|
|
|
|
log.ZWarn(ctx, "DelUserDeleteMsgsList failed", err, "conversationID", conversationID, "seq", seq, "userID", userID)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if !failedFlag {
|
|
|
|
|
if err := pipe.Del(ctx, c.getMessageDelUserListKey(conversationID, seq)).Err(); err != nil {
|
|
|
|
|
if err := c.rdb.Del(ctx, c.getMessageDelUserListKey(conversationID, seq)).Err(); err != nil {
|
|
|
|
|
log.ZWarn(ctx, "DelUserDeleteMsgsList failed", err, "conversationID", conversationID, "seq", seq)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if _, err := pipe.Exec(ctx); err != nil {
|
|
|
|
|
log.ZError(ctx, "pipe exec failed", err, "conversationID", conversationID, "seq", seq)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//for _, seq := range seqs {
|
|
|
|
|
// delUsers, err := c.rdb.SMembers(ctx, c.getMessageDelUserListKey(conversationID, seq)).Result()
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// log.ZWarn(ctx, "DelUserDeleteMsgsList failed", err, "conversationID", conversationID, "seq", seq)
|
|
|
|
|
// continue
|
|
|
|
|
// }
|
|
|
|
|
// if len(delUsers) > 0 {
|
|
|
|
|
// pipe := c.rdb.Pipeline()
|
|
|
|
|
// var failedFlag bool
|
|
|
|
|
// for _, userID := range delUsers {
|
|
|
|
|
// err = pipe.SRem(ctx, c.getUserDelList(conversationID, userID), seq).Err()
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// failedFlag = true
|
|
|
|
|
// log.ZWarn(
|
|
|
|
|
// ctx,
|
|
|
|
|
// "DelUserDeleteMsgsList failed",
|
|
|
|
|
// err,
|
|
|
|
|
// "conversationID",
|
|
|
|
|
// conversationID,
|
|
|
|
|
// "seq",
|
|
|
|
|
// seq,
|
|
|
|
|
// "userID",
|
|
|
|
|
// userID,
|
|
|
|
|
// )
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// if !failedFlag {
|
|
|
|
|
// if err := pipe.Del(ctx, c.getMessageDelUserListKey(conversationID, seq)).Err(); err != nil {
|
|
|
|
|
// log.ZWarn(ctx, "DelUserDeleteMsgsList failed", err, "conversationID", conversationID, "seq", seq)
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// if _, err := pipe.Exec(ctx); err != nil {
|
|
|
|
|
// log.ZError(ctx, "pipe exec failed", err, "conversationID", conversationID, "seq", seq)
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) DeleteMessages(ctx context.Context, conversationID string, seqs []int64) error {
|
|
|
|
|
pipe := c.rdb.Pipeline()
|
|
|
|
|
for _, seq := range seqs {
|
|
|
|
|
if err := pipe.Del(ctx, c.getMessageCacheKey(conversationID, seq)).Err(); err != nil {
|
|
|
|
|
if err := c.rdb.Del(ctx, c.getMessageCacheKey(conversationID, seq)).Err(); err != nil {
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_, err := pipe.Exec(ctx)
|
|
|
|
|
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
return nil
|
|
|
|
|
//pipe := c.rdb.Pipeline()
|
|
|
|
|
//for _, seq := range seqs {
|
|
|
|
|
// if err := pipe.Del(ctx, c.getMessageCacheKey(conversationID, seq)).Err(); err != nil {
|
|
|
|
|
// return errs.Wrap(err)
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//_, err := pipe.Exec(ctx)
|
|
|
|
|
//return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) CleanUpOneConversationAllMsg(ctx context.Context, conversationID string) error {
|
|
|
|
@ -527,16 +576,20 @@ func (c *msgCache) CleanUpOneConversationAllMsg(ctx context.Context, conversatio
|
|
|
|
|
if err != nil {
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
pipe := c.rdb.Pipeline()
|
|
|
|
|
for _, v := range vals {
|
|
|
|
|
err2 := pipe.Del(ctx, v).Err()
|
|
|
|
|
if err2 != nil {
|
|
|
|
|
return errs.Wrap(err2)
|
|
|
|
|
if err := c.rdb.Del(ctx, v).Err(); err != nil {
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_, err = pipe.Exec(ctx)
|
|
|
|
|
|
|
|
|
|
return errs.Wrap(err)
|
|
|
|
|
return nil
|
|
|
|
|
//pipe := c.rdb.Pipeline()
|
|
|
|
|
//for _, v := range vals {
|
|
|
|
|
// if err := pipe.Del(ctx, v).Err(); err != nil {
|
|
|
|
|
// return errs.Wrap(err)
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//_, err = pipe.Exec(ctx)
|
|
|
|
|
//return errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) DelMsgFromCache(ctx context.Context, userID string, seqs []int64) error {
|
|
|
|
@ -594,17 +647,8 @@ func (c *msgCache) GetSendMsgStatus(ctx context.Context, id string) (int32, erro
|
|
|
|
|
return int32(result), errs.Wrap(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) SetFcmToken(
|
|
|
|
|
ctx context.Context,
|
|
|
|
|
account string,
|
|
|
|
|
platformID int,
|
|
|
|
|
fcmToken string,
|
|
|
|
|
expireTime int64,
|
|
|
|
|
) (err error) {
|
|
|
|
|
return errs.Wrap(
|
|
|
|
|
c.rdb.Set(ctx, fcmToken+account+":"+strconv.Itoa(platformID), fcmToken, time.Duration(expireTime)*time.Second).
|
|
|
|
|
Err(),
|
|
|
|
|
)
|
|
|
|
|
func (c *msgCache) SetFcmToken(ctx context.Context, account string, platformID int, fcmToken string, expireTime int64) (err error) {
|
|
|
|
|
return errs.Wrap(c.rdb.Set(ctx, fcmToken+account+":"+strconv.Itoa(platformID), fcmToken, time.Duration(expireTime)*time.Second).Err())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *msgCache) GetFcmToken(ctx context.Context, account string, platformID int) (string, error) {
|
|
|
|
|