mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
d8e42744b4
* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
37 lines
979 B
Go
37 lines
979 B
Go
package command
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/domain"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
"github.com/caos/zitadel/internal/repository/policy"
|
|
)
|
|
|
|
type PasswordLockoutPolicyWriteModel struct {
|
|
eventstore.WriteModel
|
|
|
|
MaxAttempts uint64
|
|
ShowLockOutFailures bool
|
|
State domain.PolicyState
|
|
}
|
|
|
|
func (wm *PasswordLockoutPolicyWriteModel) Reduce() error {
|
|
for _, event := range wm.Events {
|
|
switch e := event.(type) {
|
|
case *policy.PasswordLockoutPolicyAddedEvent:
|
|
wm.MaxAttempts = e.MaxAttempts
|
|
wm.ShowLockOutFailures = e.ShowLockOutFailures
|
|
wm.State = domain.PolicyStateActive
|
|
case *policy.PasswordLockoutPolicyChangedEvent:
|
|
if e.MaxAttempts != nil {
|
|
wm.MaxAttempts = *e.MaxAttempts
|
|
}
|
|
if e.ShowLockOutFailures != nil {
|
|
wm.ShowLockOutFailures = *e.ShowLockOutFailures
|
|
}
|
|
case *policy.PasswordLockoutPolicyRemovedEvent:
|
|
wm.State = domain.PolicyStateRemoved
|
|
}
|
|
}
|
|
return wm.WriteModel.Reduce()
|
|
}
|