mirror of
https://github.com/1f349/mjwt.git
synced 2024-11-09 22:22:48 +00:00
28 lines
980 B
Go
28 lines
980 B
Go
package auth
|
|
|
|
import (
|
|
"github.com/1f349/mjwt"
|
|
"github.com/1f349/mjwt/claims"
|
|
"github.com/golang-jwt/jwt/v4"
|
|
"time"
|
|
)
|
|
|
|
// AccessTokenClaims contains the JWT claims for an access token
|
|
type AccessTokenClaims struct {
|
|
Perms *claims.PermStorage `json:"per"`
|
|
}
|
|
|
|
func (a AccessTokenClaims) Valid() error { return nil }
|
|
|
|
func (a AccessTokenClaims) Type() string { return "access-token" }
|
|
|
|
// CreateAccessToken creates an access token with the default 15 minute duration
|
|
func CreateAccessToken(p mjwt.Signer, sub, id string, aud jwt.ClaimStrings, perms *claims.PermStorage) (string, error) {
|
|
return CreateAccessTokenWithDuration(p, time.Minute*15, sub, id, aud, perms)
|
|
}
|
|
|
|
// CreateAccessTokenWithDuration creates an access token with a custom duration
|
|
func CreateAccessTokenWithDuration(p mjwt.Signer, dur time.Duration, sub, id string, aud jwt.ClaimStrings, perms *claims.PermStorage) (string, error) {
|
|
return p.GenerateJwt(sub, id, aud, dur, &AccessTokenClaims{Perms: perms})
|
|
}
|