mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
61 lines
1.6 KiB
Go
61 lines
1.6 KiB
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/zitadel/logging"
|
|
|
|
caos_errs "github.com/zitadel/zitadel/internal/errors"
|
|
es_models "github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type ExternalIDP struct {
|
|
es_models.ObjectRoot
|
|
|
|
IDPConfigID string `json:"idpConfigId,omitempty"`
|
|
UserID string `json:"userId,omitempty"`
|
|
DisplayName string `json:"displayName,omitempty"`
|
|
}
|
|
|
|
func GetExternalIDP(idps []*ExternalIDP, id string) (int, *ExternalIDP) {
|
|
for i, idp := range idps {
|
|
if idp.UserID == id {
|
|
return i, idp
|
|
}
|
|
}
|
|
return -1, nil
|
|
}
|
|
func (u *Human) appendExternalIDPAddedEvent(event *es_models.Event) error {
|
|
idp := new(ExternalIDP)
|
|
err := idp.setData(event)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
idp.ObjectRoot.CreationDate = event.CreationDate
|
|
u.ExternalIDPs = append(u.ExternalIDPs, idp)
|
|
return nil
|
|
}
|
|
|
|
func (u *Human) appendExternalIDPRemovedEvent(event *es_models.Event) error {
|
|
idp := new(ExternalIDP)
|
|
err := idp.setData(event)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if i, externalIdp := GetExternalIDP(u.ExternalIDPs, idp.UserID); externalIdp != nil {
|
|
u.ExternalIDPs[i] = u.ExternalIDPs[len(u.ExternalIDPs)-1]
|
|
u.ExternalIDPs[len(u.ExternalIDPs)-1] = nil
|
|
u.ExternalIDPs = u.ExternalIDPs[:len(u.ExternalIDPs)-1]
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (pw *ExternalIDP) setData(event *es_models.Event) error {
|
|
pw.ObjectRoot.AppendEvent(event)
|
|
if err := json.Unmarshal(event.Data, pw); err != nil {
|
|
logging.Log("EVEN-Msi9d").WithError(err).Error("could not unmarshal event data")
|
|
return caos_errs.ThrowInternal(err, "MODEL-A9osf", "could not unmarshal event")
|
|
}
|
|
return nil
|
|
}
|