mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
76 lines
1.9 KiB
Go
76 lines
1.9 KiB
Go
|
package iam
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/caos/zitadel/internal/eventstore"
|
||
|
|
||
|
"github.com/caos/zitadel/internal/eventstore/repository"
|
||
|
"github.com/caos/zitadel/internal/repository/policy"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
PrivacyPolicyAddedEventType = iamEventTypePrefix + policy.PrivacyPolicyAddedEventType
|
||
|
PrivacyPolicyChangedEventType = iamEventTypePrefix + policy.PrivacyPolicyChangedEventType
|
||
|
)
|
||
|
|
||
|
type PrivacyPolicyAddedEvent struct {
|
||
|
policy.PrivacyPolicyAddedEvent
|
||
|
}
|
||
|
|
||
|
func NewPrivacyPolicyAddedEvent(
|
||
|
ctx context.Context,
|
||
|
aggregate *eventstore.Aggregate,
|
||
|
tosLink,
|
||
|
privacyLink string,
|
||
|
) *PrivacyPolicyAddedEvent {
|
||
|
return &PrivacyPolicyAddedEvent{
|
||
|
PrivacyPolicyAddedEvent: *policy.NewPrivacyPolicyAddedEvent(
|
||
|
eventstore.NewBaseEventForPush(
|
||
|
ctx,
|
||
|
aggregate,
|
||
|
PrivacyPolicyAddedEventType),
|
||
|
tosLink,
|
||
|
privacyLink),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func PrivacyPolicyAddedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
||
|
e, err := policy.PrivacyPolicyAddedEventMapper(event)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return &PrivacyPolicyAddedEvent{PrivacyPolicyAddedEvent: *e.(*policy.PrivacyPolicyAddedEvent)}, nil
|
||
|
}
|
||
|
|
||
|
type PrivacyPolicyChangedEvent struct {
|
||
|
policy.PrivacyPolicyChangedEvent
|
||
|
}
|
||
|
|
||
|
func NewPrivacyPolicyChangedEvent(
|
||
|
ctx context.Context,
|
||
|
aggregate *eventstore.Aggregate,
|
||
|
changes []policy.PrivacyPolicyChanges,
|
||
|
) (*PrivacyPolicyChangedEvent, error) {
|
||
|
changedEvent, err := policy.NewPrivacyPolicyChangedEvent(
|
||
|
eventstore.NewBaseEventForPush(
|
||
|
ctx,
|
||
|
aggregate,
|
||
|
PrivacyPolicyChangedEventType),
|
||
|
changes,
|
||
|
)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &PrivacyPolicyChangedEvent{PrivacyPolicyChangedEvent: *changedEvent}, nil
|
||
|
}
|
||
|
|
||
|
func PrivacyPolicyChangedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
||
|
e, err := policy.PrivacyPolicyChangedEventMapper(event)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return &PrivacyPolicyChangedEvent{PrivacyPolicyChangedEvent: *e.(*policy.PrivacyPolicyChangedEvent)}, nil
|
||
|
}
|