Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CredentialStrategy ¶
type CredentialStrategy interface { GetCredentials(w http.ResponseWriter, r *http.Request) (*Credentials, error) AddWWWAuthenticate(w http.ResponseWriter, r *http.Request, realm string) }
CredentialStrategy obtains Credentials from the request.
type Credentials ¶
Credentials contains the auth type, client id and secret.
type Manager ¶
type Manager interface {
Authenticate(ctx context.Context, clientID, clientSecret string) (*user.User, map[string]*authpb.Scope, error)
}
Manager is the interface to implement to authenticate users
type Registry ¶
type Registry interface { ListProviders(ctx context.Context) ([]*registry.ProviderInfo, error) GetProvider(ctx context.Context, authType string) (*registry.ProviderInfo, error) }
Registry is the interface that auth registries implement for discovering auth providers
type TokenStrategy ¶
TokenStrategy obtains a token from the request. If token does not exist returns an empty string.
type TokenWriter ¶
type TokenWriter interface {
WriteToken(token string, w http.ResponseWriter)
}
TokenWriter stores the token in a http response.
Directories ¶
Path | Synopsis |
---|---|
manager
|
|
oidc
Package oidc verifies an OIDC token against the configured OIDC provider and obtains the necessary claims to obtain user information.
|
Package oidc verifies an OIDC token against the configured OIDC provider and obtains the necessary claims to obtain user information. |
Click to show internal directories.
Click to hide internal directories.