mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-07 05:36:46 +00:00

* tests * chore: set vars for platform in dockerfile * simplyfy generate * correct dockerfile * add openapi to gitignore * object files * protos * update protoc version * admin only secuity missing * texts * start secutiry * add handler * add description * add descriptions and remove adddress * default limit * add mapping for openapi * generate statik for openapi * remove address converter * executable * operator test Co-authored-by: Livio Amstutz <livio.a@gmail.com>
205 lines
7.5 KiB
Go
205 lines
7.5 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
|
|
"github.com/caos/zitadel/internal/command"
|
|
"github.com/caos/zitadel/internal/config/types"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
"github.com/caos/zitadel/internal/query"
|
|
metrics "github.com/caos/zitadel/internal/telemetry/metrics/config"
|
|
"github.com/caos/zitadel/openapi"
|
|
|
|
"github.com/caos/logging"
|
|
|
|
admin_es "github.com/caos/zitadel/internal/admin/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/api"
|
|
internal_authz "github.com/caos/zitadel/internal/api/authz"
|
|
"github.com/caos/zitadel/internal/api/grpc/admin"
|
|
"github.com/caos/zitadel/internal/api/grpc/auth"
|
|
"github.com/caos/zitadel/internal/api/grpc/management"
|
|
"github.com/caos/zitadel/internal/api/oidc"
|
|
auth_es "github.com/caos/zitadel/internal/auth/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/authz"
|
|
authz_repo "github.com/caos/zitadel/internal/authz/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/config"
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
mgmt_es "github.com/caos/zitadel/internal/management/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/notification"
|
|
"github.com/caos/zitadel/internal/setup"
|
|
tracing "github.com/caos/zitadel/internal/telemetry/tracing/config"
|
|
"github.com/caos/zitadel/internal/ui"
|
|
"github.com/caos/zitadel/internal/ui/console"
|
|
"github.com/caos/zitadel/internal/ui/login"
|
|
)
|
|
|
|
type Config struct {
|
|
Log logging.Config
|
|
Tracing tracing.TracingConfig
|
|
Metrics metrics.MetricsConfig
|
|
InternalAuthZ internal_authz.Config
|
|
SystemDefaults sd.SystemDefaults
|
|
|
|
EventstoreBase types.SQLBase
|
|
Commands command.Config
|
|
Queries query.Config
|
|
|
|
AuthZ authz.Config
|
|
Auth auth_es.Config
|
|
Admin admin_es.Config
|
|
Mgmt mgmt_es.Config
|
|
|
|
API api.Config
|
|
UI ui.Config
|
|
|
|
Notification notification.Config
|
|
}
|
|
|
|
type setupConfig struct {
|
|
Log logging.Config
|
|
|
|
Eventstore types.SQL
|
|
SystemDefaults sd.SystemDefaults
|
|
SetUp setup.IAMSetUp
|
|
InternalAuthZ internal_authz.Config
|
|
}
|
|
|
|
var (
|
|
configPaths = config.NewArrayFlags("authz.yaml", "startup.yaml", "system-defaults.yaml")
|
|
setupPaths = config.NewArrayFlags("authz.yaml", "system-defaults.yaml", "setup.yaml")
|
|
adminEnabled = flag.Bool("admin", true, "enable admin api")
|
|
managementEnabled = flag.Bool("management", true, "enable management api")
|
|
authEnabled = flag.Bool("auth", true, "enable auth api")
|
|
oidcEnabled = flag.Bool("oidc", true, "enable oidc api")
|
|
loginEnabled = flag.Bool("login", true, "enable login ui")
|
|
consoleEnabled = flag.Bool("console", true, "enable console ui")
|
|
notificationEnabled = flag.Bool("notification", true, "enable notification handler")
|
|
localDevMode = flag.Bool("localDevMode", false, "enable local development specific configs")
|
|
)
|
|
|
|
const (
|
|
cmdStart = "start"
|
|
cmdSetup = "setup"
|
|
)
|
|
|
|
func main() {
|
|
flag.Var(configPaths, "config-files", "paths to the config files")
|
|
flag.Var(configPaths, "setup-files", "paths to the setup files")
|
|
flag.Parse()
|
|
arg := flag.Arg(0)
|
|
switch arg {
|
|
case cmdStart:
|
|
startZitadel(configPaths.Values())
|
|
case cmdSetup:
|
|
startSetup(setupPaths.Values(), *localDevMode)
|
|
default:
|
|
logging.Log("MAIN-afEQ2").Fatal("please provide an valid argument [start, setup]")
|
|
}
|
|
}
|
|
|
|
func startZitadel(configPaths []string) {
|
|
conf := new(Config)
|
|
err := config.Read(conf, configPaths...)
|
|
logging.Log("MAIN-FaF2r").OnError(err).Fatal("cannot read config")
|
|
|
|
ctx := context.Background()
|
|
esQueries, err := eventstore.StartWithUser(conf.EventstoreBase, conf.Queries.Eventstore)
|
|
if err != nil {
|
|
logging.Log("MAIN-Ddv21").OnError(err).Fatal("cannot start eventstore for queries")
|
|
}
|
|
queries, err := query.StartQueries(esQueries, conf.SystemDefaults)
|
|
if err != nil {
|
|
logging.Log("MAIN-Ddv21").OnError(err).Fatal("cannot start queries")
|
|
}
|
|
authZRepo, err := authz.Start(ctx, conf.AuthZ, conf.InternalAuthZ, conf.SystemDefaults, queries)
|
|
logging.Log("MAIN-s9KOw").OnError(err).Fatal("error starting authz repo")
|
|
esCommands, err := eventstore.StartWithUser(conf.EventstoreBase, conf.Commands.Eventstore)
|
|
if err != nil {
|
|
logging.Log("MAIN-Ddv21").OnError(err).Fatal("cannot start eventstore for commands")
|
|
}
|
|
commands, err := command.StartCommands(esCommands, conf.SystemDefaults, conf.InternalAuthZ, authZRepo)
|
|
if err != nil {
|
|
logging.Log("MAIN-Ddv21").OnError(err).Fatal("cannot start commands")
|
|
}
|
|
var authRepo *auth_es.EsRepository
|
|
if *authEnabled || *oidcEnabled || *loginEnabled {
|
|
authRepo, err = auth_es.Start(conf.Auth, conf.InternalAuthZ, conf.SystemDefaults, commands, queries, authZRepo, esQueries)
|
|
logging.Log("MAIN-9oRw6").OnError(err).Fatal("error starting auth repo")
|
|
}
|
|
|
|
startAPI(ctx, conf, authZRepo, authRepo, commands, queries)
|
|
startUI(ctx, conf, authRepo, commands, queries)
|
|
|
|
if *notificationEnabled {
|
|
notification.Start(ctx, conf.Notification, conf.SystemDefaults, commands)
|
|
}
|
|
|
|
<-ctx.Done()
|
|
logging.Log("MAIN-s8d2h").Info("stopping zitadel")
|
|
}
|
|
|
|
func startUI(ctx context.Context, conf *Config, authRepo *auth_es.EsRepository, command *command.Commands, query *query.Queries) {
|
|
uis := ui.Create(conf.UI)
|
|
if *loginEnabled {
|
|
login, prefix := login.Start(conf.UI.Login, command, query, authRepo, conf.SystemDefaults, *localDevMode)
|
|
uis.RegisterHandler(prefix, login.Handler())
|
|
}
|
|
if *consoleEnabled {
|
|
consoleHandler, prefix, err := console.Start(conf.UI.Console)
|
|
logging.Log("API-AGD1f").OnError(err).Fatal("error starting console")
|
|
uis.RegisterHandler(prefix, consoleHandler)
|
|
}
|
|
uis.Start(ctx)
|
|
}
|
|
|
|
func startAPI(ctx context.Context, conf *Config, authZRepo *authz_repo.EsRepository, authRepo *auth_es.EsRepository, command *command.Commands, query *query.Queries) {
|
|
roles := make([]string, len(conf.InternalAuthZ.RolePermissionMappings))
|
|
for i, role := range conf.InternalAuthZ.RolePermissionMappings {
|
|
roles[i] = role.Role
|
|
}
|
|
repo, err := admin_es.Start(ctx, conf.Admin, conf.SystemDefaults, roles)
|
|
logging.Log("API-D42tq").OnError(err).Fatal("error starting auth repo")
|
|
|
|
apis := api.Create(conf.API, conf.InternalAuthZ, authZRepo, authRepo, repo, conf.SystemDefaults)
|
|
|
|
if *adminEnabled {
|
|
apis.RegisterServer(ctx, admin.CreateServer(command, query, repo))
|
|
}
|
|
if *managementEnabled {
|
|
managementRepo, err := mgmt_es.Start(conf.Mgmt, conf.SystemDefaults, roles, query)
|
|
logging.Log("API-Gd2qq").OnError(err).Fatal("error starting management repo")
|
|
apis.RegisterServer(ctx, management.CreateServer(command, query, managementRepo, conf.SystemDefaults))
|
|
}
|
|
if *authEnabled {
|
|
apis.RegisterServer(ctx, auth.CreateServer(command, query, authRepo))
|
|
}
|
|
if *oidcEnabled {
|
|
op := oidc.NewProvider(ctx, conf.API.OIDC, command, query, authRepo, conf.SystemDefaults.KeyConfig.EncryptionConfig, *localDevMode)
|
|
apis.RegisterHandler("/oauth/v2", op.HttpHandler())
|
|
}
|
|
|
|
openAPIHandler, err := openapi.Start()
|
|
logging.Log("ZITAD-8pRk1").OnError(err).Fatal("Unable to start openapi handler")
|
|
apis.RegisterHandler("/openapi/v2/swagger", openAPIHandler)
|
|
|
|
apis.Start(ctx)
|
|
}
|
|
|
|
func startSetup(configPaths []string, localDevMode bool) {
|
|
conf := new(setupConfig)
|
|
err := config.Read(conf, configPaths...)
|
|
logging.Log("MAIN-FaF2r").OnError(err).Fatal("cannot read config")
|
|
|
|
ctx := context.Background()
|
|
|
|
es, err := eventstore.Start(conf.Eventstore)
|
|
logging.Log("MAIN-Ddt3").OnError(err).Fatal("cannot start eventstore")
|
|
|
|
commands, err := command.StartCommands(es, conf.SystemDefaults, conf.InternalAuthZ, nil)
|
|
logging.Log("MAIN-dsjrr").OnError(err).Fatal("cannot start command side")
|
|
|
|
err = setup.Execute(ctx, conf.SetUp, conf.SystemDefaults.IamID, commands)
|
|
logging.Log("MAIN-djs3R").OnError(err).Panic("failed to execute setup steps")
|
|
}
|