Documentation
¶
Overview ¶
Package auth provides OIDC authentication for the krci CLI.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrNotAuthenticated = errors.New("not authenticated: run 'krci auth login'") ErrTokenExpired = errors.New("token expired") ErrRefreshFailed = errors.New("token refresh failed") )
Sentinel errors for auth failure classification. Callers use errors.Is() to branch on these.
Functions ¶
Types ¶
type TokenProvider ¶
type TokenProvider interface {
// GetToken returns a valid access token.
GetToken(ctx context.Context) (string, error)
// Login performs the interactive OIDC login flow.
Login(ctx context.Context) error
// Logout clears stored credentials.
Logout() error
// UserInfo returns cached user claims from the stored ID token.
UserInfo() (*UserInfo, error)
}
TokenProvider resolves a valid access token using the precedence chain: KRCI_TOKEN env → cached token → refresh → error.
Click to show internal directories.
Click to hide internal directories.