mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
143 lines
2.8 KiB
Go
143 lines
2.8 KiB
Go
|
package org
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/zitadel/zitadel/internal/crypto"
|
||
|
"github.com/zitadel/zitadel/internal/eventstore"
|
||
|
"github.com/zitadel/zitadel/internal/eventstore/repository"
|
||
|
"github.com/zitadel/zitadel/internal/repository/idp"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
LDAPIDPAddedEventType eventstore.EventType = "org.idp.ldap.added"
|
||
|
LDAPIDPChangedEventType eventstore.EventType = "org.idp.ldap.changed"
|
||
|
IDPRemovedEventType eventstore.EventType = "org.idp.removed"
|
||
|
)
|
||
|
|
||
|
type LDAPIDPAddedEvent struct {
|
||
|
idp.LDAPIDPAddedEvent
|
||
|
}
|
||
|
|
||
|
func NewLDAPIDPAddedEvent(
|
||
|
ctx context.Context,
|
||
|
aggregate *eventstore.Aggregate,
|
||
|
id,
|
||
|
name,
|
||
|
host,
|
||
|
port string,
|
||
|
tls bool,
|
||
|
baseDN,
|
||
|
userObjectClass,
|
||
|
userUniqueAttribute,
|
||
|
admin string,
|
||
|
password *crypto.CryptoValue,
|
||
|
attributes idp.LDAPAttributes,
|
||
|
options idp.Options,
|
||
|
) *LDAPIDPAddedEvent {
|
||
|
|
||
|
return &LDAPIDPAddedEvent{
|
||
|
LDAPIDPAddedEvent: *idp.NewLDAPIDPAddedEvent(
|
||
|
eventstore.NewBaseEventForPush(
|
||
|
ctx,
|
||
|
aggregate,
|
||
|
LDAPIDPAddedEventType,
|
||
|
),
|
||
|
id,
|
||
|
name,
|
||
|
host,
|
||
|
port,
|
||
|
tls,
|
||
|
baseDN,
|
||
|
userObjectClass,
|
||
|
userUniqueAttribute,
|
||
|
admin,
|
||
|
password,
|
||
|
attributes,
|
||
|
options,
|
||
|
),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func LDAPIDPAddedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
||
|
e, err := idp.LDAPIDPAddedEventMapper(event)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return &LDAPIDPAddedEvent{LDAPIDPAddedEvent: *e.(*idp.LDAPIDPAddedEvent)}, nil
|
||
|
}
|
||
|
|
||
|
type LDAPIDPChangedEvent struct {
|
||
|
idp.LDAPIDPChangedEvent
|
||
|
}
|
||
|
|
||
|
func NewLDAPIDPChangedEvent(
|
||
|
ctx context.Context,
|
||
|
aggregate *eventstore.Aggregate,
|
||
|
id,
|
||
|
oldName string,
|
||
|
changes []idp.LDAPIDPChanges,
|
||
|
) (*LDAPIDPChangedEvent, error) {
|
||
|
|
||
|
changedEvent, err := idp.NewLDAPIDPChangedEvent(
|
||
|
eventstore.NewBaseEventForPush(
|
||
|
ctx,
|
||
|
aggregate,
|
||
|
LDAPIDPChangedEventType,
|
||
|
),
|
||
|
id,
|
||
|
oldName,
|
||
|
changes,
|
||
|
)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &LDAPIDPChangedEvent{LDAPIDPChangedEvent: *changedEvent}, nil
|
||
|
}
|
||
|
|
||
|
func LDAPIDPChangedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
||
|
e, err := idp.LDAPIDPChangedEventMapper(event)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return &LDAPIDPChangedEvent{LDAPIDPChangedEvent: *e.(*idp.LDAPIDPChangedEvent)}, nil
|
||
|
}
|
||
|
|
||
|
type IDPRemovedEvent struct {
|
||
|
idp.RemovedEvent
|
||
|
}
|
||
|
|
||
|
func NewIDPRemovedEvent(
|
||
|
ctx context.Context,
|
||
|
aggregate *eventstore.Aggregate,
|
||
|
id string,
|
||
|
name string,
|
||
|
) *IDPRemovedEvent {
|
||
|
return &IDPRemovedEvent{
|
||
|
RemovedEvent: *idp.NewRemovedEvent(
|
||
|
eventstore.NewBaseEventForPush(
|
||
|
ctx,
|
||
|
aggregate,
|
||
|
IDPRemovedEventType,
|
||
|
),
|
||
|
id,
|
||
|
name,
|
||
|
),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (e *IDPRemovedEvent) Data() interface{} {
|
||
|
return e
|
||
|
}
|
||
|
|
||
|
func IDPRemovedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
||
|
e, err := idp.RemovedEventMapper(event)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return &IDPRemovedEvent{RemovedEvent: *e.(*idp.RemovedEvent)}, nil
|
||
|
}
|