mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 08:49:13 +00:00
ff9af1704f
* feat: add oauth attributes to oidc idp configuration * feat: return idpconfig id on create idp * feat: tests * feat: descriptions * feat: docs * feat: tests
110 lines
2.3 KiB
Go
110 lines
2.3 KiB
Go
package domain
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
es_models "github.com/caos/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type IDPConfig struct {
|
|
es_models.ObjectRoot
|
|
IDPConfigID string
|
|
Type IDPConfigType
|
|
Name string
|
|
StylingType IDPConfigStylingType
|
|
State IDPConfigState
|
|
OIDCConfig *OIDCIDPConfig
|
|
}
|
|
|
|
type IDPConfigView struct {
|
|
AggregateID string
|
|
IDPConfigID string
|
|
Name string
|
|
StylingType IDPConfigStylingType
|
|
State IDPConfigState
|
|
CreationDate time.Time
|
|
ChangeDate time.Time
|
|
Sequence uint64
|
|
IDPProviderType IdentityProviderType
|
|
|
|
IsOIDC bool
|
|
OIDCClientID string
|
|
OIDCClientSecret *crypto.CryptoValue
|
|
OIDCIssuer string
|
|
OIDCScopes []string
|
|
OIDCIDPDisplayNameMapping OIDCMappingField
|
|
OIDCUsernameMapping OIDCMappingField
|
|
OAuthAuthorizationEndpoint string
|
|
OAuthTokenEndpoint string
|
|
}
|
|
|
|
type OIDCIDPConfig struct {
|
|
es_models.ObjectRoot
|
|
IDPConfigID string
|
|
ClientID string
|
|
ClientSecret *crypto.CryptoValue
|
|
ClientSecretString string
|
|
Issuer string
|
|
AuthorizationEndpoint string
|
|
TokenEndpoint string
|
|
Scopes []string
|
|
IDPDisplayNameMapping OIDCMappingField
|
|
UsernameMapping OIDCMappingField
|
|
}
|
|
|
|
type IDPConfigType int32
|
|
|
|
const (
|
|
IDPConfigTypeOIDC IDPConfigType = iota
|
|
IDPConfigTypeSAML
|
|
|
|
//count is for validation
|
|
idpConfigTypeCount
|
|
)
|
|
|
|
func (f IDPConfigType) Valid() bool {
|
|
return f >= 0 && f < idpConfigTypeCount
|
|
}
|
|
|
|
type IDPConfigState int32
|
|
|
|
const (
|
|
IDPConfigStateUnspecified IDPConfigState = iota
|
|
IDPConfigStateActive
|
|
IDPConfigStateInactive
|
|
IDPConfigStateRemoved
|
|
|
|
idpConfigStateCount
|
|
)
|
|
|
|
func (s IDPConfigState) Valid() bool {
|
|
return s >= 0 && s < idpConfigStateCount
|
|
}
|
|
|
|
func (s IDPConfigState) Exists() bool {
|
|
return s != IDPConfigStateUnspecified || s == IDPConfigStateRemoved
|
|
}
|
|
|
|
type IDPConfigStylingType int32
|
|
|
|
const (
|
|
IDPConfigStylingTypeUnspecified IDPConfigStylingType = iota
|
|
IDPConfigStylingTypeGoogle
|
|
|
|
idpConfigStylingTypeCount
|
|
)
|
|
|
|
func (f IDPConfigStylingType) Valid() bool {
|
|
return f >= 0 && f < idpConfigStylingTypeCount
|
|
}
|
|
|
|
func (st IDPConfigStylingType) GetCSSClass() string {
|
|
switch st {
|
|
case IDPConfigStylingTypeGoogle:
|
|
return "google"
|
|
default:
|
|
return ""
|
|
}
|
|
}
|