2022-03-28 08:05:09 +00:00
|
|
|
package start
|
|
|
|
|
|
|
|
import (
|
2022-05-02 09:18:17 +00:00
|
|
|
"time"
|
|
|
|
|
2022-04-21 10:37:39 +00:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2022-03-29 09:53:19 +00:00
|
|
|
"github.com/spf13/viper"
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/logging"
|
2022-09-12 16:18:08 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/api/saml"
|
2022-03-29 09:53:19 +00:00
|
|
|
|
2022-04-26 23:01:45 +00: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"
|
|
|
|
"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 12:44:13 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/command"
|
|
|
|
"github.com/zitadel/zitadel/internal/config/hook"
|
2022-06-24 12:38:22 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/config/network"
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/config/systemdefaults"
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
2022-09-07 08:35:12 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/id"
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/query/projection"
|
|
|
|
static_config "github.com/zitadel/zitadel/internal/static/config"
|
2022-07-18 08:42:32 +00:00
|
|
|
metrics "github.com/zitadel/zitadel/internal/telemetry/metrics/config"
|
2022-04-28 12:44:13 +00:00
|
|
|
tracing "github.com/zitadel/zitadel/internal/telemetry/tracing/config"
|
2022-03-28 08:05:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
2022-05-02 09:18:17 +00:00
|
|
|
Log *logging.Config
|
|
|
|
Port uint16
|
|
|
|
ExternalPort uint16
|
|
|
|
ExternalDomain string
|
|
|
|
ExternalSecure bool
|
2022-06-24 12:38:22 +00:00
|
|
|
TLS network.TLS
|
2022-05-02 09:18:17 +00:00
|
|
|
HTTP2HostHeader string
|
|
|
|
HTTP1HostHeader string
|
|
|
|
WebAuthNName string
|
|
|
|
Database database.Config
|
|
|
|
Tracing tracing.Config
|
2022-07-18 08:42:32 +00:00
|
|
|
Metrics metrics.Config
|
2022-05-02 09:18:17 +00:00
|
|
|
Projections projection.Config
|
|
|
|
Auth auth_es.Config
|
|
|
|
Admin admin_es.Config
|
|
|
|
UserAgentCookie *middleware.UserAgentCookieConfig
|
|
|
|
OIDC oidc.Config
|
2022-09-12 16:18:08 +00:00
|
|
|
SAML saml.Config
|
2022-05-02 09:18:17 +00:00
|
|
|
Login login.Config
|
|
|
|
Console console.Config
|
|
|
|
AssetStorage static_config.AssetStorageConfig
|
|
|
|
InternalAuthZ internal_authz.Config
|
|
|
|
SystemDefaults systemdefaults.SystemDefaults
|
|
|
|
EncryptionKeys *encryptionKeyConfig
|
|
|
|
DefaultInstance command.InstanceSetup
|
|
|
|
AuditLogRetention time.Duration
|
2022-05-30 11:38:30 +00:00
|
|
|
SystemAPIUsers map[string]*internal_authz.SystemAPIUser
|
2022-06-24 11:18:54 +00:00
|
|
|
CustomerPortal string
|
2022-09-07 08:35:12 +00:00
|
|
|
Machine *id.Config
|
2022-03-28 08:05:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func MustNewConfig(v *viper.Viper) *Config {
|
|
|
|
config := new(Config)
|
|
|
|
|
2022-04-21 10:37:39 +00:00
|
|
|
err := v.Unmarshal(config,
|
|
|
|
viper.DecodeHook(mapstructure.ComposeDecodeHookFunc(
|
|
|
|
hook.Base64ToBytesHookFunc(),
|
|
|
|
hook.TagToLanguageHookFunc(),
|
|
|
|
mapstructure.StringToTimeDurationHookFunc(),
|
|
|
|
mapstructure.StringToSliceHookFunc(","),
|
2022-07-28 14:25:42 +00:00
|
|
|
database.DecodeHook,
|
2022-04-21 10:37:39 +00:00
|
|
|
)),
|
|
|
|
)
|
2022-07-18 08:42:32 +00:00
|
|
|
logging.OnError(err).Fatal("unable to read config")
|
|
|
|
|
2022-03-28 08:05:09 +00:00
|
|
|
err = config.Log.SetLogger()
|
|
|
|
logging.OnError(err).Fatal("unable to set logger")
|
|
|
|
|
2022-04-28 12:44:13 +00:00
|
|
|
err = config.Tracing.NewTracer()
|
|
|
|
logging.OnError(err).Fatal("unable to set tracer")
|
|
|
|
|
2022-07-18 08:42:32 +00:00
|
|
|
err = config.Metrics.NewMeter()
|
|
|
|
logging.OnError(err).Fatal("unable to set meter")
|
|
|
|
|
2022-09-07 08:35:12 +00:00
|
|
|
id.Configure(config.Machine)
|
|
|
|
|
2022-03-28 08:05:09 +00:00
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
|
|
|
type encryptionKeyConfig struct {
|
|
|
|
DomainVerification *crypto.KeyConfig
|
|
|
|
IDPConfig *crypto.KeyConfig
|
|
|
|
OIDC *crypto.KeyConfig
|
2022-09-12 16:18:08 +00:00
|
|
|
SAML *crypto.KeyConfig
|
2022-03-28 08:05:09 +00:00
|
|
|
OTP *crypto.KeyConfig
|
|
|
|
SMS *crypto.KeyConfig
|
|
|
|
SMTP *crypto.KeyConfig
|
|
|
|
User *crypto.KeyConfig
|
|
|
|
CSRFCookieKeyID string
|
|
|
|
UserAgentCookieKeyID string
|
|
|
|
}
|