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>
42 lines
975 B
Go
42 lines
975 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 PrivacyPolicyWriteModel struct {
|
|
eventstore.WriteModel
|
|
|
|
TOSLink string
|
|
PrivacyLink string
|
|
HelpLink string
|
|
State domain.PolicyState
|
|
}
|
|
|
|
func (wm *PrivacyPolicyWriteModel) Reduce() error {
|
|
for _, event := range wm.Events {
|
|
switch e := event.(type) {
|
|
case *policy.PrivacyPolicyAddedEvent:
|
|
wm.TOSLink = e.TOSLink
|
|
wm.PrivacyLink = e.PrivacyLink
|
|
wm.HelpLink = e.HelpLink
|
|
wm.State = domain.PolicyStateActive
|
|
case *policy.PrivacyPolicyChangedEvent:
|
|
if e.PrivacyLink != nil {
|
|
wm.PrivacyLink = *e.PrivacyLink
|
|
}
|
|
if e.TOSLink != nil {
|
|
wm.TOSLink = *e.TOSLink
|
|
}
|
|
if e.HelpLink != nil {
|
|
wm.HelpLink = *e.HelpLink
|
|
}
|
|
case *policy.PrivacyPolicyRemovedEvent:
|
|
wm.State = domain.PolicyStateRemoved
|
|
}
|
|
}
|
|
return wm.WriteModel.Reduce()
|
|
}
|