mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 19:19:19 +00:00
bc951985ed
* feat: lock users if lockout policy is set * feat: setup * feat: lock user on password failes * feat: render error * feat: lock user on command side * feat: auth_req tests * feat: lockout policy docs * feat: remove show lockout failures from proto * fix: console lockout * feat: tests * fix: tests * unlock function * add unlock button * fix migration version * lockout policy * lint * Update internal/auth/repository/eventsourcing/eventstore/auth_request.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * fix: err message * Update internal/command/setup_step4.go Co-authored-by: Silvan <silvan.reusser@gmail.com> Co-authored-by: Max Peintner <max@caos.ch> Co-authored-by: Livio Amstutz <livio.a@gmail.com> Co-authored-by: Silvan <silvan.reusser@gmail.com>
32 lines
753 B
Go
32 lines
753 B
Go
package query
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
"github.com/caos/zitadel/internal/repository/policy"
|
|
)
|
|
|
|
type LockoutPolicyReadModel struct {
|
|
eventstore.ReadModel
|
|
|
|
MaxAttempts uint64
|
|
ShowLockOutFailures bool
|
|
}
|
|
|
|
func (rm *LockoutPolicyReadModel) Reduce() error {
|
|
for _, event := range rm.Events {
|
|
switch e := event.(type) {
|
|
case *policy.LockoutPolicyAddedEvent:
|
|
rm.MaxAttempts = e.MaxPasswordAttempts
|
|
rm.ShowLockOutFailures = e.ShowLockOutFailures
|
|
case *policy.LockoutPolicyChangedEvent:
|
|
if e.MaxPasswordAttempts != nil {
|
|
rm.MaxAttempts = *e.MaxPasswordAttempts
|
|
}
|
|
if e.ShowLockOutFailures != nil {
|
|
rm.ShowLockOutFailures = *e.ShowLockOutFailures
|
|
}
|
|
}
|
|
}
|
|
return rm.ReadModel.Reduce()
|
|
}
|