mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
264 lines
8.8 KiB
Go
264 lines
8.8 KiB
Go
package management
|
|
|
|
import (
|
|
"github.com/caos/logging"
|
|
caos_errors "github.com/caos/zitadel/internal/errors"
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
"github.com/caos/zitadel/pkg/grpc/management"
|
|
"github.com/golang/protobuf/ptypes"
|
|
"strconv"
|
|
)
|
|
|
|
func createOidcIdpToModel(idp *management.OidcIdpConfigCreate) *iam_model.IDPConfig {
|
|
return &iam_model.IDPConfig{
|
|
Name: idp.Name,
|
|
StylingType: idpConfigStylingTypeToModel(idp.StylingType),
|
|
Type: iam_model.IDPConfigTypeOIDC,
|
|
OIDCConfig: &iam_model.OIDCIDPConfig{
|
|
ClientID: idp.ClientId,
|
|
ClientSecretString: idp.ClientSecret,
|
|
Issuer: idp.Issuer,
|
|
Scopes: idp.Scopes,
|
|
IDPDisplayNameMapping: oidcMappingFieldToModel(idp.IdpDisplayNameMapping),
|
|
UsernameMapping: oidcMappingFieldToModel(idp.UsernameMapping),
|
|
},
|
|
}
|
|
}
|
|
|
|
func updateIdpToModel(idp *management.IdpUpdate) *iam_model.IDPConfig {
|
|
return &iam_model.IDPConfig{
|
|
IDPConfigID: idp.Id,
|
|
Name: idp.Name,
|
|
StylingType: idpConfigStylingTypeToModel(idp.StylingType),
|
|
}
|
|
}
|
|
|
|
func updateOidcIdpToModel(idp *management.OidcIdpConfigUpdate) *iam_model.OIDCIDPConfig {
|
|
return &iam_model.OIDCIDPConfig{
|
|
IDPConfigID: idp.IdpId,
|
|
ClientID: idp.ClientId,
|
|
ClientSecretString: idp.ClientSecret,
|
|
Issuer: idp.Issuer,
|
|
Scopes: idp.Scopes,
|
|
IDPDisplayNameMapping: oidcMappingFieldToModel(idp.IdpDisplayNameMapping),
|
|
UsernameMapping: oidcMappingFieldToModel(idp.UsernameMapping),
|
|
}
|
|
}
|
|
|
|
func idpFromModel(idp *iam_model.IDPConfig) *management.Idp {
|
|
creationDate, err := ptypes.TimestampProto(idp.CreationDate)
|
|
logging.Log("GRPC-8dju8").OnError(err).Debug("date parse failed")
|
|
|
|
changeDate, err := ptypes.TimestampProto(idp.ChangeDate)
|
|
logging.Log("GRPC-Dsj8i").OnError(err).Debug("date parse failed")
|
|
|
|
return &management.Idp{
|
|
Id: idp.IDPConfigID,
|
|
CreationDate: creationDate,
|
|
ChangeDate: changeDate,
|
|
Sequence: idp.Sequence,
|
|
Name: idp.Name,
|
|
StylingType: idpConfigStylingTypeFromModel(idp.StylingType),
|
|
State: idpConfigStateFromModel(idp.State),
|
|
IdpConfig: idpConfigFromModel(idp),
|
|
}
|
|
}
|
|
|
|
func idpViewFromModel(idp *iam_model.IDPConfigView) *management.IdpView {
|
|
creationDate, err := ptypes.TimestampProto(idp.CreationDate)
|
|
logging.Log("GRPC-8dju8").OnError(err).Debug("date parse failed")
|
|
|
|
changeDate, err := ptypes.TimestampProto(idp.ChangeDate)
|
|
logging.Log("GRPC-Dsj8i").OnError(err).Debug("date parse failed")
|
|
|
|
return &management.IdpView{
|
|
Id: idp.IDPConfigID,
|
|
CreationDate: creationDate,
|
|
ChangeDate: changeDate,
|
|
Sequence: idp.Sequence,
|
|
ProviderType: idpProviderTypeFromModel(idp.IDPProviderType),
|
|
Name: idp.Name,
|
|
StylingType: idpConfigStylingTypeFromModel(idp.StylingType),
|
|
State: idpConfigStateFromModel(idp.State),
|
|
IdpConfigView: idpConfigViewFromModel(idp),
|
|
}
|
|
}
|
|
|
|
func idpConfigFromModel(idp *iam_model.IDPConfig) *management.Idp_OidcConfig {
|
|
if idp.Type == iam_model.IDPConfigTypeOIDC {
|
|
return &management.Idp_OidcConfig{
|
|
OidcConfig: oidcIdpConfigFromModel(idp.OIDCConfig),
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func oidcIdpConfigFromModel(idp *iam_model.OIDCIDPConfig) *management.OidcIdpConfig {
|
|
return &management.OidcIdpConfig{
|
|
ClientId: idp.ClientID,
|
|
Issuer: idp.Issuer,
|
|
Scopes: idp.Scopes,
|
|
IdpDisplayNameMapping: oidcMappingFieldFromModel(idp.IDPDisplayNameMapping),
|
|
UsernameMapping: oidcMappingFieldFromModel(idp.UsernameMapping),
|
|
}
|
|
}
|
|
|
|
func idpConfigViewFromModel(idp *iam_model.IDPConfigView) *management.IdpView_OidcConfig {
|
|
if idp.IsOIDC {
|
|
return &management.IdpView_OidcConfig{
|
|
OidcConfig: oidcIdpConfigViewFromModel(idp),
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func oidcIdpConfigViewFromModel(idp *iam_model.IDPConfigView) *management.OidcIdpConfigView {
|
|
return &management.OidcIdpConfigView{
|
|
ClientId: idp.OIDCClientID,
|
|
Issuer: idp.OIDCIssuer,
|
|
Scopes: idp.OIDCScopes,
|
|
IdpDisplayNameMapping: oidcMappingFieldFromModel(idp.OIDCIDPDisplayNameMapping),
|
|
UsernameMapping: oidcMappingFieldFromModel(idp.OIDCUsernameMapping),
|
|
}
|
|
}
|
|
|
|
func idpConfigStateFromModel(state iam_model.IDPConfigState) management.IdpState {
|
|
switch state {
|
|
case iam_model.IDPConfigStateActive:
|
|
return management.IdpState_IDPCONFIGSTATE_ACTIVE
|
|
case iam_model.IDPConfigStateInactive:
|
|
return management.IdpState_IDPCONFIGSTATE_INACTIVE
|
|
default:
|
|
return management.IdpState_IDPCONFIGSTATE_UNSPECIFIED
|
|
}
|
|
}
|
|
|
|
func idpConfigSearchRequestToModel(request *management.IdpSearchRequest) (*iam_model.IDPConfigSearchRequest, error) {
|
|
convertedSearchRequest := &iam_model.IDPConfigSearchRequest{
|
|
Limit: request.Limit,
|
|
Offset: request.Offset,
|
|
}
|
|
convertedQueries, err := idpConfigSearchQueriesToModel(request.Queries)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
convertedSearchRequest.Queries = convertedQueries
|
|
return convertedSearchRequest, nil
|
|
}
|
|
|
|
func idpConfigSearchQueriesToModel(queries []*management.IdpSearchQuery) ([]*iam_model.IDPConfigSearchQuery, error) {
|
|
modelQueries := make([]*iam_model.IDPConfigSearchQuery, len(queries))
|
|
for i, query := range queries {
|
|
converted, err := idpConfigSearchQueryToModel(query)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
modelQueries[i] = converted
|
|
}
|
|
|
|
return modelQueries, nil
|
|
}
|
|
|
|
func idpConfigSearchQueryToModel(query *management.IdpSearchQuery) (*iam_model.IDPConfigSearchQuery, error) {
|
|
converted := &iam_model.IDPConfigSearchQuery{
|
|
Key: idpConfigSearchKeyToModel(query.Key),
|
|
Method: searchMethodToModel(query.Method),
|
|
Value: query.Value,
|
|
}
|
|
if query.Key != management.IdpSearchKey_IDPSEARCHKEY_PROVIDER_TYPE {
|
|
return converted, nil
|
|
}
|
|
value, err := idpProviderTypeStringToModel(query.Value)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
converted.Value = value
|
|
return converted, nil
|
|
}
|
|
|
|
func idpConfigSearchKeyToModel(key management.IdpSearchKey) iam_model.IDPConfigSearchKey {
|
|
switch key {
|
|
case management.IdpSearchKey_IDPSEARCHKEY_IDP_CONFIG_ID:
|
|
return iam_model.IDPConfigSearchKeyIdpConfigID
|
|
case management.IdpSearchKey_IDPSEARCHKEY_NAME:
|
|
return iam_model.IDPConfigSearchKeyName
|
|
case management.IdpSearchKey_IDPSEARCHKEY_PROVIDER_TYPE:
|
|
return iam_model.IDPConfigSearchKeyIdpProviderType
|
|
default:
|
|
return iam_model.IDPConfigSearchKeyUnspecified
|
|
}
|
|
}
|
|
|
|
func idpConfigSearchResponseFromModel(resp *iam_model.IDPConfigSearchResponse) *management.IdpSearchResponse {
|
|
timestamp, err := ptypes.TimestampProto(resp.Timestamp)
|
|
logging.Log("GRPC-KSi8c").OnError(err).Debug("date parse failed")
|
|
return &management.IdpSearchResponse{
|
|
Limit: resp.Limit,
|
|
Offset: resp.Offset,
|
|
TotalResult: resp.TotalResult,
|
|
Result: idpConfigsFromView(resp.Result),
|
|
ProcessedSequence: resp.Sequence,
|
|
ViewTimestamp: timestamp,
|
|
}
|
|
}
|
|
|
|
func idpConfigsFromView(viewIdps []*iam_model.IDPConfigView) []*management.IdpView {
|
|
idps := make([]*management.IdpView, len(viewIdps))
|
|
for i, idp := range viewIdps {
|
|
idps[i] = idpViewFromModel(idp)
|
|
}
|
|
return idps
|
|
}
|
|
|
|
func oidcMappingFieldFromModel(field iam_model.OIDCMappingField) management.OIDCMappingField {
|
|
switch field {
|
|
case iam_model.OIDCMappingFieldPreferredLoginName:
|
|
return management.OIDCMappingField_OIDCMAPPINGFIELD_PREFERRED_USERNAME
|
|
case iam_model.OIDCMappingFieldEmail:
|
|
return management.OIDCMappingField_OIDCMAPPINGFIELD_EMAIL
|
|
default:
|
|
return management.OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
|
|
}
|
|
}
|
|
|
|
func oidcMappingFieldToModel(field management.OIDCMappingField) iam_model.OIDCMappingField {
|
|
switch field {
|
|
case management.OIDCMappingField_OIDCMAPPINGFIELD_PREFERRED_USERNAME:
|
|
return iam_model.OIDCMappingFieldPreferredLoginName
|
|
case management.OIDCMappingField_OIDCMAPPINGFIELD_EMAIL:
|
|
return iam_model.OIDCMappingFieldEmail
|
|
default:
|
|
return iam_model.OIDCMappingFieldUnspecified
|
|
}
|
|
}
|
|
|
|
func idpConfigStylingTypeFromModel(stylingType iam_model.IDPStylingType) management.IdpStylingType {
|
|
switch stylingType {
|
|
case iam_model.IDPStylingTypeGoogle:
|
|
return management.IdpStylingType_IDPSTYLINGTYPE_GOOGLE
|
|
default:
|
|
return management.IdpStylingType_IDPSTYLINGTYPE_UNSPECIFIED
|
|
}
|
|
}
|
|
|
|
func idpConfigStylingTypeToModel(stylingType management.IdpStylingType) iam_model.IDPStylingType {
|
|
switch stylingType {
|
|
case management.IdpStylingType_IDPSTYLINGTYPE_GOOGLE:
|
|
return iam_model.IDPStylingTypeGoogle
|
|
default:
|
|
return iam_model.IDPStylingTypeUnspecified
|
|
}
|
|
}
|
|
|
|
func idpProviderTypeStringToModel(providerType string) (iam_model.IDPProviderType, error) {
|
|
i, _ := strconv.ParseInt(providerType, 10, 32)
|
|
switch management.IdpProviderType(i) {
|
|
case management.IdpProviderType_IDPPROVIDERTYPE_SYSTEM:
|
|
return iam_model.IDPProviderTypeSystem, nil
|
|
case management.IdpProviderType_IDPPROVIDERTYPE_ORG:
|
|
return iam_model.IDPProviderTypeOrg, nil
|
|
default:
|
|
return 0, caos_errors.ThrowPreconditionFailed(nil, "MGMT-6is9f", "Errors.Org.IDP.InvalidSearchQuery")
|
|
}
|
|
}
|