e071084ebe
govulncheck / govulncheck (push) Has been cancelled
Lint / golangci-lint (push) Has been cancelled
Run Tests / Unit Tests (push) Has been cancelled
Run Tests / Etcd Integration Tests (push) Has been cancelled
Harness (E2E) / Harnesses (mock LLM) (push) Has been cancelled
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Has been cancelled
34 lines
856 B
Go
34 lines
856 B
Go
package token
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
|
|
"go-micro.dev/v6/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"`
|
|
}
|