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.

51 lines
1.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package server
import (
"context"
"customer/internal/service"
"github.com/go-kratos/kratos/v2/errors"
"github.com/go-kratos/kratos/v2/middleware"
"github.com/go-kratos/kratos/v2/middleware/auth/jwt"
"github.com/go-kratos/kratos/v2/transport"
jwtv4 "github.com/golang-jwt/jwt/v4"
"strings"
)
// 生成中间件的方法
func customerJWT(customerService *service.CustomerService) middleware.Middleware {
return func(handler middleware.Handler) middleware.Handler {
return func(ctx context.Context, req interface{}) (interface{}, error) {
// 一获取存储在jwt中的用户顾客id
claims, ok := jwt.FromContext(ctx)
if !ok {
// 没有获取到 claims
return nil, errors.Unauthorized("UNAUTHORIZED", "claims not found")
}
// 1.2 断言使用
claimsMap := claims.(jwtv4.MapClaims)
id := claimsMap["jti"] //
// 二获取id对应的顾客的token
token, err := customerService.CD.GetToken(id)
if err != nil {
return nil, errors.Unauthorized("UNAUTHORIZED", "customer not found")
}
// 三比对数据表中的token与请求的token是否一致
// 获取请求头
header, _ := transport.FromServerContext(ctx)
// 从header获取token
auths := strings.SplitN(header.RequestHeader().Get("Authorization"), " ", 2)
jwtToken := auths[1]
// 比较请求中的token与数据表中获取的token是否一致
if jwtToken != token {
return nil, errors.Unauthorized("UNAUTHORIZED", "token was updated")
}
// 四,校验通过,发行,继续执行
// 交由下个中间件handler处理
return handler(ctx, req)
}
}
}