You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.3 KiB
73 lines
2.3 KiB
package sys
|
|
|
|
import (
|
|
"bkb-seller/global"
|
|
"bkb-seller/model/request"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// 从Gin的Context中获取从jwt解析出来的用户UUID
|
|
func GetUserUuid(c *gin.Context) string {
|
|
if claims, exists := c.Get("claims"); !exists {
|
|
global.MG_LOG.Error("从Gin的Context中获取从jwt解析出来的用户UUID失败, 请检查路由是否使用jwt中间件!")
|
|
return ""
|
|
} else {
|
|
waitUse := claims.(*request.CustomClaims)
|
|
return waitUse.UUID
|
|
}
|
|
}
|
|
|
|
// 从Gin的Context中获取从jwt解析出来的用户账号
|
|
func GetUserName(c *gin.Context) string {
|
|
if claims, exists := c.Get("claims"); !exists {
|
|
global.MG_LOG.Error("从Gin的Context中获取从jwt解析出来的用户UUID失败, 请检查路由是否使用jwt中间件!")
|
|
return ""
|
|
} else {
|
|
waitUse := claims.(*request.CustomClaims)
|
|
return waitUse.Username
|
|
}
|
|
}
|
|
|
|
func GetUserInfo(c *gin.Context) *request.CustomClaims {
|
|
if claims, exists := c.Get("claims"); !exists {
|
|
global.MG_LOG.Error("从Gin的Context中获取从jwt解析出来的用户UUID失败, 请检查路由是否使用jwt中间件!")
|
|
return nil
|
|
} else {
|
|
waitUse := claims.(*request.CustomClaims)
|
|
return waitUse
|
|
}
|
|
}
|
|
|
|
// 从Gin的Context中获取从jwt解析出来的用户Appid
|
|
func GetUserAppid(c *gin.Context) string {
|
|
if claims, exists := c.Get("claims"); !exists {
|
|
global.MG_LOG.Error("从Gin的Context中获取从jwt解析出来的用户UUID失败, 请检查路由是否使用jwt中间件!")
|
|
return ""
|
|
} else {
|
|
waitUse := claims.(*request.CustomClaims)
|
|
return waitUse.Appid
|
|
}
|
|
}
|
|
|
|
// 从Gin的Context中获取从jwt解析出来的用户Type
|
|
func GetUserType(c *gin.Context) string {
|
|
if claims, exists := c.Get("claims"); !exists {
|
|
global.MG_LOG.Error("从Gin的Context中获取从jwt解析出来的用户UUID失败, 请检查路由是否使用jwt中间件!")
|
|
return ""
|
|
} else {
|
|
waitUse := claims.(*request.CustomClaims)
|
|
return waitUse.Type
|
|
}
|
|
}
|
|
|
|
// 从Gin的Context中获取从jwt解析出来的用户角色id
|
|
func GetUserAuthorityId(c *gin.Context) uint {
|
|
if claims, exists := c.Get("claims"); !exists {
|
|
global.MG_LOG.Error("从Gin的Context中获取从jwt解析出来的用户UUID失败, 请检查路由是否使用jwt中间件!")
|
|
return 0
|
|
} else {
|
|
waitUse := claims.(*request.CustomClaims)
|
|
return waitUse.AuthorityId
|
|
}
|
|
}
|
|
|