2021-01-04 13:52:13 +00:00
|
|
|
package query
|
2020-12-11 14:49:19 +00:00
|
|
|
|
2021-01-04 13:52:13 +00:00
|
|
|
import (
|
2021-02-23 14:13:04 +00:00
|
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/repository/policy"
|
2021-01-04 13:52:13 +00:00
|
|
|
)
|
2020-12-11 14:49:19 +00:00
|
|
|
|
2021-08-11 06:36:32 +00:00
|
|
|
type LockoutPolicyReadModel struct {
|
2020-12-11 14:49:19 +00:00
|
|
|
eventstore.ReadModel
|
|
|
|
|
|
|
|
MaxAttempts uint64
|
|
|
|
ShowLockOutFailures bool
|
|
|
|
}
|
|
|
|
|
2021-08-11 06:36:32 +00:00
|
|
|
func (rm *LockoutPolicyReadModel) Reduce() error {
|
2020-12-11 14:49:19 +00:00
|
|
|
for _, event := range rm.Events {
|
|
|
|
switch e := event.(type) {
|
2021-08-11 06:36:32 +00:00
|
|
|
case *policy.LockoutPolicyAddedEvent:
|
|
|
|
rm.MaxAttempts = e.MaxPasswordAttempts
|
2020-12-11 14:49:19 +00:00
|
|
|
rm.ShowLockOutFailures = e.ShowLockOutFailures
|
2021-08-11 06:36:32 +00:00
|
|
|
case *policy.LockoutPolicyChangedEvent:
|
|
|
|
if e.MaxPasswordAttempts != nil {
|
|
|
|
rm.MaxAttempts = *e.MaxPasswordAttempts
|
2021-01-06 10:12:56 +00:00
|
|
|
}
|
|
|
|
if e.ShowLockOutFailures != nil {
|
|
|
|
rm.ShowLockOutFailures = *e.ShowLockOutFailures
|
|
|
|
}
|
2020-12-11 14:49:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return rm.ReadModel.Reduce()
|
|
|
|
}
|