mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
d8e42744b4
* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
)
|
|
|
|
type Step4 struct {
|
|
DefaultPasswordLockoutPolicy iam_model.PasswordLockoutPolicy
|
|
}
|
|
|
|
func (s *Step4) Step() domain.Step {
|
|
return domain.Step4
|
|
}
|
|
|
|
func (s *Step4) execute(ctx context.Context, commandSide *CommandSide) error {
|
|
return commandSide.SetupStep4(ctx, s)
|
|
}
|
|
|
|
func (r *CommandSide) SetupStep4(ctx context.Context, step *Step4) error {
|
|
fn := func(iam *IAMWriteModel) ([]eventstore.EventPusher, error) {
|
|
iamAgg := IAMAggregateFromWriteModel(&iam.WriteModel)
|
|
event, err := r.addDefaultPasswordLockoutPolicy(ctx, iamAgg, NewIAMPasswordLockoutPolicyWriteModel(), &domain.PasswordLockoutPolicy{
|
|
MaxAttempts: step.DefaultPasswordLockoutPolicy.MaxAttempts,
|
|
ShowLockOutFailures: step.DefaultPasswordLockoutPolicy.ShowLockOutFailures,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
logging.Log("SETUP-Bfnge").Info("default password lockout policy set up")
|
|
return []eventstore.EventPusher{event}, nil
|
|
}
|
|
return r.setup(ctx, step, fn)
|
|
}
|