Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrUnauthenticated = status.Error(codes.Code(openfgav1.AuthErrorCode_unauthenticated), "unauthenticated") ErrMissingBearerToken = status.Error(codes.Code(openfgav1.AuthErrorCode_bearer_token_missing), "missing bearer token") )
Functions ¶
This section is empty.
Types ¶
type Authenticator ¶
type Authenticator interface {
// Authenticate returns a nil error and the AuthClaims info (if available) if the subject is authenticated or a
// non-nil error with an appropriate error cause otherwise.
Authenticate(requestContext context.Context) (*authclaims.AuthClaims, error)
// Close Cleans up the authenticator.
Close()
}
type NoopAuthenticator ¶
type NoopAuthenticator struct{}
func (NoopAuthenticator) Authenticate ¶
func (n NoopAuthenticator) Authenticate(requestContext context.Context) (*authclaims.AuthClaims, error)
func (NoopAuthenticator) Close ¶
func (n NoopAuthenticator) Close()
type OIDCAuthenticator ¶
type OIDCAuthenticator interface {
GetConfiguration() (*OidcConfig, error)
GetKeys() (*keyfunc.JWKS, error)
}
type OidcConfig ¶
OidcConfig contains authorization server metadata. See https://datatracker.ietf.org/doc/html/rfc8414#section-2
Click to show internal directories.
Click to hide internal directories.