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
32 lines
761 B
Go
32 lines
761 B
Go
package query
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
"github.com/caos/zitadel/internal/repository/policy"
|
|
)
|
|
|
|
type PasswordLockoutPolicyReadModel struct {
|
|
eventstore.ReadModel
|
|
|
|
MaxAttempts uint64
|
|
ShowLockOutFailures bool
|
|
}
|
|
|
|
func (rm *PasswordLockoutPolicyReadModel) Reduce() error {
|
|
for _, event := range rm.Events {
|
|
switch e := event.(type) {
|
|
case *policy.PasswordLockoutPolicyAddedEvent:
|
|
rm.MaxAttempts = e.MaxAttempts
|
|
rm.ShowLockOutFailures = e.ShowLockOutFailures
|
|
case *policy.PasswordLockoutPolicyChangedEvent:
|
|
if e.MaxAttempts != nil {
|
|
rm.MaxAttempts = *e.MaxAttempts
|
|
}
|
|
if e.ShowLockOutFailures != nil {
|
|
rm.ShowLockOutFailures = *e.ShowLockOutFailures
|
|
}
|
|
}
|
|
}
|
|
return rm.ReadModel.Reduce()
|
|
}
|