From 52052a91653656d49ae66ffb06f25672b0a1bf54 Mon Sep 17 00:00:00 2001 From: icey-yu <119291641+icey-yu@users.noreply.github.com> Date: Wed, 25 Dec 2024 18:07:25 +0800 Subject: [PATCH] fix: redis save error when KickTokens (#3002) --- pkg/common/storage/cache/redis/token.go | 9 +++++---- pkg/common/storage/cache/token.go | 2 +- pkg/common/storage/controller/auth.go | 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/pkg/common/storage/cache/redis/token.go b/pkg/common/storage/cache/redis/token.go index 998b4f1c9..510da43e3 100644 --- a/pkg/common/storage/cache/redis/token.go +++ b/pkg/common/storage/cache/redis/token.go @@ -2,13 +2,14 @@ package redis import ( "context" + "strconv" + "sync" + "time" + "github.com/openimsdk/open-im-server/v3/pkg/common/storage/cache" "github.com/openimsdk/open-im-server/v3/pkg/common/storage/cache/cachekey" "github.com/openimsdk/tools/errs" "github.com/redis/go-redis/v9" - "strconv" - "sync" - "time" ) type tokenCache struct { @@ -99,7 +100,7 @@ func (c *tokenCache) SetTokenMapByUidPid(ctx context.Context, userID string, pla return errs.Wrap(c.rdb.HSet(ctx, cachekey.GetTokenKey(userID, platformID), mm).Err()) } -func (c *tokenCache) BatchSetTokenMapByUidPid(ctx context.Context, tokens map[string]map[string]int) error { +func (c *tokenCache) BatchSetTokenMapByUidPid(ctx context.Context, tokens map[string]map[string]any) error { pipe := c.rdb.Pipeline() for k, v := range tokens { pipe.HSet(ctx, k, v) diff --git a/pkg/common/storage/cache/token.go b/pkg/common/storage/cache/token.go index ee0004d7f..e5e0a9383 100644 --- a/pkg/common/storage/cache/token.go +++ b/pkg/common/storage/cache/token.go @@ -11,6 +11,6 @@ type TokenModel interface { GetTokensWithoutError(ctx context.Context, userID string, platformID int) (map[string]int, error) GetAllTokensWithoutError(ctx context.Context, userID string) (map[int]map[string]int, error) SetTokenMapByUidPid(ctx context.Context, userID string, platformID int, m map[string]int) error - BatchSetTokenMapByUidPid(ctx context.Context, tokens map[string]map[string]int) error + BatchSetTokenMapByUidPid(ctx context.Context, tokens map[string]map[string]any) error DeleteTokenByUidPid(ctx context.Context, userID string, platformID int, fields []string) error } diff --git a/pkg/common/storage/controller/auth.go b/pkg/common/storage/controller/auth.go index b134c3c3b..be8160955 100644 --- a/pkg/common/storage/controller/auth.go +++ b/pkg/common/storage/controller/auth.go @@ -56,7 +56,7 @@ func (a *authDatabase) SetTokenMapByUidPid(ctx context.Context, userID string, p } func (a *authDatabase) BatchSetTokenMapByUidPid(ctx context.Context, tokens []string) error { - setMap := make(map[string]map[string]int) + setMap := make(map[string]map[string]any) for _, token := range tokens { claims, err := tokenverify.GetClaimFromToken(token, authverify.Secret(a.accessSecret)) key := cachekey.GetTokenKey(claims.UserID, claims.PlatformID) @@ -66,7 +66,7 @@ func (a *authDatabase) BatchSetTokenMapByUidPid(ctx context.Context, tokens []st if v, ok := setMap[key]; ok { v[token] = constant.KickedToken } else { - setMap[key] = map[string]int{ + setMap[key] = map[string]any{ token: constant.KickedToken, } }