2022-02-09 14:01:19 +00:00
|
|
|
package setup
|
|
|
|
|
|
|
|
import (
|
2022-03-23 08:02:39 +00:00
|
|
|
"context"
|
2022-02-09 14:01:19 +00:00
|
|
|
_ "embed"
|
|
|
|
|
|
|
|
"github.com/caos/logging"
|
|
|
|
"github.com/spf13/cobra"
|
2022-03-23 08:02:39 +00:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
|
2022-03-28 08:05:09 +00:00
|
|
|
http_util "github.com/caos/zitadel/internal/api/http"
|
2022-04-06 06:13:40 +00:00
|
|
|
"github.com/caos/zitadel/internal/command/v2"
|
2022-03-23 08:02:39 +00:00
|
|
|
"github.com/caos/zitadel/internal/database"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/migration"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
//go:embed steps.yaml
|
|
|
|
defaultSteps []byte
|
2022-02-09 14:01:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func New() *cobra.Command {
|
|
|
|
return &cobra.Command{
|
|
|
|
Use: "setup",
|
|
|
|
Short: "setup ZITADEL instance",
|
|
|
|
Long: `sets up data to start ZITADEL.
|
|
|
|
Requirements:
|
|
|
|
- cockroachdb`,
|
2022-03-23 08:02:39 +00:00
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2022-03-28 08:05:09 +00:00
|
|
|
config := MustNewConfig(viper.GetViper())
|
|
|
|
steps := MustNewSteps(viper.New())
|
2022-03-23 08:02:39 +00:00
|
|
|
|
2022-03-28 08:05:09 +00:00
|
|
|
Setup(config, steps)
|
2022-02-09 14:01:19 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 08:02:39 +00:00
|
|
|
|
2022-03-28 08:05:09 +00:00
|
|
|
func Setup(config *Config, steps *Steps) {
|
2022-03-23 08:02:39 +00:00
|
|
|
dbClient, err := database.Connect(config.Database)
|
|
|
|
logging.OnError(err).Fatal("unable to connect to database")
|
|
|
|
|
|
|
|
eventstoreClient, err := eventstore.Start(dbClient)
|
|
|
|
logging.OnError(err).Fatal("unable to start eventstore")
|
2022-03-28 08:05:09 +00:00
|
|
|
migration.RegisterMappers(eventstoreClient)
|
|
|
|
|
|
|
|
cmd := command.New(eventstoreClient, "localhost", config.SystemDefaults)
|
2022-03-23 08:02:39 +00:00
|
|
|
|
2022-04-06 06:13:40 +00:00
|
|
|
steps.s1ProjectionTable = &ProjectionTable{dbClient: dbClient}
|
|
|
|
steps.s2AssetsTable = &AssetTable{dbClient: dbClient}
|
|
|
|
steps.S3DefaultInstance.cmd = cmd
|
|
|
|
steps.S3DefaultInstance.InstanceSetup.Zitadel.IsDevMode = !config.ExternalSecure
|
|
|
|
steps.S3DefaultInstance.InstanceSetup.Zitadel.BaseURL = http_util.BuildHTTP(config.ExternalDomain, config.ExternalPort, config.ExternalSecure)
|
2022-03-23 08:02:39 +00:00
|
|
|
|
2022-03-28 08:05:09 +00:00
|
|
|
ctx := context.Background()
|
2022-04-06 06:13:40 +00:00
|
|
|
migration.Migrate(ctx, eventstoreClient, steps.s1ProjectionTable)
|
|
|
|
migration.Migrate(ctx, eventstoreClient, steps.s2AssetsTable)
|
|
|
|
migration.Migrate(ctx, eventstoreClient, steps.S3DefaultInstance)
|
2022-03-23 08:02:39 +00:00
|
|
|
}
|