mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
b5564572bc
This implementation increases parallel write capabilities of the eventstore. Please have a look at the technical advisories: [05](https://zitadel.com/docs/support/advisory/a10005) and [06](https://zitadel.com/docs/support/advisory/a10006). The implementation of eventstore.push is rewritten and stored events are migrated to a new table `eventstore.events2`. If you are using cockroach: make sure that the database user of ZITADEL has `VIEWACTIVITY` grant. This is used to query events.
162 lines
3.9 KiB
Go
162 lines
3.9 KiB
Go
package project
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
)
|
|
|
|
const (
|
|
UniqueEntityIDType = "entity_ids"
|
|
SAMLConfigAddedType = applicationEventTypePrefix + "config.saml.added"
|
|
SAMLConfigChangedType = applicationEventTypePrefix + "config.saml.changed"
|
|
)
|
|
|
|
type SAMLConfigAddedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
AppID string `json:"appId"`
|
|
EntityID string `json:"entityId"`
|
|
Metadata []byte `json:"metadata,omitempty"`
|
|
MetadataURL string `json:"metadata_url,omitempty"`
|
|
}
|
|
|
|
func (e *SAMLConfigAddedEvent) Payload() interface{} {
|
|
return e
|
|
}
|
|
|
|
func NewAddSAMLConfigEntityIDUniqueConstraint(entityID string) *eventstore.UniqueConstraint {
|
|
return eventstore.NewAddEventUniqueConstraint(
|
|
UniqueEntityIDType,
|
|
entityID,
|
|
"Errors.Project.App.SAMLEntityIDAlreadyExists")
|
|
}
|
|
|
|
func NewRemoveSAMLConfigEntityIDUniqueConstraint(entityID string) *eventstore.UniqueConstraint {
|
|
return eventstore.NewRemoveUniqueConstraint(
|
|
UniqueEntityIDType,
|
|
entityID)
|
|
}
|
|
|
|
func (e *SAMLConfigAddedEvent) UniqueConstraints() []*eventstore.UniqueConstraint {
|
|
return []*eventstore.UniqueConstraint{NewAddSAMLConfigEntityIDUniqueConstraint(e.EntityID)}
|
|
}
|
|
|
|
func NewSAMLConfigAddedEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
appID string,
|
|
entityID string,
|
|
metadata []byte,
|
|
metadataURL string,
|
|
) *SAMLConfigAddedEvent {
|
|
return &SAMLConfigAddedEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
SAMLConfigAddedType,
|
|
),
|
|
AppID: appID,
|
|
EntityID: entityID,
|
|
Metadata: metadata,
|
|
MetadataURL: metadataURL,
|
|
}
|
|
}
|
|
|
|
func SAMLConfigAddedEventMapper(event eventstore.Event) (eventstore.Event, error) {
|
|
e := &SAMLConfigAddedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := event.Unmarshal(e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "SAML-BDd15", "unable to unmarshal saml config")
|
|
}
|
|
|
|
return e, nil
|
|
}
|
|
|
|
type SAMLConfigChangedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
AppID string `json:"appId"`
|
|
EntityID string `json:"entityId"`
|
|
Metadata []byte `json:"metadata,omitempty"`
|
|
MetadataURL *string `json:"metadata_url,omitempty"`
|
|
oldEntityID string
|
|
}
|
|
|
|
func (e *SAMLConfigChangedEvent) Payload() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *SAMLConfigChangedEvent) UniqueConstraints() []*eventstore.UniqueConstraint {
|
|
if e.EntityID != "" {
|
|
return []*eventstore.UniqueConstraint{
|
|
NewRemoveSAMLConfigEntityIDUniqueConstraint(e.oldEntityID),
|
|
NewAddSAMLConfigEntityIDUniqueConstraint(e.EntityID),
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func NewSAMLConfigChangedEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
appID string,
|
|
oldEntityID string,
|
|
changes []SAMLConfigChanges,
|
|
) (*SAMLConfigChangedEvent, error) {
|
|
if len(changes) == 0 {
|
|
return nil, errors.ThrowPreconditionFailed(nil, "SAML-i8idç", "Errors.NoChangesFound")
|
|
}
|
|
|
|
changeEvent := &SAMLConfigChangedEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
SAMLConfigChangedType,
|
|
),
|
|
AppID: appID,
|
|
oldEntityID: oldEntityID,
|
|
}
|
|
for _, change := range changes {
|
|
change(changeEvent)
|
|
}
|
|
return changeEvent, nil
|
|
}
|
|
|
|
type SAMLConfigChanges func(event *SAMLConfigChangedEvent)
|
|
|
|
func ChangeMetadata(metadata []byte) func(event *SAMLConfigChangedEvent) {
|
|
return func(e *SAMLConfigChangedEvent) {
|
|
e.Metadata = metadata
|
|
}
|
|
}
|
|
|
|
func ChangeMetadataURL(metadataURL string) func(event *SAMLConfigChangedEvent) {
|
|
return func(e *SAMLConfigChangedEvent) {
|
|
e.MetadataURL = &metadataURL
|
|
}
|
|
}
|
|
|
|
func ChangeEntityID(entityID string) func(event *SAMLConfigChangedEvent) {
|
|
return func(e *SAMLConfigChangedEvent) {
|
|
e.EntityID = entityID
|
|
}
|
|
}
|
|
|
|
func SAMLConfigChangedEventMapper(event eventstore.Event) (eventstore.Event, error) {
|
|
e := &SAMLConfigChangedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := event.Unmarshal(e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "SAML-BFd15", "unable to unmarshal saml config")
|
|
}
|
|
|
|
return e, nil
|
|
}
|