2020-03-23 19:19:30 +03:00
|
|
|
package token
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2020-04-01 16:25:00 +03:00
|
|
|
"time"
|
2020-03-23 19:19:30 +03:00
|
|
|
|
2020-08-19 17:47:17 +03:00
|
|
|
"github.com/unistack-org/micro/v3/auth"
|
2020-03-23 19:19:30 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
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 {
|
2020-04-01 16:25:00 +03:00
|
|
|
Generate(account *auth.Account, opts ...GenerateOption) (*Token, error)
|
|
|
|
Inspect(token string) (*auth.Account, error)
|
2020-03-23 19:19:30 +03:00
|
|
|
String() string
|
|
|
|
}
|
2020-04-01 16:25:00 +03:00
|
|
|
|
|
|
|
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"`
|
|
|
|
}
|