2020-09-18 11:26:28 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2022-03-23 08:02:39 +00:00
|
|
|
"time"
|
|
|
|
|
2020-09-18 11:26:28 +00:00
|
|
|
"github.com/caos/logging"
|
2022-03-23 08:02:39 +00:00
|
|
|
|
2020-09-18 11:26:28 +00:00
|
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
2022-03-31 09:36:26 +00:00
|
|
|
"github.com/caos/zitadel/internal/eventstore"
|
2021-02-23 14:13:04 +00:00
|
|
|
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
2022-03-31 09:36:26 +00:00
|
|
|
user_repo "github.com/caos/zitadel/internal/repository/user"
|
2020-09-18 11:26:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
ExternalIDPKeyExternalUserID = "external_user_id"
|
|
|
|
ExternalIDPKeyUserID = "user_id"
|
|
|
|
ExternalIDPKeyIDPConfigID = "idp_config_id"
|
|
|
|
ExternalIDPKeyResourceOwner = "resource_owner"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ExternalIDPView struct {
|
|
|
|
ExternalUserID string `json:"userID" gorm:"column:external_user_id;primary_key"`
|
|
|
|
IDPConfigID string `json:"idpConfigID" gorm:"column:idp_config_id;primary_key"`
|
|
|
|
UserID string `json:"-" gorm:"column:user_id"`
|
|
|
|
IDPName string `json:"-" gorm:"column:idp_name"`
|
|
|
|
UserDisplayName string `json:"displayName" gorm:"column:user_display_name"`
|
|
|
|
CreationDate time.Time `json:"-" gorm:"column:creation_date"`
|
|
|
|
ChangeDate time.Time `json:"-" gorm:"column:change_date"`
|
|
|
|
ResourceOwner string `json:"-" gorm:"column:resource_owner"`
|
|
|
|
Sequence uint64 `json:"-" gorm:"column:sequence"`
|
2022-03-23 08:02:39 +00:00
|
|
|
InstanceID string `json:"instanceID" gorm:"column:instance_id"`
|
2020-09-18 11:26:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (i *ExternalIDPView) AppendEvent(event *models.Event) (err error) {
|
|
|
|
i.Sequence = event.Sequence
|
|
|
|
i.ChangeDate = event.CreationDate
|
2022-03-31 09:36:26 +00:00
|
|
|
switch eventstore.EventType(event.Type) {
|
|
|
|
case user_repo.UserIDPLinkAddedType:
|
2020-09-18 11:26:28 +00:00
|
|
|
i.setRootData(event)
|
|
|
|
i.CreationDate = event.CreationDate
|
|
|
|
err = i.SetData(event)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ExternalIDPView) setRootData(event *models.Event) {
|
|
|
|
r.UserID = event.AggregateID
|
|
|
|
r.ResourceOwner = event.ResourceOwner
|
2022-03-23 08:02:39 +00:00
|
|
|
r.InstanceID = event.InstanceID
|
2020-09-18 11:26:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ExternalIDPView) SetData(event *models.Event) error {
|
|
|
|
if err := json.Unmarshal(event.Data, r); err != nil {
|
|
|
|
logging.Log("EVEN-48sfs").WithError(err).Error("could not unmarshal event data")
|
|
|
|
return caos_errs.ThrowInternal(err, "MODEL-Hs8uf", "Could not unmarshal data")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|