2023-02-15 08:14:59 +00:00
|
|
|
package command
|
|
|
|
|
2023-02-28 20:20:58 +00:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
|
|
"github.com/zitadel/zitadel/internal/command/preparation"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/idp"
|
|
|
|
)
|
2023-02-15 08:14:59 +00:00
|
|
|
|
2023-02-24 14:16:06 +00:00
|
|
|
type GenericOAuthProvider struct {
|
|
|
|
Name string
|
|
|
|
ClientID string
|
|
|
|
ClientSecret string
|
|
|
|
AuthorizationEndpoint string
|
|
|
|
TokenEndpoint string
|
|
|
|
UserEndpoint string
|
|
|
|
Scopes []string
|
2023-03-03 10:38:49 +00:00
|
|
|
IDAttribute string
|
2023-02-24 14:16:06 +00:00
|
|
|
IDPOptions idp.Options
|
|
|
|
}
|
|
|
|
|
2023-02-27 15:32:18 +00:00
|
|
|
type GenericOIDCProvider struct {
|
|
|
|
Name string
|
|
|
|
Issuer string
|
|
|
|
ClientID string
|
|
|
|
ClientSecret string
|
|
|
|
Scopes []string
|
|
|
|
IDPOptions idp.Options
|
|
|
|
}
|
|
|
|
|
|
|
|
type JWTProvider struct {
|
|
|
|
Name string
|
|
|
|
Issuer string
|
|
|
|
JWTEndpoint string
|
|
|
|
KeyEndpoint string
|
|
|
|
HeaderName string
|
|
|
|
IDPOptions idp.Options
|
|
|
|
}
|
|
|
|
|
2023-02-21 17:18:28 +00:00
|
|
|
type GoogleProvider struct {
|
|
|
|
Name string
|
|
|
|
ClientID string
|
|
|
|
ClientSecret string
|
|
|
|
Scopes []string
|
|
|
|
IDPOptions idp.Options
|
|
|
|
}
|
|
|
|
|
2023-02-15 08:14:59 +00:00
|
|
|
type LDAPProvider struct {
|
|
|
|
Name string
|
|
|
|
Host string
|
|
|
|
Port string
|
|
|
|
TLS bool
|
|
|
|
BaseDN string
|
|
|
|
UserObjectClass string
|
|
|
|
UserUniqueAttribute string
|
|
|
|
Admin string
|
|
|
|
Password string
|
|
|
|
LDAPAttributes idp.LDAPAttributes
|
|
|
|
IDPOptions idp.Options
|
|
|
|
}
|
2023-02-28 20:20:58 +00:00
|
|
|
|
|
|
|
func ExistsIDP(ctx context.Context, filter preparation.FilterToQueryReducer, id, orgID string) (exists bool, err error) {
|
|
|
|
writeModel := NewOrgIDPRemoveWriteModel(orgID, id)
|
|
|
|
events, err := filter(ctx, writeModel.Query())
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(events) > 0 {
|
|
|
|
writeModel.AppendEvents(events...)
|
|
|
|
if err := writeModel.Reduce(); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return writeModel.State.Exists(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
instanceWriteModel := NewInstanceIDPRemoveWriteModel(authz.GetInstance(ctx).InstanceID(), id)
|
|
|
|
events, err = filter(ctx, instanceWriteModel.Query())
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(events) == 0 {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
instanceWriteModel.AppendEvents(events...)
|
|
|
|
if err := instanceWriteModel.Reduce(); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return instanceWriteModel.State.Exists(), nil
|
|
|
|
}
|