mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
3eb909c4b4
* add setup steps * refactoring * omitempty * cleanup * begin org * create org * setup org * setup org * merge * fixes * fixes * fixes * add project * add oidc application * fix app creation * add resourceOwner to writemodels * resource owner * cleanup * global org, iam project and iam member in setup * logs * logs * logs * cleanup * Update internal/v2/command/project.go Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> * check project state * add org domain commands * add org status changes and member commands * fixes * policies * login policy * fix iam project event * mapper * label policy * change to command * fix * fix * handle change event differently and lot of fixes * fixes * changedEvent handling Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
40 lines
993 B
Go
40 lines
993 B
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/logging"
|
|
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
iam_repo "github.com/caos/zitadel/internal/v2/repository/iam"
|
|
)
|
|
|
|
type Step7 struct {
|
|
OTP bool
|
|
}
|
|
|
|
func (s *Step7) Step() domain.Step {
|
|
return domain.Step7
|
|
}
|
|
|
|
func (s *Step7) execute(ctx context.Context, commandSide *CommandSide) error {
|
|
return commandSide.SetupStep7(ctx, s)
|
|
}
|
|
|
|
func (r *CommandSide) SetupStep7(ctx context.Context, step *Step7) error {
|
|
fn := func(iam *IAMWriteModel) (*iam_repo.Aggregate, error) {
|
|
secondFactorModel := NewIAMSecondFactorWriteModel()
|
|
iamAgg := IAMAggregateFromWriteModel(&secondFactorModel.SecondFactorWriteModel.WriteModel)
|
|
if !step.OTP {
|
|
return iamAgg, nil
|
|
}
|
|
err := r.addSecondFactorToDefaultLoginPolicy(ctx, iamAgg, secondFactorModel, domain.SecondFactorTypeOTP)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
logging.Log("SETUP-Dggsg").Info("added OTP to 2FA login policy")
|
|
return iamAgg, nil
|
|
}
|
|
return r.setup(ctx, step, fn)
|
|
}
|