45 lines
942 B
Go
45 lines
942 B
Go
|
package domain
|
||
|
|
||
|
import "strings"
|
||
|
|
||
|
const (
|
||
|
TicketKeyPrefix = "tic/"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
ClientDataKey = "permission:clients"
|
||
|
)
|
||
|
|
||
|
type RedisKey string
|
||
|
|
||
|
const (
|
||
|
AccessTokenRedisKey RedisKey = "access_token"
|
||
|
RefreshTokenRedisKey RedisKey = "refresh_token"
|
||
|
DeviceTokenRedisKey RedisKey = "device_token"
|
||
|
UIDTokenRedisKey RedisKey = "uid_token"
|
||
|
TicketRedisKey RedisKey = "ticket"
|
||
|
DeviceUIDRedisKey RedisKey = "device_uid"
|
||
|
)
|
||
|
|
||
|
func (key RedisKey) ToString() string {
|
||
|
return "permission:" + string(key)
|
||
|
}
|
||
|
|
||
|
func (key RedisKey) With(s ...string) RedisKey {
|
||
|
parts := append([]string{string(key)}, s...)
|
||
|
|
||
|
return RedisKey(strings.Join(parts, ":"))
|
||
|
}
|
||
|
|
||
|
func GetAccessTokenRedisKey(id string) string {
|
||
|
return AccessTokenRedisKey.With(id).ToString()
|
||
|
}
|
||
|
|
||
|
func GetUIDTokenRedisKey(uid string) string {
|
||
|
return UIDTokenRedisKey.With(uid).ToString()
|
||
|
}
|
||
|
|
||
|
func GetTicketRedisKey(ticket string) string {
|
||
|
return TicketRedisKey.With(ticket).ToString()
|
||
|
}
|