mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-27 12:46:39 +00:00
66 lines
1.9 KiB
Go
66 lines
1.9 KiB
Go
package jwt
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
gojwt "github.com/golang-jwt/jwt/v5"
|
|
)
|
|
|
|
// ErrTokenExpired signals that the iat-based token age check failed. Callers
|
|
// use errors.Is to branch on it when they want to surface a stable machine-
|
|
// readable reason (e.g. so a dashboard can prompt for re-login).
|
|
var ErrTokenExpired = errors.New("token expired")
|
|
|
|
// CheckTokenAge validates that a JWT token's iat claim is within the given
|
|
// maxAge duration. Returns an error if the claims are unparseable, the iat
|
|
// claim is missing, or the token is too old.
|
|
func CheckTokenAge(token *gojwt.Token, maxAge time.Duration) error {
|
|
claims, ok := token.Claims.(gojwt.MapClaims)
|
|
if !ok {
|
|
return fmt.Errorf("token has invalid claims format (user=%s)", UserIDFromToken(token))
|
|
}
|
|
|
|
iat, ok := claims["iat"].(float64)
|
|
if !ok {
|
|
return fmt.Errorf("token missing iat claim (user=%s)", UserIDFromToken(token))
|
|
}
|
|
|
|
issuedAt := time.Unix(int64(iat), 0)
|
|
tokenAge := time.Since(issuedAt)
|
|
if tokenAge > maxAge {
|
|
return fmt.Errorf("%w for user=%s: age=%v, max=%v", ErrTokenExpired, userIDFromClaims(claims), tokenAge, maxAge)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// UserIDFromToken extracts a human-readable user identifier from a JWT token
|
|
// for use in error messages. Returns "unknown" if the token or claims are nil.
|
|
func UserIDFromToken(token *gojwt.Token) string {
|
|
if token == nil {
|
|
return "unknown"
|
|
}
|
|
claims, ok := token.Claims.(gojwt.MapClaims)
|
|
if !ok {
|
|
return "unknown"
|
|
}
|
|
return userIDFromClaims(claims)
|
|
}
|
|
|
|
// userIDFromClaims extracts a user identifier from JWT claims, trying sub,
|
|
// user_id, and email in order.
|
|
func userIDFromClaims(claims gojwt.MapClaims) string {
|
|
if sub, ok := claims["sub"].(string); ok && sub != "" {
|
|
return sub
|
|
}
|
|
if userID, ok := claims["user_id"].(string); ok && userID != "" {
|
|
return userID
|
|
}
|
|
if email, ok := claims["email"].(string); ok && email != "" {
|
|
return email
|
|
}
|
|
return "unknown"
|
|
}
|