2021-01-06 09:47:55 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2021-01-12 11:59:51 +00:00
|
|
|
"github.com/caos/logging"
|
|
|
|
|
2021-01-06 09:47:55 +00:00
|
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
|
|
iam_repo "github.com/caos/zitadel/internal/v2/repository/iam"
|
|
|
|
)
|
|
|
|
|
|
|
|
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) (*iam_repo.Aggregate, error) {
|
|
|
|
iamAgg := IAMAggregateFromWriteModel(&iam.WriteModel)
|
2021-01-12 11:59:51 +00:00
|
|
|
err := r.addDefaultPasswordLockoutPolicy(ctx, iamAgg, NewIAMPasswordLockoutPolicyWriteModel(), &domain.PasswordLockoutPolicy{
|
2021-01-06 09:47:55 +00:00
|
|
|
MaxAttempts: step.DefaultPasswordLockoutPolicy.MaxAttempts,
|
|
|
|
ShowLockOutFailures: step.DefaultPasswordLockoutPolicy.ShowLockOutFailures,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-12 11:59:51 +00:00
|
|
|
logging.Log("SETUP-Bfnge").Info("default password lockout policy set up")
|
2021-01-06 09:47:55 +00:00
|
|
|
return iamAgg, nil
|
|
|
|
}
|
|
|
|
return r.setup(ctx, step, fn)
|
|
|
|
}
|