mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
062d153cfe
* partial work done * test IAM membership roles * org membership tests * console :(, translations and docs * fix integration test * fix tests * add EnableImpersonation to security policy API * fix integration test timestamp checking * add security policy tests and fix projections * add impersonation setting in console * add security settings to the settings v2 API * fix typo * move impersonation to instance --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
89 lines
2.4 KiB
Go
89 lines
2.4 KiB
Go
package instance
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
|
)
|
|
|
|
const (
|
|
securityPolicyPrefix = "policy.security."
|
|
SecurityPolicySetEventType = instanceEventTypePrefix + securityPolicyPrefix + "set"
|
|
)
|
|
|
|
type SecurityPolicySetEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
// Enabled is a legacy field which was used before for Iframe Embedding.
|
|
// It is kept so older events can still be reduced.
|
|
Enabled *bool `json:"enabled,omitempty"`
|
|
EnableIframeEmbedding *bool `json:"enable_iframe_embedding,omitempty"`
|
|
AllowedOrigins *[]string `json:"allowedOrigins,omitempty"`
|
|
EnableImpersonation *bool `json:"enable_impersonation,omitempty"`
|
|
}
|
|
|
|
func NewSecurityPolicySetEvent(
|
|
ctx context.Context,
|
|
aggregate *eventstore.Aggregate,
|
|
changes []SecurityPolicyChanges,
|
|
) (*SecurityPolicySetEvent, error) {
|
|
if len(changes) == 0 {
|
|
return nil, zerrors.ThrowPreconditionFailed(nil, "POLICY-EWsf3", "Errors.NoChangesFound")
|
|
}
|
|
event := &SecurityPolicySetEvent{
|
|
BaseEvent: *eventstore.NewBaseEventForPush(
|
|
ctx,
|
|
aggregate,
|
|
SecurityPolicySetEventType,
|
|
),
|
|
}
|
|
for _, change := range changes {
|
|
change(event)
|
|
}
|
|
return event, nil
|
|
}
|
|
|
|
type SecurityPolicyChanges func(event *SecurityPolicySetEvent)
|
|
|
|
func ChangeSecurityPolicyEnableIframeEmbedding(enabled bool) func(event *SecurityPolicySetEvent) {
|
|
return func(e *SecurityPolicySetEvent) {
|
|
e.EnableIframeEmbedding = &enabled
|
|
}
|
|
}
|
|
|
|
func ChangeSecurityPolicyAllowedOrigins(allowedOrigins []string) func(event *SecurityPolicySetEvent) {
|
|
return func(e *SecurityPolicySetEvent) {
|
|
if len(allowedOrigins) == 0 {
|
|
allowedOrigins = []string{}
|
|
}
|
|
e.AllowedOrigins = &allowedOrigins
|
|
}
|
|
}
|
|
|
|
func ChangeSecurityPolicyEnableImpersonation(enabled bool) func(event *SecurityPolicySetEvent) {
|
|
return func(e *SecurityPolicySetEvent) {
|
|
e.EnableImpersonation = &enabled
|
|
}
|
|
}
|
|
|
|
func (e *SecurityPolicySetEvent) Payload() interface{} {
|
|
return e
|
|
}
|
|
|
|
func (e *SecurityPolicySetEvent) UniqueConstraints() []*eventstore.UniqueConstraint {
|
|
return nil
|
|
}
|
|
|
|
func SecurityPolicySetEventMapper(event eventstore.Event) (eventstore.Event, error) {
|
|
securityPolicyAdded := &SecurityPolicySetEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
err := event.Unmarshal(securityPolicyAdded)
|
|
if err != nil {
|
|
return nil, zerrors.ThrowInternal(err, "IAM-soiwj", "unable to unmarshal oidc config added")
|
|
}
|
|
|
|
return securityPolicyAdded, nil
|
|
}
|