2021-01-04 13:52:13 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/policy"
|
2021-01-04 13:52:13 +00:00
|
|
|
)
|
|
|
|
|
2022-03-24 16:21:34 +00:00
|
|
|
type PolicyDomainWriteModel struct {
|
2021-01-04 13:52:13 +00:00
|
|
|
eventstore.WriteModel
|
|
|
|
|
2022-05-16 14:08:47 +00:00
|
|
|
UserLoginMustBeDomain bool
|
|
|
|
ValidateOrgDomains bool
|
|
|
|
SMTPSenderAddressMatchesInstanceDomain bool
|
|
|
|
State domain.PolicyState
|
2021-01-04 13:52:13 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 16:21:34 +00:00
|
|
|
func (wm *PolicyDomainWriteModel) Reduce() error {
|
2021-01-04 13:52:13 +00:00
|
|
|
for _, event := range wm.Events {
|
|
|
|
switch e := event.(type) {
|
2022-03-24 16:21:34 +00:00
|
|
|
case *policy.DomainPolicyAddedEvent:
|
2021-01-04 13:52:13 +00:00
|
|
|
wm.UserLoginMustBeDomain = e.UserLoginMustBeDomain
|
2022-04-13 09:24:03 +00:00
|
|
|
wm.ValidateOrgDomains = e.ValidateOrgDomains
|
2022-05-16 14:08:47 +00:00
|
|
|
wm.SMTPSenderAddressMatchesInstanceDomain = e.SMTPSenderAddressMatchesInstanceDomain
|
2021-01-07 15:06:45 +00:00
|
|
|
wm.State = domain.PolicyStateActive
|
2022-03-24 16:21:34 +00:00
|
|
|
case *policy.DomainPolicyChangedEvent:
|
2021-01-06 10:12:56 +00:00
|
|
|
if e.UserLoginMustBeDomain != nil {
|
|
|
|
wm.UserLoginMustBeDomain = *e.UserLoginMustBeDomain
|
|
|
|
}
|
2022-04-13 09:24:03 +00:00
|
|
|
if e.ValidateOrgDomains != nil {
|
|
|
|
wm.ValidateOrgDomains = *e.ValidateOrgDomains
|
|
|
|
}
|
2022-05-16 14:08:47 +00:00
|
|
|
if e.SMTPSenderAddressMatchesInstanceDomain != nil {
|
|
|
|
wm.SMTPSenderAddressMatchesInstanceDomain = *e.SMTPSenderAddressMatchesInstanceDomain
|
|
|
|
}
|
2022-07-21 11:46:59 +00:00
|
|
|
case *policy.DomainPolicyRemovedEvent:
|
|
|
|
wm.State = domain.PolicyStateRemoved
|
2021-01-04 13:52:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return wm.WriteModel.Reduce()
|
|
|
|
}
|