File size: 976 Bytes
1e92f2d |
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 |
package apikey
import (
"time"
"github.com/golang-jwt/jwt/v5"
"github.com/google/uuid"
)
// Issuer is the JWT issuer for GraphQL API keys.
const Issuer = "goalert"
// Audience is the JWT audience for GraphQL API keys.
const Audience = "apikey-v1/graphql-v1"
// Claims is the set of claims that are encoded into a JWT for a GraphQL API key.
type Claims struct {
jwt.RegisteredClaims
PolicyHash []byte `json:"pol"`
}
// NewGraphQLClaims returns a new Claims object for a GraphQL API key with the embedded policy hash.
func NewGraphQLClaims(id uuid.UUID, policyHash []byte, expires time.Time) jwt.Claims {
n := time.Now()
return &Claims{
RegisteredClaims: jwt.RegisteredClaims{
ID: uuid.NewString(),
Subject: id.String(),
ExpiresAt: jwt.NewNumericDate(expires),
IssuedAt: jwt.NewNumericDate(n),
NotBefore: jwt.NewNumericDate(n.Add(-time.Minute)),
Issuer: Issuer,
Audience: []string{Audience},
},
PolicyHash: policyHash,
}
}
|