...
|
...
|
@@ -2,10 +2,8 @@ package middleware |
|
|
|
|
|
import (
|
|
|
"github.com/astaxie/beego/context"
|
|
|
"gitlab.fjmaimaimai.com/mmm-go/partner/pkg/application/userAuth"
|
|
|
"gitlab.fjmaimaimai.com/mmm-go/partner/pkg/infrastructure/utils"
|
|
|
"gitlab.fjmaimaimai.com/mmm-go/partner/pkg/protocol"
|
|
|
"strconv"
|
|
|
"strings"
|
|
|
)
|
|
|
|
...
|
...
|
@@ -40,15 +38,15 @@ func CheckJWTToken(ctx *context.Context) { |
|
|
ctx.Input.SetData("UserId", u.UserId)
|
|
|
|
|
|
// valid token
|
|
|
userPhone, _ := strconv.Atoi(u.Phone)
|
|
|
tokenAuth := userAuth.NewRedisUserAuth(userAuth.WithUserId(int64(userPhone)))
|
|
|
err := tokenAuth.Check(
|
|
|
userAuth.NewOptions(userAuth.WithAccessToken(token)),
|
|
|
)
|
|
|
if err != nil {
|
|
|
msg = protocol.NewMesage(4141)
|
|
|
return
|
|
|
}
|
|
|
//userPhone, _ := strconv.Atoi(u.Phone)
|
|
|
//tokenAuth := userAuth.NewRedisUserAuth(userAuth.WithUserId(int64(userPhone)))
|
|
|
//err := tokenAuth.Check(
|
|
|
// userAuth.NewOptions(userAuth.WithAccessToken(token)),
|
|
|
//)
|
|
|
//if err != nil {
|
|
|
// msg = protocol.NewMesage(4141)
|
|
|
// return
|
|
|
//}
|
|
|
}
|
|
|
return
|
|
|
} |
...
|
...
|
|