mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
80003939ad
Adds possibility to manage OIDC and JWT template based providers
154 lines
3.5 KiB
Go
154 lines
3.5 KiB
Go
package idp
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
"github.com/zitadel/zitadel/internal/eventstore/repository"
|
|
)
|
|
|
|
type JWTIDPAddedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
ID string `json:"id"`
|
|
Name string `json:"name,omitempty"`
|
|
Issuer string `json:"issuer,omitempty"`
|
|
JWTEndpoint string `json:"jwtEndpoint,omitempty"`
|
|
KeysEndpoint string `json:"keysEndpoint,omitempty"`
|
|
HeaderName string `json:"headerName,omitempty"`
|
|
Options
|
|
}
|
|
|
|
func NewJWTIDPAddedEvent(
|
|
base *eventstore.BaseEvent,
|
|
id,
|
|
name,
|
|
issuer,
|
|
jwtEndpoint,
|
|
keysEndpoint,
|
|
headerName string,
|
|
options Options,
|
|
) *JWTIDPAddedEvent {
|
|
return &JWTIDPAddedEvent{
|
|
BaseEvent: *base,
|
|
ID: id,
|
|
Name: name,
|
|
Issuer: issuer,
|
|
JWTEndpoint: jwtEndpoint,
|
|
KeysEndpoint: keysEndpoint,
|
|
HeaderName: headerName,
|
|
Options: options,
|
|
}
|
|
}
|
|
|
|
func (e *JWTIDPAddedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *JWTIDPAddedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
|
return nil
|
|
}
|
|
|
|
func JWTIDPAddedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
|
e := &JWTIDPAddedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := json.Unmarshal(event.Data, e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "IDP-Et1dq", "unable to unmarshal event")
|
|
}
|
|
|
|
return e, nil
|
|
}
|
|
|
|
type JWTIDPChangedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
ID string `json:"id"`
|
|
Name *string `json:"name,omitempty"`
|
|
Issuer *string `json:"issuer,omitempty"`
|
|
JWTEndpoint *string `json:"jwtEndpoint,omitempty"`
|
|
KeysEndpoint *string `json:"keysEndpoint,omitempty"`
|
|
HeaderName *string `json:"headerName,omitempty"`
|
|
OptionChanges
|
|
}
|
|
|
|
func NewJWTIDPChangedEvent(
|
|
base *eventstore.BaseEvent,
|
|
id string,
|
|
changes []JWTIDPChanges,
|
|
) (*JWTIDPChangedEvent, error) {
|
|
if len(changes) == 0 {
|
|
return nil, errors.ThrowPreconditionFailed(nil, "IDP-BH3dl", "Errors.NoChangesFound")
|
|
}
|
|
changedEvent := &JWTIDPChangedEvent{
|
|
BaseEvent: *base,
|
|
ID: id,
|
|
}
|
|
for _, change := range changes {
|
|
change(changedEvent)
|
|
}
|
|
return changedEvent, nil
|
|
}
|
|
|
|
type JWTIDPChanges func(*JWTIDPChangedEvent)
|
|
|
|
func ChangeJWTName(name string) func(*JWTIDPChangedEvent) {
|
|
return func(e *JWTIDPChangedEvent) {
|
|
e.Name = &name
|
|
}
|
|
}
|
|
|
|
func ChangeJWTIssuer(issuer string) func(*JWTIDPChangedEvent) {
|
|
return func(e *JWTIDPChangedEvent) {
|
|
e.Issuer = &issuer
|
|
}
|
|
}
|
|
|
|
func ChangeJWTEndpoint(jwtEndpoint string) func(*JWTIDPChangedEvent) {
|
|
return func(e *JWTIDPChangedEvent) {
|
|
e.JWTEndpoint = &jwtEndpoint
|
|
}
|
|
}
|
|
|
|
func ChangeJWTKeysEndpoint(keysEndpoint string) func(*JWTIDPChangedEvent) {
|
|
return func(e *JWTIDPChangedEvent) {
|
|
e.KeysEndpoint = &keysEndpoint
|
|
}
|
|
}
|
|
|
|
func ChangeJWTHeaderName(headerName string) func(*JWTIDPChangedEvent) {
|
|
return func(e *JWTIDPChangedEvent) {
|
|
e.HeaderName = &headerName
|
|
}
|
|
}
|
|
|
|
func ChangeJWTOptions(options OptionChanges) func(*JWTIDPChangedEvent) {
|
|
return func(e *JWTIDPChangedEvent) {
|
|
e.OptionChanges = options
|
|
}
|
|
}
|
|
|
|
func (e *JWTIDPChangedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *JWTIDPChangedEvent) UniqueConstraints() []*eventstore.EventUniqueConstraint {
|
|
return nil
|
|
}
|
|
|
|
func JWTIDPChangedEventMapper(event *repository.Event) (eventstore.Event, error) {
|
|
e := &JWTIDPChangedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := json.Unmarshal(event.Data, e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "IDP-D3gjzh", "unable to unmarshal event")
|
|
}
|
|
|
|
return e, nil
|
|
}
|