代码拉取完成,页面将自动刷新
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)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。