mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
3eb909c4b4
* add setup steps * refactoring * omitempty * cleanup * begin org * create org * setup org * setup org * merge * fixes * fixes * fixes * add project * add oidc application * fix app creation * add resourceOwner to writemodels * resource owner * cleanup * global org, iam project and iam member in setup * logs * logs * logs * cleanup * Update internal/v2/command/project.go Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> * check project state * add org domain commands * add org status changes and member commands * fixes * policies * login policy * fix iam project event * mapper * label policy * change to command * fix * fix * handle change event differently and lot of fixes * fixes * changedEvent handling Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
126 lines
3.0 KiB
Go
126 lines
3.0 KiB
Go
package policy
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
"github.com/caos/zitadel/internal/eventstore/v2/repository"
|
|
)
|
|
|
|
const (
|
|
LabelPolicyAddedEventType = "policy.label.added"
|
|
LabelPolicyChangedEventType = "policy.label.changed"
|
|
LabelPolicyRemovedEventType = "policy.label.removed"
|
|
)
|
|
|
|
type LabelPolicyAddedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
PrimaryColor string `json:"primaryColor,omitempty"`
|
|
SecondaryColor string `json:"secondaryColor,omitempty"`
|
|
}
|
|
|
|
func (e *LabelPolicyAddedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func NewLabelPolicyAddedEvent(
|
|
base *eventstore.BaseEvent,
|
|
primaryColor,
|
|
secondaryColor string,
|
|
) *LabelPolicyAddedEvent {
|
|
|
|
return &LabelPolicyAddedEvent{
|
|
BaseEvent: *base,
|
|
PrimaryColor: primaryColor,
|
|
SecondaryColor: secondaryColor,
|
|
}
|
|
}
|
|
|
|
func LabelPolicyAddedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
e := &LabelPolicyAddedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := json.Unmarshal(event.Data, e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "POLIC-puqv4", "unable to unmarshal label policy")
|
|
}
|
|
|
|
return e, nil
|
|
}
|
|
|
|
type LabelPolicyChangedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
|
|
PrimaryColor *string `json:"primaryColor,omitempty"`
|
|
SecondaryColor *string `json:"secondaryColor,omitempty"`
|
|
}
|
|
|
|
func (e *LabelPolicyChangedEvent) Data() interface{} {
|
|
return e
|
|
}
|
|
|
|
func NewLabelPolicyChangedEvent(
|
|
base *eventstore.BaseEvent,
|
|
changes []LabelPolicyChanges,
|
|
) (*LabelPolicyChangedEvent, error) {
|
|
if len(changes) == 0 {
|
|
return nil, errors.ThrowPreconditionFailed(nil, "POLICY-Asfd3", "Errors.NoChangesFound")
|
|
}
|
|
changeEvent := &LabelPolicyChangedEvent{
|
|
BaseEvent: *base,
|
|
}
|
|
for _, change := range changes {
|
|
change(changeEvent)
|
|
}
|
|
return changeEvent, nil
|
|
}
|
|
|
|
type LabelPolicyChanges func(*LabelPolicyChangedEvent)
|
|
|
|
func ChangePrimaryColor(primaryColor string) func(*LabelPolicyChangedEvent) {
|
|
return func(e *LabelPolicyChangedEvent) {
|
|
e.PrimaryColor = &primaryColor
|
|
}
|
|
}
|
|
|
|
func ChangeSecondaryColor(secondaryColor string) func(*LabelPolicyChangedEvent) {
|
|
return func(e *LabelPolicyChangedEvent) {
|
|
e.SecondaryColor = &secondaryColor
|
|
}
|
|
}
|
|
|
|
func LabelPolicyChangedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
e := &LabelPolicyChangedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}
|
|
|
|
err := json.Unmarshal(event.Data, e)
|
|
if err != nil {
|
|
return nil, errors.ThrowInternal(err, "POLIC-qhfFb", "unable to unmarshal label policy")
|
|
}
|
|
|
|
return e, nil
|
|
}
|
|
|
|
type LabelPolicyRemovedEvent struct {
|
|
eventstore.BaseEvent `json:"-"`
|
|
}
|
|
|
|
func (e *LabelPolicyRemovedEvent) Data() interface{} {
|
|
return nil
|
|
}
|
|
|
|
func NewLabelPolicyRemovedEvent(base *eventstore.BaseEvent) *LabelPolicyRemovedEvent {
|
|
return &LabelPolicyRemovedEvent{
|
|
BaseEvent: *base,
|
|
}
|
|
}
|
|
|
|
func LabelPolicyRemovedEventMapper(event *repository.Event) (eventstore.EventReader, error) {
|
|
return &LabelPolicyRemovedEvent{
|
|
BaseEvent: *eventstore.BaseEventFromRepo(event),
|
|
}, nil
|
|
}
|