fusenapi/goctl_template/api/context.tpl

49 lines
1.2 KiB
Smarty
Raw Normal View History

2023-06-05 09:56:55 +00:00
package svc
import (
{{.configImport}}
2023-06-12 06:05:35 +00:00
"fusenapi/initalize"
"gorm.io/gorm"
2023-06-05 09:56:55 +00:00
)
type ServiceContext struct {
Config {{.config}}
{{.middleware}}
2023-06-12 06:05:35 +00:00
MysqlConn *gorm.DB
2023-06-05 09:56:55 +00:00
}
func NewServiceContext(c {{.config}}) *ServiceContext {
2023-06-12 07:17:42 +00:00
2023-06-05 09:56:55 +00:00
return &ServiceContext{
Config: c,
2023-06-12 06:05:35 +00:00
MysqlConn: initalize.InitMysql(c.SourceMysql),
2023-06-05 09:56:55 +00:00
{{.middlewareAssignment}}
}
}
2023-06-12 07:17:42 +00:00
func (svcCxt *ServiceContext) ParseJwtToken(r *http.Request) (jwt.MapClaims, error) {
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"])
}
// 返回用于验证签名的密钥
return svcCxt.Config.Auth.AccessSecret, nil
})
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))
}