mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
21ffe1b0cb
* fix: split command query side * fix: split command query side * fix: members in correct pkg structure * fix: label policy in correct pkg structure * fix: structure * fix: structure of login policy * fix: identityprovider structure * fix: org iam policy structure * fix: password age policy structure * fix: password complexity policy structure * fix: password lockout policy structure * fix: idp structure * fix: user events structure * fix: user write model * fix: profile email changed command * fix: address changed command * fix: user states * fix: user * fix: org structure and add human * begin iam setup command side * setup * step2 * step2 * fix: add user * step2 * isvalid * fix: folder structure v2 business Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
80 lines
2.0 KiB
Go
80 lines
2.0 KiB
Go
package iam
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
"github.com/caos/zitadel/internal/eventstore/v2/repository"
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
"github.com/caos/zitadel/internal/v2/repository/idpconfig"
|
|
)
|
|
|
|
const (
|
|
IDPOIDCConfigAddedEventType eventstore.EventType = "iam.idp." + idpconfig.OIDCConfigAddedEventType
|
|
IDPOIDCConfigChangedEventType eventstore.EventType = "iam.idp." + idpconfig.ConfigChangedEventType
|
|
)
|
|
|
|
type IDPOIDCConfigAddedEvent struct {
|
|
idpconfig.OIDCConfigAddedEvent
|
|
}
|
|
|
|
func NewIDPOIDCConfigAddedEvent(
|
|
ctx context.Context,
|
|
clientID,
|
|
idpConfigID,
|
|
issuer string,
|
|
clientSecret *crypto.CryptoValue,
|
|
idpDisplayNameMapping,
|
|
userNameMapping domain.OIDCMappingField,
|
|
scopes ...string,
|
|
) *IDPOIDCConfigAddedEvent {
|
|
|
|
return &IDPOIDCConfigAddedEvent{
|
|
OIDCConfigAddedEvent: *idpconfig.NewOIDCConfigAddedEvent(
|
|
eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
IDPOIDCConfigAddedEventType,
|
|
),
|
|
clientID,
|
|
idpConfigID,
|
|
issuer,
|
|
clientSecret,
|
|
idpDisplayNameMapping,
|
|
userNameMapping,
|
|
scopes...,
|
|
),
|
|
}
|
|
}
|
|
|
|
func IDPOIDCConfigAddedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
e, err := idpconfig.OIDCConfigAddedEventMapper(event)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &IDPOIDCConfigAddedEvent{OIDCConfigAddedEvent: *e.(*idpconfig.OIDCConfigAddedEvent)}, nil
|
|
}
|
|
|
|
type IDPOIDCConfigChangedEvent struct {
|
|
idpconfig.OIDCConfigChangedEvent
|
|
}
|
|
|
|
func NewIDPOIDCConfigChangedEvent(
|
|
ctx context.Context,
|
|
) *IDPOIDCConfigChangedEvent {
|
|
return &IDPOIDCConfigChangedEvent{
|
|
OIDCConfigChangedEvent: *idpconfig.NewOIDCConfigChangedEvent(
|
|
eventstore.NewBaseEventForPush(ctx, IDPOIDCConfigChangedEventType),
|
|
),
|
|
}
|
|
}
|
|
|
|
func IDPOIDCConfigChangedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
e, err := idpconfig.OIDCConfigChangedEventMapper(event)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &IDPOIDCConfigChangedEvent{OIDCConfigChangedEvent: *e.(*idpconfig.OIDCConfigChangedEvent)}, nil
|
|
}
|