mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
65a8efeb0e
* fix: use pointer in events * fix: change user requests to command side * fix: org policy * fix: profile
32 lines
767 B
Go
32 lines
767 B
Go
package query
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
"github.com/caos/zitadel/internal/v2/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()
|
|
}
|