2020-08-26 07:56:23 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
es_model "github.com/caos/zitadel/internal/iam/repository/eventsourcing/model"
|
|
|
|
org_es_model "github.com/caos/zitadel/internal/org/repository/eventsourcing/model"
|
|
|
|
|
|
|
|
"github.com/caos/logging"
|
|
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
|
|
"github.com/caos/zitadel/internal/iam/model"
|
|
|
|
"github.com/lib/pq"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
IDPConfigKeyIdpConfigID = "idp_config_id"
|
|
|
|
IDPConfigKeyAggregateID = "aggregate_id"
|
|
|
|
IDPConfigKeyName = "name"
|
|
|
|
IDPConfigKeyProviderType = "idp_provider_type"
|
|
|
|
)
|
|
|
|
|
|
|
|
type IDPConfigView struct {
|
|
|
|
IDPConfigID string `json:"idpConfigId" gorm:"column:idp_config_id;primary_key"`
|
|
|
|
AggregateID string `json:"-" gorm:"column:aggregate_id"`
|
|
|
|
Name string `json:"name" gorm:"column:name"`
|
2020-10-19 15:10:02 +00:00
|
|
|
StylingType int32 `json:"stylingType" gorm:"column:styling_type"`
|
2020-08-26 07:56:23 +00:00
|
|
|
CreationDate time.Time `json:"-" gorm:"column:creation_date"`
|
|
|
|
ChangeDate time.Time `json:"-" gorm:"column:change_date"`
|
|
|
|
IDPState int32 `json:"-" gorm:"column:idp_state"`
|
|
|
|
IDPProviderType int32 `json:"-" gorm:"column:idp_provider_type"`
|
|
|
|
|
2020-09-18 11:26:28 +00:00
|
|
|
IsOIDC bool `json:"-" gorm:"column:is_oidc"`
|
|
|
|
OIDCClientID string `json:"clientId" gorm:"column:oidc_client_id"`
|
|
|
|
OIDCClientSecret *crypto.CryptoValue `json:"clientSecret" gorm:"column:oidc_client_secret"`
|
|
|
|
OIDCIssuer string `json:"issuer" gorm:"column:oidc_issuer"`
|
|
|
|
OIDCScopes pq.StringArray `json:"scopes" gorm:"column:oidc_scopes"`
|
|
|
|
OIDCIDPDisplayNameMapping int32 `json:"idpDisplayNameMapping" gorm:"column:oidc_idp_display_name_mapping"`
|
|
|
|
OIDCUsernameMapping int32 `json:"usernameMapping" gorm:"column:oidc_idp_username_mapping"`
|
2020-08-26 07:56:23 +00:00
|
|
|
|
|
|
|
Sequence uint64 `json:"-" gorm:"column:sequence"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func IDPConfigViewFromModel(idp *model.IDPConfigView) *IDPConfigView {
|
|
|
|
return &IDPConfigView{
|
2020-09-18 11:26:28 +00:00
|
|
|
IDPConfigID: idp.IDPConfigID,
|
|
|
|
AggregateID: idp.AggregateID,
|
2020-09-23 14:52:19 +00:00
|
|
|
IDPState: int32(idp.State),
|
2020-09-18 11:26:28 +00:00
|
|
|
Name: idp.Name,
|
2020-10-19 15:10:02 +00:00
|
|
|
StylingType: int32(idp.StylingType),
|
2020-09-18 11:26:28 +00:00
|
|
|
Sequence: idp.Sequence,
|
|
|
|
CreationDate: idp.CreationDate,
|
|
|
|
ChangeDate: idp.ChangeDate,
|
|
|
|
IDPProviderType: int32(idp.IDPProviderType),
|
|
|
|
IsOIDC: idp.IsOIDC,
|
|
|
|
OIDCClientID: idp.OIDCClientID,
|
|
|
|
OIDCClientSecret: idp.OIDCClientSecret,
|
|
|
|
OIDCIssuer: idp.OIDCIssuer,
|
|
|
|
OIDCScopes: idp.OIDCScopes,
|
|
|
|
OIDCIDPDisplayNameMapping: int32(idp.OIDCIDPDisplayNameMapping),
|
|
|
|
OIDCUsernameMapping: int32(idp.OIDCUsernameMapping),
|
2020-08-26 07:56:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-18 11:26:28 +00:00
|
|
|
func IDPConfigViewToModel(idp *IDPConfigView) *model.IDPConfigView {
|
2020-08-26 07:56:23 +00:00
|
|
|
return &model.IDPConfigView{
|
2020-09-18 11:26:28 +00:00
|
|
|
IDPConfigID: idp.IDPConfigID,
|
|
|
|
AggregateID: idp.AggregateID,
|
2020-09-23 14:52:19 +00:00
|
|
|
State: model.IDPConfigState(idp.IDPState),
|
2020-09-18 11:26:28 +00:00
|
|
|
Name: idp.Name,
|
2020-10-19 15:10:02 +00:00
|
|
|
StylingType: model.IDPStylingType(idp.StylingType),
|
2020-09-18 11:26:28 +00:00
|
|
|
Sequence: idp.Sequence,
|
|
|
|
CreationDate: idp.CreationDate,
|
|
|
|
ChangeDate: idp.ChangeDate,
|
|
|
|
IDPProviderType: model.IDPProviderType(idp.IDPProviderType),
|
|
|
|
IsOIDC: idp.IsOIDC,
|
|
|
|
OIDCClientID: idp.OIDCClientID,
|
|
|
|
OIDCClientSecret: idp.OIDCClientSecret,
|
|
|
|
OIDCIssuer: idp.OIDCIssuer,
|
|
|
|
OIDCScopes: idp.OIDCScopes,
|
|
|
|
OIDCIDPDisplayNameMapping: model.OIDCMappingField(idp.OIDCIDPDisplayNameMapping),
|
|
|
|
OIDCUsernameMapping: model.OIDCMappingField(idp.OIDCUsernameMapping),
|
2020-08-26 07:56:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func IdpConfigViewsToModel(idps []*IDPConfigView) []*model.IDPConfigView {
|
|
|
|
result := make([]*model.IDPConfigView, len(idps))
|
|
|
|
for i, idp := range idps {
|
2020-09-18 11:26:28 +00:00
|
|
|
result[i] = IDPConfigViewToModel(idp)
|
2020-08-26 07:56:23 +00:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *IDPConfigView) AppendEvent(providerType model.IDPProviderType, event *models.Event) (err error) {
|
|
|
|
i.Sequence = event.Sequence
|
|
|
|
i.ChangeDate = event.CreationDate
|
|
|
|
switch event.Type {
|
|
|
|
case es_model.IDPConfigAdded, org_es_model.IDPConfigAdded:
|
|
|
|
i.setRootData(event)
|
|
|
|
i.CreationDate = event.CreationDate
|
|
|
|
i.IDPProviderType = int32(providerType)
|
|
|
|
err = i.SetData(event)
|
|
|
|
case es_model.OIDCIDPConfigAdded, org_es_model.OIDCIDPConfigAdded:
|
|
|
|
i.IsOIDC = true
|
|
|
|
err = i.SetData(event)
|
|
|
|
case es_model.OIDCIDPConfigChanged, org_es_model.OIDCIDPConfigChanged,
|
|
|
|
es_model.IDPConfigChanged, org_es_model.IDPConfigChanged:
|
|
|
|
err = i.SetData(event)
|
|
|
|
case es_model.IDPConfigDeactivated, org_es_model.IDPConfigDeactivated:
|
|
|
|
i.IDPState = int32(model.IDPConfigStateInactive)
|
|
|
|
case es_model.IDPConfigReactivated, org_es_model.IDPConfigReactivated:
|
|
|
|
i.IDPState = int32(model.IDPConfigStateActive)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *IDPConfigView) setRootData(event *models.Event) {
|
|
|
|
r.AggregateID = event.AggregateID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *IDPConfigView) SetData(event *models.Event) error {
|
|
|
|
if err := json.Unmarshal(event.Data, r); err != nil {
|
|
|
|
logging.Log("EVEN-Smkld").WithError(err).Error("could not unmarshal event data")
|
|
|
|
return caos_errs.ThrowInternal(err, "MODEL-lub6s", "Could not unmarshal data")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|