2023-06-01 07:32:28 +00:00
|
|
|
package svc
|
|
|
|
|
|
|
|
import (
|
2023-06-12 08:47:48 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2023-06-08 03:03:20 +00:00
|
|
|
"fusenapi/server/product/internal/config"
|
2023-06-19 02:33:51 +00:00
|
|
|
"net/http"
|
|
|
|
|
2023-06-21 06:12:50 +00:00
|
|
|
"fusenapi/initalize"
|
|
|
|
"fusenapi/model/gmodel"
|
|
|
|
|
2023-06-12 08:47:48 +00:00
|
|
|
"github.com/golang-jwt/jwt"
|
2023-06-12 06:05:35 +00:00
|
|
|
"gorm.io/gorm"
|
2023-06-01 07:32:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ServiceContext struct {
|
2023-06-12 06:05:35 +00:00
|
|
|
Config config.Config
|
|
|
|
|
|
|
|
MysqlConn *gorm.DB
|
2023-06-21 06:12:50 +00:00
|
|
|
AllModels *gmodel.AllModelsGen
|
2023-06-01 07:32:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewServiceContext(c config.Config) *ServiceContext {
|
2023-06-12 08:47:48 +00:00
|
|
|
|
2023-06-01 07:32:28 +00:00
|
|
|
return &ServiceContext{
|
2023-06-01 10:34:41 +00:00
|
|
|
Config: c,
|
2023-06-19 02:33:51 +00:00
|
|
|
MysqlConn: initalize.InitMysql(c.SourceMysql),
|
2023-06-21 06:12:50 +00:00
|
|
|
AllModels: gmodel.NewAllModels(initalize.InitMysql(c.SourceMysql)),
|
2023-06-01 07:32:28 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-12 08:47:48 +00:00
|
|
|
|
2023-06-20 11:36:28 +00:00
|
|
|
func (svcCtx *ServiceContext) ParseJwtToken(r *http.Request) (jwt.MapClaims, error) {
|
2023-06-12 08:47:48 +00:00
|
|
|
AuthKey := r.Header.Get("Authorization")
|
|
|
|
if len(AuthKey) <= 50 {
|
|
|
|
return nil, errors.New(fmt.Sprint("Error parsing token, len:", len(AuthKey)))
|
|
|
|
}
|
|
|
|
|
|
|
|
token, err := jwt.Parse(AuthKey, func(token *jwt.Token) (interface{}, error) {
|
|
|
|
// 检查签名方法是否为 HS256
|
|
|
|
if _, ok := token.Method.(*jwt.SigningMethodHMAC); !ok {
|
|
|
|
return nil, fmt.Errorf("unexpected signing method: %v", token.Header["alg"])
|
|
|
|
}
|
|
|
|
// 返回用于验证签名的密钥
|
2023-06-21 06:12:50 +00:00
|
|
|
return []byte(svcCtx.Config.Auth.AccessSecret), nil
|
2023-06-12 08:47:48 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.New(fmt.Sprint("Error parsing token:", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
// 验证成功返回
|
|
|
|
if claims, ok := token.Claims.(jwt.MapClaims); ok && token.Valid {
|
|
|
|
return claims, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, errors.New(fmt.Sprint("Invalid token", err))
|
|
|
|
}
|