mirror of
https://github.com/lukaszraczylo/traefikoidc.git
synced 2026-06-05 22:44:17 +00:00
c3f23cb99b
* Resolve issue with opaque tokens not being parsed correctly * Increase test coverage * Further improvements to test coverage and code quality * Add new providers. * fixup! Add new providers. * Cleanup. * fixup! Cleanup. * fixup! fixup! Cleanup. * fixup! fixup! fixup! Cleanup. * fixup! fixup! fixup! fixup! Cleanup. * Memory management optimisation 24 bytes per Put < 256-4096 bytes per buffer allocation avoided (10-170x difference) * Pooling cleanup.
73 lines
1.8 KiB
Go
73 lines
1.8 KiB
Go
package providers
|
|
|
|
import (
|
|
"net/url"
|
|
)
|
|
|
|
// KeycloakProvider encapsulates Keycloak-specific OIDC logic.
|
|
type KeycloakProvider struct {
|
|
*BaseProvider
|
|
}
|
|
|
|
// NewKeycloakProvider creates a new instance of the KeycloakProvider.
|
|
func NewKeycloakProvider() *KeycloakProvider {
|
|
return &KeycloakProvider{
|
|
BaseProvider: NewBaseProvider(),
|
|
}
|
|
}
|
|
|
|
// GetType returns the provider's type.
|
|
func (p *KeycloakProvider) GetType() ProviderType {
|
|
return ProviderTypeKeycloak
|
|
}
|
|
|
|
// GetCapabilities returns the specific capabilities of the Keycloak provider.
|
|
func (p *KeycloakProvider) GetCapabilities() ProviderCapabilities {
|
|
return ProviderCapabilities{
|
|
SupportsRefreshTokens: true,
|
|
RequiresOfflineAccessScope: true,
|
|
RequiresPromptConsent: false,
|
|
PreferredTokenValidation: "id", // Keycloak typically uses ID tokens
|
|
}
|
|
}
|
|
|
|
// BuildAuthParams configures Keycloak-specific authentication parameters.
|
|
func (p *KeycloakProvider) BuildAuthParams(baseParams url.Values, scopes []string) (*AuthParams, error) {
|
|
// Keycloak supports standard OIDC parameters
|
|
baseParams.Set("response_type", "code")
|
|
|
|
// Ensure offline_access scope is present for refresh tokens
|
|
hasOfflineAccess := false
|
|
for _, scope := range scopes {
|
|
if scope == "offline_access" {
|
|
hasOfflineAccess = true
|
|
break
|
|
}
|
|
}
|
|
if !hasOfflineAccess {
|
|
scopes = append(scopes, "offline_access")
|
|
}
|
|
|
|
// Ensure openid scope is present
|
|
hasOpenID := false
|
|
for _, scope := range scopes {
|
|
if scope == "openid" {
|
|
hasOpenID = true
|
|
break
|
|
}
|
|
}
|
|
if !hasOpenID {
|
|
scopes = append(scopes, "openid")
|
|
}
|
|
|
|
return &AuthParams{
|
|
URLValues: baseParams,
|
|
Scopes: deduplicateScopes(scopes),
|
|
}, nil
|
|
}
|
|
|
|
// Keycloak requires realm and server configuration.
|
|
func (p *KeycloakProvider) ValidateConfig() error {
|
|
return p.BaseProvider.ValidateConfig()
|
|
}
|