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"
|
2022-04-13 05:42:48 +00:00
|
|
|
"strings"
|
2022-02-09 14:01:19 +00:00
|
|
|
|
|
|
|
"github.com/caos/logging"
|
|
|
|
"github.com/spf13/cobra"
|
2022-03-23 08:02:39 +00:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
|
2022-04-12 14:20:17 +00:00
|
|
|
"github.com/caos/zitadel/cmd/admin/key"
|
2022-03-28 08:05:09 +00:00
|
|
|
http_util "github.com/caos/zitadel/internal/api/http"
|
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-04-12 14:20:17 +00:00
|
|
|
masterKey, err := key.MasterKey(cmd)
|
|
|
|
logging.OnError(err).Panic("No master key provided")
|
|
|
|
|
|
|
|
Setup(config, steps, masterKey)
|
2022-02-09 14:01:19 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 08:02:39 +00:00
|
|
|
|
2022-04-12 14:20:17 +00:00
|
|
|
func Setup(config *Config, steps *Steps, masterKey string) {
|
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)
|
|
|
|
|
2022-04-06 06:13:40 +00:00
|
|
|
steps.s1ProjectionTable = &ProjectionTable{dbClient: dbClient}
|
|
|
|
steps.s2AssetsTable = &AssetTable{dbClient: dbClient}
|
2022-04-13 05:42:48 +00:00
|
|
|
|
2022-04-21 10:37:39 +00:00
|
|
|
instanceSetup := config.DefaultInstance
|
|
|
|
instanceSetup.InstanceName = steps.S3DefaultInstance.InstanceSetup.InstanceName
|
|
|
|
instanceSetup.CustomDomain = steps.S3DefaultInstance.InstanceSetup.CustomDomain
|
|
|
|
instanceSetup.Org = steps.S3DefaultInstance.InstanceSetup.Org
|
|
|
|
steps.S3DefaultInstance.InstanceSetup = instanceSetup
|
|
|
|
|
2022-04-13 05:42:48 +00:00
|
|
|
steps.S3DefaultInstance.InstanceSetup.Org.Human.Email.Address = strings.TrimSpace(steps.S3DefaultInstance.InstanceSetup.Org.Human.Email.Address)
|
|
|
|
if steps.S3DefaultInstance.InstanceSetup.Org.Human.Email.Address == "" {
|
|
|
|
steps.S3DefaultInstance.InstanceSetup.Org.Human.Email.Address = "admin@" + config.ExternalDomain
|
|
|
|
}
|
|
|
|
|
2022-04-12 14:20:17 +00:00
|
|
|
steps.S3DefaultInstance.es = eventstoreClient
|
|
|
|
steps.S3DefaultInstance.db = dbClient
|
|
|
|
steps.S3DefaultInstance.defaults = config.SystemDefaults
|
|
|
|
steps.S3DefaultInstance.masterKey = masterKey
|
2022-04-19 06:26:12 +00:00
|
|
|
steps.S3DefaultInstance.domain = config.ExternalDomain
|
2022-04-12 14:20:17 +00:00
|
|
|
steps.S3DefaultInstance.zitadelRoles = config.InternalAuthZ.RolePermissionMappings
|
|
|
|
steps.S3DefaultInstance.userEncryptionKey = config.EncryptionKeys.User
|
2022-04-21 10:37:39 +00:00
|
|
|
steps.S3DefaultInstance.externalSecure = config.ExternalSecure
|
|
|
|
steps.S3DefaultInstance.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-21 10:37:39 +00:00
|
|
|
err = migration.Migrate(ctx, eventstoreClient, steps.s1ProjectionTable)
|
|
|
|
logging.OnError(err).Fatal("unable to migrate step 1")
|
|
|
|
err = migration.Migrate(ctx, eventstoreClient, steps.s2AssetsTable)
|
|
|
|
logging.OnError(err).Fatal("unable to migrate step 3")
|
|
|
|
err = migration.Migrate(ctx, eventstoreClient, steps.S3DefaultInstance)
|
|
|
|
logging.OnError(err).Fatal("unable to migrate step 4")
|
2022-03-23 08:02:39 +00:00
|
|
|
}
|