mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-05 22:52:46 +00:00
00fec8830a
* fix: push events instead of aggregates * fix: tests * try without aggregate methods and with aggregate methods * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: client secret * fix: query eventtypes * fix: query eventtypes * fix: eventstore index * fix: index * fix: merge new eventstore * fix: remove unnecessary todos * fix: remove unnecessary todos Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
|
|
"github.com/caos/logging"
|
|
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
)
|
|
|
|
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)
|
|
}
|