1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
| package jwt
import ( "errors" "log" "net/http" "time"
jwt "github.com/dgrijalva/jwt-go" "github.com/gin-gonic/gin" )
var ( jwtSecret = []byte("baiyang") expireSecond = 1 * 60 * 60 issur = "baiyang"
ErrorExpired = errors.New("Token is expired") ErrorNotValidYet = errors.New("Token not active yet") ErrorMalformed = errors.New("That's not even a token") ErrorInvalid = errors.New("Couldn't handle this token") )
type CustomClaims struct { UserID int `json:"userID"` jwt.StandardClaims }
func GenerateToken(userID int) (string, error) { claims := CustomClaims{ userID, jwt.StandardClaims{ ExpiresAt: time.Now().Add(time.Duration(expireSecond) * time.Second).Unix(), Issuer: issur, }, } tokenClaims := jwt.NewWithClaims(jwt.SigningMethodHS256, claims) return tokenClaims.SignedString(jwtSecret) }
func ParseToken(tokenString string) (*CustomClaims, error) { tokenClaims, err := jwt.ParseWithClaims(tokenString, &CustomClaims{}, func(token *jwt.Token) (interface{}, error) { return jwtSecret, nil }) if err != nil { if ve, ok := err.(*jwt.ValidationError); ok { if ve.Errors&jwt.ValidationErrorMalformed != 0 { return nil, ErrorMalformed } else if ve.Errors&jwt.ValidationErrorExpired != 0 { return nil, ErrorExpired } else if ve.Errors&jwt.ValidationErrorNotValidYet != 0 { return nil, ErrorNotValidYet } else { return nil, ErrorInvalid } } } if claims, ok := tokenClaims.Claims.(*CustomClaims); ok && tokenClaims.Valid { return claims, nil } return nil, ErrorInvalid }
func Auth() gin.HandlerFunc { return func(c *gin.Context) { token := c.Request.Header.Get("token") if token == "" { c.JSON(http.StatusUnauthorized, gin.H{ "code": -1, "msg": "请求未携带token,无权限访问", }) c.Abort() return }
log.Print("get token: ", token)
claims, err := ParseToken(token) if err != nil { if err == ErrorExpired { c.JSON(http.StatusUnauthorized, gin.H{ "code": -1, "msg": "授权已过期", }) c.Abort() return } c.JSON(http.StatusUnauthorized, gin.H{ "code": -1, "msg": err.Error(), }) c.Abort() return } c.Set("UserID", claims.UserID) } }
|