zitadel/internal/repository/org/policy_domain.go
Fabi 5c0f527a49
feat: restrict smtp sender address (#3637)
* fix: check if sender address is custom domain

* fix: check if sender address is custom domain

* fix: check if sender address is custom domain

Co-authored-by: Livio Amstutz <livio.a@gmail.com>
2022-05-16 14:08:47 +00:00

108 lines
2.8 KiB
Go

package org
import (
"context"
"github.com/zitadel/zitadel/internal/eventstore"
"github.com/zitadel/zitadel/internal/eventstore/repository"
"github.com/zitadel/zitadel/internal/repository/policy"
)
var (
DomainPolicyAddedEventType = orgEventTypePrefix + policy.DomainPolicyAddedEventType
DomainPolicyChangedEventType = orgEventTypePrefix + policy.DomainPolicyChangedEventType
DomainPolicyRemovedEventType = orgEventTypePrefix + policy.DomainPolicyRemovedEventType
)
type DomainPolicyAddedEvent struct {
policy.DomainPolicyAddedEvent
}
func NewDomainPolicyAddedEvent(
ctx context.Context,
aggregate *eventstore.Aggregate,
userLoginMustBeDomain,
validateOrgDomains,
smtpSenderAddressMatchesInstanceDomain bool,
) *DomainPolicyAddedEvent {
return &DomainPolicyAddedEvent{
DomainPolicyAddedEvent: *policy.NewDomainPolicyAddedEvent(
eventstore.NewBaseEventForPush(
ctx,
aggregate,
DomainPolicyAddedEventType),
userLoginMustBeDomain,
validateOrgDomains,
smtpSenderAddressMatchesInstanceDomain,
),
}
}
func DomainPolicyAddedEventMapper(event *repository.Event) (eventstore.Event, error) {
e, err := policy.DomainPolicyAddedEventMapper(event)
if err != nil {
return nil, err
}
return &DomainPolicyAddedEvent{DomainPolicyAddedEvent: *e.(*policy.DomainPolicyAddedEvent)}, nil
}
type DomainPolicyChangedEvent struct {
policy.DomainPolicyChangedEvent
}
func NewDomainPolicyChangedEvent(
ctx context.Context,
aggregate *eventstore.Aggregate,
changes []policy.DomainPolicyChanges,
) (*DomainPolicyChangedEvent, error) {
changedEvent, err := policy.NewDomainPolicyChangedEvent(
eventstore.NewBaseEventForPush(
ctx,
aggregate,
DomainPolicyChangedEventType),
changes,
)
if err != nil {
return nil, err
}
return &DomainPolicyChangedEvent{DomainPolicyChangedEvent: *changedEvent}, nil
}
func DomainPolicyChangedEventMapper(event *repository.Event) (eventstore.Event, error) {
e, err := policy.DomainPolicyChangedEventMapper(event)
if err != nil {
return nil, err
}
return &DomainPolicyChangedEvent{DomainPolicyChangedEvent: *e.(*policy.DomainPolicyChangedEvent)}, nil
}
type DomainPolicyRemovedEvent struct {
policy.DomainPolicyRemovedEvent
}
func NewDomainPolicyRemovedEvent(
ctx context.Context,
aggregate *eventstore.Aggregate,
) *DomainPolicyRemovedEvent {
return &DomainPolicyRemovedEvent{
DomainPolicyRemovedEvent: *policy.NewDomainPolicyRemovedEvent(
eventstore.NewBaseEventForPush(
ctx,
aggregate,
DomainPolicyRemovedEventType),
),
}
}
func DomainPolicyRemovedEventMapper(event *repository.Event) (eventstore.Event, error) {
e, err := policy.DomainPolicyRemovedEventMapper(event)
if err != nil {
return nil, err
}
return &DomainPolicyRemovedEvent{DomainPolicyRemovedEvent: *e.(*policy.DomainPolicyRemovedEvent)}, nil
}