mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
f680dd934d
* chore: rename package errors to zerrors * rename package errors to gerrors * fix error related linting issues * fix zitadel error assertion * fix gosimple linting issues * fix deprecated linting issues * resolve gci linting issues * fix import structure --------- Co-authored-by: Elio Bischof <elio@zitadel.com>
84 lines
3.1 KiB
Go
84 lines
3.1 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
"github.com/zitadel/zitadel/internal/repository/org"
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
|
)
|
|
|
|
func (c *Commands) ClearFlow(ctx context.Context, flowType domain.FlowType, resourceOwner string) (*domain.ObjectDetails, error) {
|
|
if !flowType.Valid() || resourceOwner == "" {
|
|
return nil, zerrors.ThrowInvalidArgument(nil, "COMMAND-Dfw2h", "Errors.Flow.FlowTypeMissing")
|
|
}
|
|
existingFlow, err := c.getOrgFlowWriteModelByType(ctx, flowType, resourceOwner)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(existingFlow.Triggers) == 0 {
|
|
return nil, zerrors.ThrowPreconditionFailed(nil, "COMMAND-DgGh3", "Errors.Flow.Empty")
|
|
}
|
|
orgAgg := OrgAggregateFromWriteModel(&existingFlow.WriteModel)
|
|
pushedEvents, err := c.eventstore.Push(ctx, org.NewFlowClearedEvent(ctx, orgAgg, flowType))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
err = AppendAndReduce(existingFlow, pushedEvents...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return writeModelToObjectDetails(&existingFlow.WriteModel), nil
|
|
}
|
|
|
|
func (c *Commands) SetTriggerActions(ctx context.Context, flowType domain.FlowType, triggerType domain.TriggerType, actionIDs []string, resourceOwner string) (*domain.ObjectDetails, error) {
|
|
if !flowType.Valid() || !triggerType.Valid() || resourceOwner == "" {
|
|
return nil, zerrors.ThrowInvalidArgument(nil, "COMMAND-Dfhj5", "Errors.Flow.FlowTypeMissing")
|
|
}
|
|
if !flowType.HasTrigger(triggerType) {
|
|
return nil, zerrors.ThrowInvalidArgument(nil, "COMMAND-Dfgh6", "Errors.Flow.WrongTriggerType")
|
|
}
|
|
existingFlow, err := c.getOrgFlowWriteModelByType(ctx, flowType, resourceOwner)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if reflect.DeepEqual(existingFlow.Triggers[triggerType], actionIDs) {
|
|
return nil, zerrors.ThrowPreconditionFailed(nil, "COMMAND-Nfh52", "Errors.Flow.NoChanges")
|
|
}
|
|
if len(actionIDs) > 0 {
|
|
exists, err := c.actionsIDsExist(ctx, actionIDs, resourceOwner)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if !exists {
|
|
return nil, zerrors.ThrowPreconditionFailed(nil, "COMMAND-dg422", "Errors.Flow.ActionIDsNotExist")
|
|
}
|
|
}
|
|
orgAgg := OrgAggregateFromWriteModel(&existingFlow.WriteModel)
|
|
pushedEvents, err := c.eventstore.Push(ctx, org.NewTriggerActionsSetEvent(ctx, orgAgg, flowType, triggerType, actionIDs))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
err = AppendAndReduce(existingFlow, pushedEvents...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return writeModelToObjectDetails(&existingFlow.WriteModel), nil
|
|
}
|
|
|
|
func (c *Commands) getOrgFlowWriteModelByType(ctx context.Context, flowType domain.FlowType, resourceOwner string) (*OrgFlowWriteModel, error) {
|
|
flowWriteModel := NewOrgFlowWriteModel(flowType, resourceOwner)
|
|
err := c.eventstore.FilterToQueryReducer(ctx, flowWriteModel)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return flowWriteModel, nil
|
|
}
|
|
|
|
func (c *Commands) actionsIDsExist(ctx context.Context, ids []string, resourceOwner string) (bool, error) {
|
|
actionIDsModel := NewActionsExistModel(ids, resourceOwner)
|
|
err := c.eventstore.FilterToQueryReducer(ctx, actionIDsModel)
|
|
return len(actionIDsModel.actionIDs) == len(actionIDsModel.checkedIDs), err
|
|
}
|