mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 11:12:21 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
37 lines
925 B
Go
37 lines
925 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 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()
|
|
}
|