2022-03-28 10:05:09 +02:00
|
|
|
package start
|
|
|
|
|
|
|
|
import (
|
2022-05-02 11:18:17 +02:00
|
|
|
"time"
|
|
|
|
|
2022-04-21 12:37:39 +02:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2022-03-29 11:53:19 +02:00
|
|
|
"github.com/spf13/viper"
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/logging"
|
2022-03-29 11:53:19 +02:00
|
|
|
|
2024-01-25 17:28:20 +01:00
|
|
|
"github.com/zitadel/zitadel/cmd/encryption"
|
2024-02-16 17:04:42 +01:00
|
|
|
"github.com/zitadel/zitadel/cmd/hooks"
|
2022-10-06 14:23:59 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/actions"
|
2022-04-27 01:01:45 +02:00
|
|
|
admin_es "github.com/zitadel/zitadel/internal/admin/repository/eventsourcing"
|
|
|
|
internal_authz "github.com/zitadel/zitadel/internal/api/authz"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/http/middleware"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/oidc"
|
2022-12-09 13:04:33 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/api/saml"
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/api/ui/console"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/ui/login"
|
|
|
|
auth_es "github.com/zitadel/zitadel/internal/auth/repository/eventsourcing"
|
2022-04-28 14:44:13 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/command"
|
|
|
|
"github.com/zitadel/zitadel/internal/config/hook"
|
2022-06-24 14:38:22 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/config/network"
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/config/systemdefaults"
|
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
2023-10-25 17:10:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
2022-12-15 10:40:13 +01:00
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
2022-09-07 10:35:12 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/id"
|
2023-02-15 02:52:11 +01:00
|
|
|
"github.com/zitadel/zitadel/internal/logstore"
|
2023-07-06 08:38:13 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/notification/handlers"
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/query/projection"
|
|
|
|
static_config "github.com/zitadel/zitadel/internal/static/config"
|
2022-07-18 10:42:32 +02:00
|
|
|
metrics "github.com/zitadel/zitadel/internal/telemetry/metrics/config"
|
2022-04-28 14:44:13 +02:00
|
|
|
tracing "github.com/zitadel/zitadel/internal/telemetry/tracing/config"
|
2022-03-28 10:05:09 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
2022-05-02 11:18:17 +02:00
|
|
|
Log *logging.Config
|
|
|
|
Port uint16
|
|
|
|
ExternalPort uint16
|
|
|
|
ExternalDomain string
|
|
|
|
ExternalSecure bool
|
2022-06-24 14:38:22 +02:00
|
|
|
TLS network.TLS
|
2022-05-02 11:18:17 +02:00
|
|
|
HTTP2HostHeader string
|
|
|
|
HTTP1HostHeader string
|
|
|
|
WebAuthNName string
|
|
|
|
Database database.Config
|
|
|
|
Tracing tracing.Config
|
2022-07-18 10:42:32 +02:00
|
|
|
Metrics metrics.Config
|
2022-05-02 11:18:17 +02:00
|
|
|
Projections projection.Config
|
|
|
|
Auth auth_es.Config
|
|
|
|
Admin admin_es.Config
|
|
|
|
UserAgentCookie *middleware.UserAgentCookieConfig
|
|
|
|
OIDC oidc.Config
|
2022-09-12 17:18:08 +01:00
|
|
|
SAML saml.Config
|
2022-05-02 11:18:17 +02:00
|
|
|
Login login.Config
|
|
|
|
Console console.Config
|
|
|
|
AssetStorage static_config.AssetStorageConfig
|
|
|
|
InternalAuthZ internal_authz.Config
|
|
|
|
SystemDefaults systemdefaults.SystemDefaults
|
2024-01-25 17:28:20 +01:00
|
|
|
EncryptionKeys *encryption.EncryptionKeyConfig
|
2022-05-02 11:18:17 +02:00
|
|
|
DefaultInstance command.InstanceSetup
|
|
|
|
AuditLogRetention time.Duration
|
2024-02-16 17:04:42 +01:00
|
|
|
SystemAPIUsers map[string]*internal_authz.SystemAPIUser
|
2022-06-24 13:18:54 +02:00
|
|
|
CustomerPortal string
|
2022-09-07 10:35:12 +02:00
|
|
|
Machine *id.Config
|
2022-10-06 14:23:59 +02:00
|
|
|
Actions *actions.Config
|
2022-12-15 10:40:13 +01:00
|
|
|
Eventstore *eventstore.Config
|
2023-02-15 02:52:11 +01:00
|
|
|
LogStore *logstore.Configs
|
|
|
|
Quotas *QuotasConfig
|
2023-07-06 08:38:13 +02:00
|
|
|
Telemetry *handlers.TelemetryPusherConfig
|
2023-02-15 02:52:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type QuotasConfig struct {
|
2023-09-15 16:58:45 +02:00
|
|
|
Access struct {
|
|
|
|
logstore.EmitterConfig `mapstructure:",squash"`
|
|
|
|
middleware.AccessConfig `mapstructure:",squash"`
|
|
|
|
}
|
|
|
|
Execution *logstore.EmitterConfig
|
2022-03-28 10:05:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func MustNewConfig(v *viper.Viper) *Config {
|
|
|
|
config := new(Config)
|
|
|
|
|
2022-04-21 12:37:39 +02:00
|
|
|
err := v.Unmarshal(config,
|
|
|
|
viper.DecodeHook(mapstructure.ComposeDecodeHookFunc(
|
2024-02-16 17:04:42 +01:00
|
|
|
hooks.SliceTypeStringDecode[*domain.CustomMessageText],
|
|
|
|
hooks.SliceTypeStringDecode[internal_authz.RoleMapping],
|
|
|
|
hooks.MapTypeStringDecode[string, *internal_authz.SystemAPIUser],
|
|
|
|
hooks.MapHTTPHeaderStringDecode,
|
2024-05-01 12:17:27 +02:00
|
|
|
database.DecodeHook,
|
|
|
|
actions.HTTPConfigDecodeHook,
|
|
|
|
hook.EnumHookFunc(internal_authz.MemberTypeString),
|
|
|
|
hooks.MapTypeStringDecode[domain.Feature, any],
|
|
|
|
hooks.SliceTypeStringDecode[*command.SetQuota],
|
2022-04-21 12:37:39 +02:00
|
|
|
hook.Base64ToBytesHookFunc(),
|
|
|
|
hook.TagToLanguageHookFunc(),
|
|
|
|
mapstructure.StringToTimeDurationHookFunc(),
|
2022-12-09 13:04:33 +00:00
|
|
|
mapstructure.StringToTimeHookFunc(time.RFC3339),
|
2022-04-21 12:37:39 +02:00
|
|
|
mapstructure.StringToSliceHookFunc(","),
|
|
|
|
)),
|
|
|
|
)
|
2022-07-18 10:42:32 +02:00
|
|
|
logging.OnError(err).Fatal("unable to read config")
|
|
|
|
|
2022-03-28 10:05:09 +02:00
|
|
|
err = config.Log.SetLogger()
|
|
|
|
logging.OnError(err).Fatal("unable to set logger")
|
|
|
|
|
2022-04-28 14:44:13 +02:00
|
|
|
err = config.Tracing.NewTracer()
|
|
|
|
logging.OnError(err).Fatal("unable to set tracer")
|
|
|
|
|
2022-07-18 10:42:32 +02:00
|
|
|
err = config.Metrics.NewMeter()
|
|
|
|
logging.OnError(err).Fatal("unable to set meter")
|
|
|
|
|
2022-09-07 10:35:12 +02:00
|
|
|
id.Configure(config.Machine)
|
2022-10-06 14:23:59 +02:00
|
|
|
actions.SetHTTPConfig(&config.Actions.HTTP)
|
2022-09-07 10:35:12 +02:00
|
|
|
|
2022-03-28 10:05:09 +02:00
|
|
|
return config
|
|
|
|
}
|