mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
800eeca7ba
* fix: setup uniqueness * fix: setup step done
105 lines
3.2 KiB
Go
105 lines
3.2 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/api/authz"
|
|
"github.com/caos/zitadel/internal/domain"
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
|
iam_repo "github.com/caos/zitadel/internal/repository/iam"
|
|
)
|
|
|
|
type Step interface {
|
|
Step() domain.Step
|
|
execute(context.Context, *Commands) error
|
|
}
|
|
|
|
const (
|
|
SetupUser = "SETUP"
|
|
)
|
|
|
|
func (c *Commands) ExecuteSetupSteps(ctx context.Context, steps []Step) error {
|
|
iam, err := c.GetIAM(ctx)
|
|
if err != nil && !caos_errs.IsNotFound(err) {
|
|
return err
|
|
}
|
|
if iam != nil && (iam.SetUpDone == domain.StepCount-1 || iam.SetUpStarted != iam.SetUpDone) {
|
|
logging.Log("COMMA-dgd2z").Info("all steps done")
|
|
return nil
|
|
}
|
|
|
|
if iam == nil {
|
|
iam = &domain.IAM{ObjectRoot: models.ObjectRoot{}}
|
|
}
|
|
|
|
ctx = setSetUpContextData(ctx)
|
|
|
|
for _, step := range steps {
|
|
iam, err = c.StartSetup(ctx, step.Step())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = step.execute(ctx, c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func setSetUpContextData(ctx context.Context) context.Context {
|
|
return authz.SetCtxData(ctx, authz.CtxData{UserID: SetupUser})
|
|
}
|
|
|
|
func (c *Commands) StartSetup(ctx context.Context, step domain.Step) (*domain.IAM, error) {
|
|
logging.Log("COMMA-3M9fs").Infof("start setup step %v", step)
|
|
iamWriteModel, err := c.getIAMWriteModel(ctx)
|
|
if err != nil && !caos_errs.IsNotFound(err) {
|
|
return nil, err
|
|
}
|
|
if iamWriteModel.SetUpStarted >= step || iamWriteModel.SetUpStarted != iamWriteModel.SetUpDone {
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-9so34", "setup error")
|
|
}
|
|
aggregate := IAMAggregateFromWriteModel(&iamWriteModel.WriteModel)
|
|
pushedEvents, err := c.eventstore.PushEvents(ctx, iam_repo.NewSetupStepStartedEvent(ctx, aggregate, step))
|
|
if err != nil {
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-Grgh1", "Setup start failed")
|
|
}
|
|
err = AppendAndReduce(iamWriteModel, pushedEvents...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
logging.LogWithFields("SETUP-fhh21", "step", step).Info("setup step started")
|
|
return writeModelToIAM(iamWriteModel), nil
|
|
}
|
|
|
|
func (c *Commands) setup(ctx context.Context, step Step, iamAggregateProvider func(*IAMWriteModel) ([]eventstore.EventPusher, error)) error {
|
|
iam, err := c.getIAMWriteModel(ctx)
|
|
if err != nil && !caos_errs.IsNotFound(err) {
|
|
return err
|
|
}
|
|
if iam.SetUpStarted != step.Step() && iam.SetUpDone+1 != step.Step() {
|
|
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-Dge32", "wrong step")
|
|
}
|
|
events, err := iamAggregateProvider(iam)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
iamAgg := IAMAggregateFromWriteModel(&iam.WriteModel)
|
|
events = append(events, iam_repo.NewSetupStepDoneEvent(ctx, iamAgg, step.Step()))
|
|
|
|
_, err = c.eventstore.PushEvents(ctx, events...)
|
|
if caos_errs.IsErrorAlreadyExists(err) {
|
|
logging.LogWithFields("SETUP-4M9gsf", "step", step.Step()).WithError(err).Info("setup step already done")
|
|
}
|
|
if err != nil {
|
|
return caos_errs.ThrowPreconditionFailedf(nil, "EVENT-dbG31", "Setup %v failed", step.Step())
|
|
}
|
|
logging.LogWithFields("SETUP-Sg1t1", "step", step.Step()).Info("setup step done")
|
|
return nil
|
|
}
|