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>
109 lines
3.8 KiB
Go
109 lines
3.8 KiB
Go
package instance
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
"github.com/zitadel/zitadel/internal/repository/settings"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/repository"
|
|
)
|
|
|
|
const (
|
|
logType = ".log"
|
|
)
|
|
|
|
var (
|
|
DebugNotificationProviderLogAddedEventType = instanceEventTypePrefix + settings.DebugNotificationPrefix + logType + settings.DebugNotificationProviderAdded
|
|
DebugNotificationProviderLogChangedEventType = instanceEventTypePrefix + settings.DebugNotificationPrefix + logType + settings.DebugNotificationProviderChanged
|
|
DebugNotificationProviderLogEnabledEventType = instanceEventTypePrefix + settings.DebugNotificationPrefix + logType + settings.DebugNotificationProviderEnabled
|
|
DebugNotificationProviderLogDisabledEventType = instanceEventTypePrefix + settings.DebugNotificationPrefix + logType + settings.DebugNotificationProviderDisabled
|
|
DebugNotificationProviderLogRemovedEventType = instanceEventTypePrefix + settings.DebugNotificationPrefix + logType + settings.DebugNotificationProviderRemoved
|
|
)
|
|
|
|
type DebugNotificationProviderLogAddedEvent struct {
|
|
settings.DebugNotificationProviderAddedEvent
|
|
}
|
|
|
|
func NewDebugNotificationProviderLogAddedEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
compact bool,
|
|
) *DebugNotificationProviderLogAddedEvent {
|
|
return &DebugNotificationProviderLogAddedEvent{
|
|
DebugNotificationProviderAddedEvent: *settings.NewDebugNotificationProviderAddedEvent(
|
|
eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
DebugNotificationProviderLogAddedEventType),
|
|
compact),
|
|
}
|
|
}
|
|
|
|
func DebugNotificationProviderLogAddedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
|
e, err := settings.DebugNotificationProviderAddedEventMapper(event)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &DebugNotificationProviderLogAddedEvent{DebugNotificationProviderAddedEvent: *e.(*settings.DebugNotificationProviderAddedEvent)}, nil
|
|
}
|
|
|
|
type DebugNotificationProviderLogChangedEvent struct {
|
|
settings.DebugNotificationProviderChangedEvent
|
|
}
|
|
|
|
func NewDebugNotificationProviderLogChangedEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
changes []settings.DebugNotificationProviderChanges,
|
|
) (*DebugNotificationProviderLogChangedEvent, error) {
|
|
changedEvent, err := settings.NewDebugNotificationProviderChangedEvent(
|
|
eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
DebugNotificationProviderLogChangedEventType),
|
|
changes,
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &DebugNotificationProviderLogChangedEvent{DebugNotificationProviderChangedEvent: *changedEvent}, nil
|
|
}
|
|
|
|
func DebugNotificationProviderLogChangedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
|
e, err := settings.DebugNotificationProviderChangedEventMapper(event)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &DebugNotificationProviderLogChangedEvent{DebugNotificationProviderChangedEvent: *e.(*settings.DebugNotificationProviderChangedEvent)}, nil
|
|
}
|
|
|
|
type DebugNotificationProviderLogRemovedEvent struct {
|
|
settings.DebugNotificationProviderRemovedEvent
|
|
}
|
|
|
|
func NewDebugNotificationProviderLogRemovedEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
) *DebugNotificationProviderLogRemovedEvent {
|
|
return &DebugNotificationProviderLogRemovedEvent{
|
|
DebugNotificationProviderRemovedEvent: *settings.NewDebugNotificationProviderRemovedEvent(
|
|
eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
DebugNotificationProviderLogRemovedEventType),
|
|
),
|
|
}
|
|
}
|
|
|
|
func DebugNotificationProviderLogRemovedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
|
e, err := settings.DebugNotificationProviderRemovedEventMapper(event)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &DebugNotificationProviderLogRemovedEvent{DebugNotificationProviderRemovedEvent: *e.(*settings.DebugNotificationProviderRemovedEvent)}, nil
|
|
}
|