-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtokens.go
42 lines (35 loc) · 1.08 KB
/
tokens.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
package main
import (
"github.com/golang-jwt/jwt/v5"
"strings"
"time"
)
func generateNewToken(username string) (string, error) {
// Create the JWT claims, which includes the username and expiry time
var expirationTime *jwt.NumericDate
if config.expireDuration > 0 {
expirationTime = jwt.NewNumericDate(time.Now().Add(config.expireDuration))
}
claims := &jwt.RegisteredClaims{
ExpiresAt: expirationTime,
Issuer: config.Issuer,
Subject: username,
}
// Declare the token with the algorithm used for signing, and the claims
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
// Create the JWT string
secret := []byte(config.Secret)
return token.SignedString(secret)
}
func isValidToken(tkn *jwt.Token, err error) bool {
return err == nil && tkn.Valid
}
func parseTokenString(tknStr string) (*jwt.Token, error) {
tknStr = strings.TrimPrefix(tknStr, "Bearer ")
claims := &jwt.RegisteredClaims{}
tkn, err := jwt.ParseWithClaims(tknStr, claims, func(token *jwt.Token) (interface{}, error) {
secret := []byte(config.Secret)
return secret, nil
})
return tkn, err
}