2022-04-05 05:58:09 +00:00
|
|
|
package instance
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/repository"
|
2022-04-05 05:58:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
InstanceAddedEventType = instanceEventTypePrefix + "added"
|
|
|
|
InstanceChangedEventType = instanceEventTypePrefix + "changed"
|
|
|
|
InstanceRemovedEventType = instanceEventTypePrefix + "removed"
|
|
|
|
)
|
|
|
|
|
|
|
|
type InstanceAddedEvent struct {
|
|
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *InstanceAddedEvent) Data() interface{} {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *InstanceAddedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewInstanceAddedEvent(ctx context.Context, aggregate *eventstore.Aggregate, name string) *InstanceAddedEvent {
|
|
|
|
return &InstanceAddedEvent{
|
|
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
|
|
ctx,
|
|
|
|
aggregate,
|
|
|
|
InstanceAddedEventType,
|
|
|
|
),
|
|
|
|
Name: name,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func InstanceAddedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
|
|
|
instanceAdded := &InstanceAddedEvent{
|
|
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
|
|
}
|
|
|
|
err := json.Unmarshal(event.Data, instanceAdded)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.ThrowInternal(err, "INSTANCE-s9l3F", "unable to unmarshal instance added")
|
|
|
|
}
|
|
|
|
|
|
|
|
return instanceAdded, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type InstanceChangedEvent struct {
|
|
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *InstanceChangedEvent) Data() interface{} {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *InstanceChangedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-09-27 06:58:50 +00:00
|
|
|
func NewInstanceChangedEvent(ctx context.Context, aggregate *eventstore.Aggregate, newName string) *InstanceChangedEvent {
|
2022-04-05 05:58:09 +00:00
|
|
|
return &InstanceChangedEvent{
|
|
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
|
|
ctx,
|
|
|
|
aggregate,
|
|
|
|
InstanceChangedEventType,
|
|
|
|
),
|
|
|
|
Name: newName,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func InstanceChangedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
|
|
|
instanceChanged := &InstanceChangedEvent{
|
|
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
|
|
}
|
|
|
|
err := json.Unmarshal(event.Data, instanceChanged)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.ThrowInternal(err, "INSTANCE-3hfo8", "unable to unmarshal instance changed")
|
|
|
|
}
|
|
|
|
|
|
|
|
return instanceChanged, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type InstanceRemovedEvent struct {
|
|
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
name string
|
2022-10-26 13:06:48 +00:00
|
|
|
domains []string
|
2022-04-05 05:58:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (e *InstanceRemovedEvent) Data() interface{} {
|
2022-10-26 13:06:48 +00:00
|
|
|
return nil
|
2022-04-05 05:58:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (e *InstanceRemovedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
2022-10-26 13:06:48 +00:00
|
|
|
constraints := make([]*eventstore.EventUniqueConstraint, len(e.domains)+1)
|
|
|
|
for i, domain := range e.domains {
|
|
|
|
constraints[i] = NewRemoveInstanceDomainUniqueConstraint(domain)
|
|
|
|
}
|
|
|
|
constraints[len(e.domains)] = eventstore.NewRemoveInstanceUniqueConstraints()
|
|
|
|
return constraints
|
2022-04-05 05:58:09 +00:00
|
|
|
}
|
|
|
|
|
2022-10-26 13:06:48 +00:00
|
|
|
func NewInstanceRemovedEvent(ctx context.Context, aggregate *eventstore.Aggregate, name string, domains []string) *InstanceRemovedEvent {
|
2022-04-05 05:58:09 +00:00
|
|
|
return &InstanceRemovedEvent{
|
|
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
|
|
ctx,
|
|
|
|
aggregate,
|
|
|
|
InstanceRemovedEventType,
|
|
|
|
),
|
2022-10-26 13:06:48 +00:00
|
|
|
name: name,
|
|
|
|
domains: domains,
|
2022-04-05 05:58:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func InstanceRemovedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
2022-10-26 13:06:48 +00:00
|
|
|
return &InstanceRemovedEvent{
|
2022-04-05 05:58:09 +00:00
|
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
2022-10-26 13:06:48 +00:00
|
|
|
}, nil
|
2022-04-05 05:58:09 +00:00
|
|
|
}
|