mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:07:31 +00:00
feat: Notification providers config (#3212)
* feat: add login check lifetimes to login policy * feat: org features test * feat: debug notificatiaon events * feat: debug notification file/log commands * feat: add requests to proto * feat: add api for debug notification providers file/log * feat: add projection for debug notifiication providers * feat: requests * feat: merge v2 * feat: add settings proto to generate * feat: notifiaction providers * fix: remove unused code * Update iam_converter.go Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
130
internal/repository/settings/debug_notification.go
Normal file
130
internal/repository/settings/debug_notification.go
Normal file
@@ -0,0 +1,130 @@
|
||||
package settings
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
|
||||
"github.com/caos/zitadel/internal/errors"
|
||||
"github.com/caos/zitadel/internal/eventstore"
|
||||
"github.com/caos/zitadel/internal/eventstore/repository"
|
||||
)
|
||||
|
||||
const (
|
||||
DebugNotificationPrefix = "notification.provider.debug"
|
||||
DebugNotificationProviderAdded = "added"
|
||||
DebugNotificationProviderChanged = "changed"
|
||||
DebugNotificationProviderEnabled = "enabled"
|
||||
DebugNotificationProviderDisabled = "disabled"
|
||||
DebugNotificationProviderRemoved = "removed"
|
||||
)
|
||||
|
||||
type DebugNotificationProviderAddedEvent struct {
|
||||
eventstore.BaseEvent `json:"-"`
|
||||
|
||||
Compact bool `json:"compact,omitempty"`
|
||||
}
|
||||
|
||||
func (e *DebugNotificationProviderAddedEvent) Data() interface{} {
|
||||
return e
|
||||
}
|
||||
|
||||
func (e *DebugNotificationProviderAddedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
||||
return nil
|
||||
}
|
||||
|
||||
func NewDebugNotificationProviderAddedEvent(
|
||||
base *eventstore.BaseEvent,
|
||||
compact bool,
|
||||
) *DebugNotificationProviderAddedEvent {
|
||||
return &DebugNotificationProviderAddedEvent{
|
||||
BaseEvent: *base,
|
||||
Compact: compact,
|
||||
}
|
||||
}
|
||||
|
||||
func DebugNotificationProviderAddedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
||||
e := &DebugNotificationProviderAddedEvent{
|
||||
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
||||
}
|
||||
|
||||
err := json.Unmarshal(event.Data, e)
|
||||
if err != nil {
|
||||
return nil, errors.ThrowInternal(err, "SET-f93ns", "unable to unmarshal debug notification added")
|
||||
}
|
||||
|
||||
return e, nil
|
||||
}
|
||||
|
||||
type DebugNotificationProviderChangedEvent struct {
|
||||
eventstore.BaseEvent `json:"-"`
|
||||
|
||||
Compact *bool `json:"compact,omitempty"`
|
||||
}
|
||||
|
||||
func (e *DebugNotificationProviderChangedEvent) Data() interface{} {
|
||||
return e
|
||||
}
|
||||
|
||||
func (e *DebugNotificationProviderChangedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
||||
return nil
|
||||
}
|
||||
|
||||
func NewDebugNotificationProviderChangedEvent(
|
||||
base *eventstore.BaseEvent,
|
||||
changes []DebugNotificationProviderChanges,
|
||||
) (*DebugNotificationProviderChangedEvent, error) {
|
||||
if len(changes) == 0 {
|
||||
return nil, errors.ThrowPreconditionFailed(nil, "SET-hj90s", "Errors.NoChangesFound")
|
||||
}
|
||||
changeEvent := &DebugNotificationProviderChangedEvent{
|
||||
BaseEvent: *base,
|
||||
}
|
||||
for _, change := range changes {
|
||||
change(changeEvent)
|
||||
}
|
||||
return changeEvent, nil
|
||||
}
|
||||
|
||||
type DebugNotificationProviderChanges func(*DebugNotificationProviderChangedEvent)
|
||||
|
||||
func ChangeCompact(compact bool) func(*DebugNotificationProviderChangedEvent) {
|
||||
return func(e *DebugNotificationProviderChangedEvent) {
|
||||
e.Compact = &compact
|
||||
}
|
||||
}
|
||||
|
||||
func DebugNotificationProviderChangedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
||||
e := &DebugNotificationProviderChangedEvent{
|
||||
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
||||
}
|
||||
|
||||
err := json.Unmarshal(event.Data, e)
|
||||
if err != nil {
|
||||
return nil, errors.ThrowInternal(err, "POLIC-ehssl", "unable to unmarshal policy")
|
||||
}
|
||||
|
||||
return e, nil
|
||||
}
|
||||
|
||||
type DebugNotificationProviderRemovedEvent struct {
|
||||
eventstore.BaseEvent `json:"-"`
|
||||
}
|
||||
|
||||
func (e *DebugNotificationProviderRemovedEvent) Data() interface{} {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e *DebugNotificationProviderRemovedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
||||
return nil
|
||||
}
|
||||
|
||||
func NewDebugNotificationProviderRemovedEvent(base *eventstore.BaseEvent) *DebugNotificationProviderRemovedEvent {
|
||||
return &DebugNotificationProviderRemovedEvent{
|
||||
BaseEvent: *base,
|
||||
}
|
||||
}
|
||||
|
||||
func DebugNotificationProviderRemovedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
||||
return &DebugNotificationProviderRemovedEvent{
|
||||
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
||||
}, nil
|
||||
}
|
Reference in New Issue
Block a user