49 lines
1.5 KiB
Go
49 lines
1.5 KiB
Go
// Package revaconfig transfers the config struct to reva config map
|
|
package revaconfig
|
|
|
|
import (
|
|
"github.com/qsfera/server/services/auth-bearer/pkg/config"
|
|
)
|
|
|
|
// AuthBearerConfigFromStruct will adapt a КуСфера config struct into a reva mapstructure to start a reva service.
|
|
func AuthBearerConfigFromStruct(cfg *config.Config) map[string]any {
|
|
return map[string]any{
|
|
"shared": map[string]any{
|
|
"jwt_secret": cfg.TokenManager.JWTSecret,
|
|
"gatewaysvc": cfg.Reva.Address,
|
|
"skip_user_groups_in_token": cfg.SkipUserGroupsInToken,
|
|
"grpc_client_options": cfg.Reva.GetGRPCClientConfig(),
|
|
"multi_tenant_enabled": cfg.Commons.MultiTenantEnabled,
|
|
},
|
|
"grpc": map[string]any{
|
|
"network": cfg.GRPC.Protocol,
|
|
"address": cfg.GRPC.Addr,
|
|
"tls_settings": map[string]any{
|
|
"enabled": cfg.GRPC.TLS.Enabled,
|
|
"certificate": cfg.GRPC.TLS.Cert,
|
|
"key": cfg.GRPC.TLS.Key,
|
|
},
|
|
"services": map[string]any{
|
|
"authprovider": map[string]any{
|
|
"auth_manager": "oidc",
|
|
"auth_managers": map[string]any{
|
|
"oidc": map[string]any{
|
|
"issuer": cfg.OIDC.Issuer,
|
|
"insecure": cfg.OIDC.Insecure,
|
|
"id_claim": cfg.OIDC.IDClaim,
|
|
"uid_claim": cfg.OIDC.UIDClaim,
|
|
"gid_claim": cfg.OIDC.GIDClaim,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
"interceptors": map[string]any{
|
|
"prometheus": map[string]any{
|
|
"namespace": "qsfera",
|
|
"subsystem": "auth_bearer",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|