mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 08:29:33 +08:00 
			
		
		
		
	* fix: StringValue When there are double quotes in the string value, serialization and deserialization fail Signed-off-by: withchao <993506633@qq.com> * test: StatusTemporaryRedirect -> StatusFound Signed-off-by: withchao <993506633@qq.com> * chore: pb a2r Signed-off-by: withchao <993506633@qq.com> * chore: replacement package Signed-off-by: withchao <993506633@qq.com> * chore: replacement package Signed-off-by: withchao <993506633@qq.com> * chore: replacement package Signed-off-by: withchao <993506633@qq.com> * fix: remove go mod replace Signed-off-by: withchao <993506633@qq.com> * fix: tools version Signed-off-by: withchao <993506633@qq.com> * fix: config.yaml Signed-off-by: withchao <993506633@qq.com> --------- Signed-off-by: withchao <993506633@qq.com>
		
			
				
	
	
		
			82 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.5 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 controller
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	"github.com/golang-jwt/jwt/v4"
 | |
| 
 | |
| 	"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/cache"
 | |
| 	"github.com/OpenIMSDK/tools/constant"
 | |
| 	"github.com/OpenIMSDK/tools/tokenverify"
 | |
| 	"github.com/OpenIMSDK/tools/utils"
 | |
| )
 | |
| 
 | |
| type AuthDatabase interface {
 | |
| 	// 结果为空 不返回错误
 | |
| 	GetTokensWithoutError(ctx context.Context, userID string, platformID int) (map[string]int, error)
 | |
| 	// 创建token
 | |
| 	CreateToken(ctx context.Context, userID string, platformID int) (string, error)
 | |
| }
 | |
| 
 | |
| type authDatabase struct {
 | |
| 	cache cache.MsgModel
 | |
| 
 | |
| 	accessSecret string
 | |
| 	accessExpire int64
 | |
| }
 | |
| 
 | |
| func NewAuthDatabase(cache cache.MsgModel, accessSecret string, accessExpire int64) AuthDatabase {
 | |
| 	return &authDatabase{cache: cache, accessSecret: accessSecret, accessExpire: accessExpire}
 | |
| }
 | |
| 
 | |
| // 结果为空 不返回错误.
 | |
| func (a *authDatabase) GetTokensWithoutError(
 | |
| 	ctx context.Context,
 | |
| 	userID string,
 | |
| 	platformID int,
 | |
| ) (map[string]int, error) {
 | |
| 	return a.cache.GetTokensWithoutError(ctx, userID, platformID)
 | |
| }
 | |
| 
 | |
| // 创建token.
 | |
| func (a *authDatabase) CreateToken(ctx context.Context, userID string, platformID int) (string, error) {
 | |
| 	tokens, err := a.cache.GetTokensWithoutError(ctx, userID, platformID)
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 	var deleteTokenKey []string
 | |
| 	for k, v := range tokens {
 | |
| 		_, err = tokenverify.GetClaimFromToken(k)
 | |
| 		if err != nil || v != constant.NormalToken {
 | |
| 			deleteTokenKey = append(deleteTokenKey, k)
 | |
| 		}
 | |
| 	}
 | |
| 	if len(deleteTokenKey) != 0 {
 | |
| 		err := a.cache.DeleteTokenByUidPid(ctx, userID, platformID, deleteTokenKey)
 | |
| 		if err != nil {
 | |
| 			return "", err
 | |
| 		}
 | |
| 	}
 | |
| 	claims := tokenverify.BuildClaims(userID, platformID, a.accessExpire)
 | |
| 	token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
 | |
| 	tokenString, err := token.SignedString([]byte(a.accessSecret))
 | |
| 	if err != nil {
 | |
| 		return "", utils.Wrap(err, "")
 | |
| 	}
 | |
| 	return tokenString, a.cache.AddTokenFlag(ctx, userID, platformID, tokenString, constant.NormalToken)
 | |
| }
 |