-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjwt.go
53 lines (38 loc) · 1.04 KB
/
jwt.go
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
package utils
import (
"errors"
"time"
"github.com/golang-jwt/jwt/v5"
)
const secretKey = "supersecret"
func GenerateToken(email string, userId int64) (string, error) {
token := jwt.NewWithClaims(jwt.SigningMethodHS256, jwt.MapClaims{
"email": email,
"userId": userId,
"exp": time.Now().Add(time.Hour * 2).Unix(),
})
return token.SignedString([]byte(secretKey))
}
func VerifyToken(token string) (int64, error) {
parsedToken, err := jwt.Parse(token, func(token *jwt.Token) (interface{}, error) {
_, ok := token.Method.(*jwt.SigningMethodHMAC)
// Different signing method was used
if !ok {
return nil, errors.New("unexpected signing method")
}
return []byte(secretKey), nil
})
if err != nil {
return 0, errors.New("could not parse token")
}
tokenIsValid := parsedToken.Valid
if !tokenIsValid {
return 0, errors.New("invalid token")
}
claims, ok := parsedToken.Claims.(jwt.MapClaims)
if !ok {
return 0, errors.New("invalid token claims")
}
userId := int64(claims["userId"].(float64))
return userId, nil
}