2 Star 0 Fork 0

BOBO/创想视频核心服务

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tools_cache_key.go 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
zhouyp 提交于 2024-07-16 14:51 . init:初始化内框代码
package tools
import (
"gitee.com/bobo-rs/creative-framework/pkg/utils"
"gitee.com/bobo-rs/innovideo-services/consts"
"strconv"
"strings"
)
const (
keySep = `-` // key分割符
)
// CacheKey 缓存KEY前缀
func CacheKey(key string, keys ...string) string {
if len(keys) > 0 {
key += strings.Join(keys, keySep)
}
return consts.CachePrefix + key
}
// SmsCaptchaCacheKey 短信验证码缓存KEY
func SmsCaptchaCacheKey(key string, keys ...string) string {
if len(keys) > 0 {
key += strings.Join(keys, keySep)
}
return CacheKey(consts.SafeSmsCaptchaPrefix, key)
}
// SafeSecretCacheKey 安全密钥缓存KEY
func SafeSecretCacheKey(key string, keys ...string) string {
if len(keys) > 0 {
key += strings.Join(keys, keySep)
}
return CacheKey(consts.SafeSecretPrefix, key)
}
// SafeLoginCacheKey 账户登录安全密钥KEY
func SafeLoginCacheKey(key string, keys ...string) string {
if len(keys) > 0 {
key += strings.Join(keys, keySep)
}
return CacheKey(consts.SafeLoginPrefix, key)
}
// TokenCacheKey Token 缓存KEY
func TokenCacheKey(token string, subjects ...string) string {
// 是否已加密
if !utils.IsSha256Hash(token) {
token = utils.ToSha256([]byte(token))
}
// 是否存在主题
if len(subjects) > 0 {
return CacheKey(consts.JWTTokenHash, subjects[0], token)
}
return CacheKey(consts.JWTTokenHash, token)
}
// LoginAuthTokenKey 登录授权TokenKEY
func LoginAuthTokenKey(uid uint, token string) string {
return CacheKey(consts.LoginAuthToken, strconv.Itoa(int(uid)), token)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/bobo-rs/innovideo-services.git
git@gitee.com:bobo-rs/innovideo-services.git
bobo-rs
innovideo-services
创想视频核心服务
v1.0.6

搜索帮助