mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
37 lines
988 B
Go
37 lines
988 B
Go
package command
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
"github.com/zitadel/zitadel/internal/repository/policy"
|
|
)
|
|
|
|
type LockoutPolicyWriteModel struct {
|
|
eventstore.WriteModel
|
|
|
|
MaxPasswordAttempts uint64
|
|
ShowLockOutFailures bool
|
|
State domain.PolicyState
|
|
}
|
|
|
|
func (wm *LockoutPolicyWriteModel) Reduce() error {
|
|
for _, event := range wm.Events {
|
|
switch e := event.(type) {
|
|
case *policy.LockoutPolicyAddedEvent:
|
|
wm.MaxPasswordAttempts = e.MaxPasswordAttempts
|
|
wm.ShowLockOutFailures = e.ShowLockOutFailures
|
|
wm.State = domain.PolicyStateActive
|
|
case *policy.LockoutPolicyChangedEvent:
|
|
if e.MaxPasswordAttempts != nil {
|
|
wm.MaxPasswordAttempts = *e.MaxPasswordAttempts
|
|
}
|
|
if e.ShowLockOutFailures != nil {
|
|
wm.ShowLockOutFailures = *e.ShowLockOutFailures
|
|
}
|
|
case *policy.LockoutPolicyRemovedEvent:
|
|
wm.State = domain.PolicyStateRemoved
|
|
}
|
|
}
|
|
return wm.WriteModel.Reduce()
|
|
}
|