mirror of
https://github.com/go-micro/go-micro.git
synced 2025-07-12 22:41:07 +02:00
* feat: more plugins * chore(ci): split out benchmarks Attempt to resolve too many open files in ci * chore(ci): split out benchmarks * fix(ci): Attempt to resolve too many open files in ci * fix: set DefaultX for cli flag and service option * fix: restore http broker * fix: default http broker * feat: full nats profile * chore: still ugly, not ready * fix: better initialization for profiles * fix(tests): comment out flaky listen tests * fix: disable benchmarks on gha * chore: cleanup, comments * chore: add nats config source
34 lines
856 B
Go
34 lines
856 B
Go
package token
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
|
|
"go-micro.dev/v5/auth"
|
|
)
|
|
|
|
var (
|
|
// ErrNotFound is returned when a token cannot be found.
|
|
ErrNotFound = errors.New("token not found")
|
|
// ErrEncodingToken is returned when the service encounters an error during encoding.
|
|
ErrEncodingToken = errors.New("error encoding the token")
|
|
// ErrInvalidToken is returned when the token provided is not valid.
|
|
ErrInvalidToken = errors.New("invalid token provided")
|
|
)
|
|
|
|
// Provider generates and inspects tokens.
|
|
type Provider interface {
|
|
Generate(account *auth.Account, opts ...GenerateOption) (*Token, error)
|
|
Inspect(token string) (*auth.Account, error)
|
|
String() string
|
|
}
|
|
|
|
type Token struct {
|
|
// The actual token
|
|
Token string `json:"token"`
|
|
// Time of token creation
|
|
Created time.Time `json:"created"`
|
|
// Time of token expiry
|
|
Expiry time.Time `json:"expiry"`
|
|
}
|