49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package oidc
|
|
|
|
import (
|
|
"forge.cadoles.com/cadoles/bouncer/internal/proxy/director/layer/authn"
|
|
"forge.cadoles.com/cadoles/bouncer/internal/store"
|
|
"github.com/mitchellh/mapstructure"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type LayerOptions struct {
|
|
authn.LayerOptions
|
|
OIDC OIDCOptions `mapstructure:"oidc"`
|
|
}
|
|
|
|
type OIDCOptions struct {
|
|
ClientID string `mapstructure:"clientId"`
|
|
ClientSecret string `mapstructure:"clientSecret"`
|
|
LoginCallbackPath string `mapstructure:"loginCallbackPath"`
|
|
LogoutPath string `mapstructure:"logoutPath"`
|
|
IssuerURL string `mapstructure:"issuerURL"`
|
|
SkipIssuerVerification bool `mapstructure:"skipIssuerVerification"`
|
|
PostLogoutRedirectURL string `mapstructure:"postLogoutRedirectURL"`
|
|
}
|
|
|
|
func fromStoreOptions(storeOptions store.LayerOptions) (*LayerOptions, error) {
|
|
layerOptions := LayerOptions{
|
|
LayerOptions: authn.DefaultLayerOptions(),
|
|
OIDC: OIDCOptions{
|
|
LoginCallbackPath: "/.bouncer/authn/oidc/%s/callback",
|
|
LogoutPath: "/.bouncer/authn/oidc/%s/logout",
|
|
},
|
|
}
|
|
|
|
config := mapstructure.DecoderConfig{
|
|
Result: &layerOptions,
|
|
}
|
|
|
|
decoder, err := mapstructure.NewDecoder(&config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := decoder.Decode(storeOptions); err != nil {
|
|
return nil, errors.WithStack(err)
|
|
}
|
|
|
|
return &layerOptions, nil
|
|
}
|