mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
d8e42744b4
* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
37 lines
916 B
Go
37 lines
916 B
Go
package command
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/domain"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
"github.com/caos/zitadel/internal/repository/policy"
|
|
)
|
|
|
|
type PasswordAgePolicyWriteModel struct {
|
|
eventstore.WriteModel
|
|
|
|
ExpireWarnDays uint64
|
|
MaxAgeDays uint64
|
|
State domain.PolicyState
|
|
}
|
|
|
|
func (wm *PasswordAgePolicyWriteModel) Reduce() error {
|
|
for _, event := range wm.Events {
|
|
switch e := event.(type) {
|
|
case *policy.PasswordAgePolicyAddedEvent:
|
|
wm.ExpireWarnDays = e.ExpireWarnDays
|
|
wm.MaxAgeDays = e.MaxAgeDays
|
|
wm.State = domain.PolicyStateActive
|
|
case *policy.PasswordAgePolicyChangedEvent:
|
|
if e.ExpireWarnDays != nil {
|
|
wm.ExpireWarnDays = *e.ExpireWarnDays
|
|
}
|
|
if e.MaxAgeDays != nil {
|
|
wm.MaxAgeDays = *e.MaxAgeDays
|
|
}
|
|
case *policy.PasswordAgePolicyRemovedEvent:
|
|
wm.State = domain.PolicyStateRemoved
|
|
}
|
|
}
|
|
return wm.WriteModel.Reduce()
|
|
}
|