mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 19:19:19 +00:00
b6b5b1b782
* feat: jwt idp * feat: command side * feat: add tests * fill idp views with jwt idps and return apis * add jwtEndpoint to jwt idp * begin jwt request handling * merge * handle jwt idp * cleanup * fixes * autoregister * get token from specific header name * error handling * fix texts * handle renderExternalNotFoundOption Co-authored-by: fabi <fabienne.gerschwiler@gmail.com>
48 lines
1.0 KiB
Go
48 lines
1.0 KiB
Go
package query
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
"github.com/caos/zitadel/internal/repository/idpconfig"
|
|
)
|
|
|
|
type JWTConfigReadModel struct {
|
|
eventstore.ReadModel
|
|
|
|
IDPConfigID string
|
|
JWTEndpoint string
|
|
Issuer string
|
|
KeysEndpoint string
|
|
}
|
|
|
|
func (rm *JWTConfigReadModel) Reduce() error {
|
|
for _, event := range rm.Events {
|
|
switch e := event.(type) {
|
|
case *idpconfig.JWTConfigAddedEvent:
|
|
rm.reduceConfigAddedEvent(e)
|
|
case *idpconfig.JWTConfigChangedEvent:
|
|
rm.reduceConfigChangedEvent(e)
|
|
}
|
|
}
|
|
|
|
return rm.ReadModel.Reduce()
|
|
}
|
|
|
|
func (rm *JWTConfigReadModel) reduceConfigAddedEvent(e *idpconfig.JWTConfigAddedEvent) {
|
|
rm.IDPConfigID = e.IDPConfigID
|
|
rm.JWTEndpoint = e.JWTEndpoint
|
|
rm.Issuer = e.Issuer
|
|
rm.KeysEndpoint = e.KeysEndpoint
|
|
}
|
|
|
|
func (rm *JWTConfigReadModel) reduceConfigChangedEvent(e *idpconfig.JWTConfigChangedEvent) {
|
|
if e.JWTEndpoint != nil {
|
|
rm.JWTEndpoint = *e.JWTEndpoint
|
|
}
|
|
if e.Issuer != nil {
|
|
rm.Issuer = *e.Issuer
|
|
}
|
|
if e.KeysEndpoint != nil {
|
|
rm.KeysEndpoint = *e.KeysEndpoint
|
|
}
|
|
}
|