|
@@ -148,6 +148,80 @@ func ResultJWTTestWrapper(handle JWTHander, svc *Service) gin.HandlerFunc {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+// ResultJWTWrapper JWT授权处理handler
|
|
|
+func ResultJWTWrapperKey(handle JWTHander, svc *Service, keys []string) gin.HandlerFunc {
|
|
|
+
|
|
|
+ return func(c *gin.Context) {
|
|
|
+
|
|
|
+ defer func() {
|
|
|
+ if r := recover(); r != nil {
|
|
|
+ fmt.Println("recover success.")
|
|
|
+ fmt.Println(r)
|
|
|
+
|
|
|
+ buf := make([]byte, 1<<16)
|
|
|
+ runtime.Stack(buf, true)
|
|
|
+ fmt.Println("buf", string(buf))
|
|
|
+
|
|
|
+ c.JSON(http.StatusOK, NewFailResultWithData("系统异常", r))
|
|
|
+ }
|
|
|
+ }()
|
|
|
+
|
|
|
+ claims := jwt.ExtractClaims(c)
|
|
|
+
|
|
|
+ var usr *JWTUser
|
|
|
+
|
|
|
+ if claims["id"] != nil {
|
|
|
+ id := claims["id"].(string)
|
|
|
+ phone := claims["phone"].(string)
|
|
|
+ name := claims["name"].(string)
|
|
|
+ role := claims["role"].(string)
|
|
|
+ parent := claims["parent"].(string)
|
|
|
+ state := int32(claims["state"].(float64))
|
|
|
+ key := ""
|
|
|
+ if claims["key"] != nil {
|
|
|
+ key = claims["key"].(string)
|
|
|
+ }
|
|
|
+
|
|
|
+ usr = &JWTUser{ID: id, Name: name, Phone: phone, Parent: parent, Role: role, State: state, Key: key}
|
|
|
+ }
|
|
|
+
|
|
|
+ var apis = &ApiSession{
|
|
|
+ Svc: svc,
|
|
|
+ User: usr,
|
|
|
+ }
|
|
|
+
|
|
|
+ flag := false
|
|
|
+ for _, key := range keys {
|
|
|
+ if usr.Key == key {
|
|
|
+ flag = true
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if !flag {
|
|
|
+ c.JSON(http.StatusForbidden, NewFailResult("您没有权限"))
|
|
|
+ c.Abort()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ data, err := handle(c, apis)
|
|
|
+
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println(err)
|
|
|
+ httpErr, ok := err.(HTTPError)
|
|
|
+ if ok {
|
|
|
+ c.JSON(http.StatusOK, NewFailResultWithCode(httpErr.Error(), httpErr.Code))
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ c.JSON(http.StatusOK, NewFailResult(err.Error()))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if data != nil {
|
|
|
+ c.JSON(http.StatusOK, NewOkResult(data))
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
// ResultSuc 成功
|
|
|
func ResultSuc(c *gin.Context, data interface{}) {
|
|
|
c.JSON(http.StatusOK, NewOkResult(data))
|
|
@@ -296,12 +370,15 @@ func NewErrorWithCode(desc string, code int32) HTTPError {
|
|
|
|
|
|
// JWTUser jwt登录用户
|
|
|
type JWTUser struct {
|
|
|
- ID string `json:"id"`
|
|
|
- Parent string `json:"parent"`
|
|
|
- Phone string `json:"phone"`
|
|
|
- Role string `json:"role"`
|
|
|
- Perms string `json:"perms"`
|
|
|
- State int32 `json:"state"`
|
|
|
+ ID string `json:"id"`
|
|
|
+ Parent string `json:"parent"`
|
|
|
+ Name string `json:"name"`
|
|
|
+ Phone string `json:"phone"`
|
|
|
+ Role string `json:"role"`
|
|
|
+ Perms string `json:"perms"`
|
|
|
+ State int32 `json:"state"`
|
|
|
+ Key string `json:"key"`
|
|
|
+ UserType int `json:"userType"`
|
|
|
}
|
|
|
|
|
|
func UtilQueryMap(c *gin.Context) map[string]interface{} {
|