2024-04-09 17:21:21 +00:00
|
|
|
package action
|
2024-02-26 10:49:43 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/grpc/object/v2"
|
|
|
|
"github.com/zitadel/zitadel/internal/command"
|
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
2024-04-09 17:21:21 +00:00
|
|
|
action "github.com/zitadel/zitadel/pkg/grpc/action/v3alpha"
|
2024-02-26 10:49:43 +00:00
|
|
|
)
|
|
|
|
|
2024-04-09 17:21:21 +00:00
|
|
|
func (s *Server) ListExecutionFunctions(_ context.Context, _ *action.ListExecutionFunctionsRequest) (*action.ListExecutionFunctionsResponse, error) {
|
|
|
|
return &action.ListExecutionFunctionsResponse{
|
2024-02-26 10:49:43 +00:00
|
|
|
Functions: s.ListActionFunctions(),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2024-04-09 17:21:21 +00:00
|
|
|
func (s *Server) ListExecutionMethods(_ context.Context, _ *action.ListExecutionMethodsRequest) (*action.ListExecutionMethodsResponse, error) {
|
|
|
|
return &action.ListExecutionMethodsResponse{
|
2024-02-26 10:49:43 +00:00
|
|
|
Methods: s.ListGRPCMethods(),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2024-04-09 17:21:21 +00:00
|
|
|
func (s *Server) ListExecutionServices(_ context.Context, _ *action.ListExecutionServicesRequest) (*action.ListExecutionServicesResponse, error) {
|
|
|
|
return &action.ListExecutionServicesResponse{
|
2024-02-26 10:49:43 +00:00
|
|
|
Services: s.ListGRPCServices(),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2024-04-09 17:21:21 +00:00
|
|
|
func (s *Server) SetExecution(ctx context.Context, req *action.SetExecutionRequest) (*action.SetExecutionResponse, error) {
|
|
|
|
if err := checkExecutionEnabled(ctx); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-02-26 10:49:43 +00:00
|
|
|
set := &command.SetExecution{
|
|
|
|
Targets: req.GetTargets(),
|
|
|
|
Includes: req.GetIncludes(),
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
|
|
|
var details *domain.ObjectDetails
|
|
|
|
switch t := req.GetCondition().GetConditionType().(type) {
|
2024-04-09 17:21:21 +00:00
|
|
|
case *action.Condition_Request:
|
2024-02-26 10:49:43 +00:00
|
|
|
cond := &command.ExecutionAPICondition{
|
|
|
|
Method: t.Request.GetMethod(),
|
|
|
|
Service: t.Request.GetService(),
|
|
|
|
All: t.Request.GetAll(),
|
|
|
|
}
|
|
|
|
details, err = s.command.SetExecutionRequest(ctx, cond, set, authz.GetInstance(ctx).InstanceID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-04-09 17:21:21 +00:00
|
|
|
case *action.Condition_Response:
|
2024-02-26 10:49:43 +00:00
|
|
|
cond := &command.ExecutionAPICondition{
|
|
|
|
Method: t.Response.GetMethod(),
|
|
|
|
Service: t.Response.GetService(),
|
|
|
|
All: t.Response.GetAll(),
|
|
|
|
}
|
|
|
|
details, err = s.command.SetExecutionResponse(ctx, cond, set, authz.GetInstance(ctx).InstanceID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-04-09 17:21:21 +00:00
|
|
|
case *action.Condition_Event:
|
2024-02-26 10:49:43 +00:00
|
|
|
cond := &command.ExecutionEventCondition{
|
|
|
|
Event: t.Event.GetEvent(),
|
|
|
|
Group: t.Event.GetGroup(),
|
|
|
|
All: t.Event.GetAll(),
|
|
|
|
}
|
|
|
|
details, err = s.command.SetExecutionEvent(ctx, cond, set, authz.GetInstance(ctx).InstanceID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-04-09 17:21:21 +00:00
|
|
|
case *action.Condition_Function:
|
2024-02-26 10:49:43 +00:00
|
|
|
details, err = s.command.SetExecutionFunction(ctx, command.ExecutionFunctionCondition(t.Function), set, authz.GetInstance(ctx).InstanceID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2024-04-09 17:21:21 +00:00
|
|
|
return &action.SetExecutionResponse{
|
2024-02-26 10:49:43 +00:00
|
|
|
Details: object.DomainToDetailsPb(details),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2024-04-09 17:21:21 +00:00
|
|
|
func (s *Server) DeleteExecution(ctx context.Context, req *action.DeleteExecutionRequest) (*action.DeleteExecutionResponse, error) {
|
|
|
|
if err := checkExecutionEnabled(ctx); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-02-26 10:49:43 +00:00
|
|
|
var err error
|
|
|
|
var details *domain.ObjectDetails
|
|
|
|
switch t := req.GetCondition().GetConditionType().(type) {
|
2024-04-09 17:21:21 +00:00
|
|
|
case *action.Condition_Request:
|
2024-02-26 10:49:43 +00:00
|
|
|
cond := &command.ExecutionAPICondition{
|
|
|
|
Method: t.Request.GetMethod(),
|
|
|
|
Service: t.Request.GetService(),
|
|
|
|
All: t.Request.GetAll(),
|
|
|
|
}
|
|
|
|
details, err = s.command.DeleteExecutionRequest(ctx, cond, authz.GetInstance(ctx).InstanceID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-04-09 17:21:21 +00:00
|
|
|
case *action.Condition_Response:
|
2024-02-26 10:49:43 +00:00
|
|
|
cond := &command.ExecutionAPICondition{
|
|
|
|
Method: t.Response.GetMethod(),
|
|
|
|
Service: t.Response.GetService(),
|
|
|
|
All: t.Response.GetAll(),
|
|
|
|
}
|
|
|
|
details, err = s.command.DeleteExecutionResponse(ctx, cond, authz.GetInstance(ctx).InstanceID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-04-09 17:21:21 +00:00
|
|
|
case *action.Condition_Event:
|
2024-02-26 10:49:43 +00:00
|
|
|
cond := &command.ExecutionEventCondition{
|
|
|
|
Event: t.Event.GetEvent(),
|
|
|
|
Group: t.Event.GetGroup(),
|
|
|
|
All: t.Event.GetAll(),
|
|
|
|
}
|
|
|
|
details, err = s.command.DeleteExecutionEvent(ctx, cond, authz.GetInstance(ctx).InstanceID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-04-09 17:21:21 +00:00
|
|
|
case *action.Condition_Function:
|
2024-02-26 10:49:43 +00:00
|
|
|
details, err = s.command.DeleteExecutionFunction(ctx, command.ExecutionFunctionCondition(t.Function), authz.GetInstance(ctx).InstanceID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2024-04-09 17:21:21 +00:00
|
|
|
return &action.DeleteExecutionResponse{
|
2024-02-26 10:49:43 +00:00
|
|
|
Details: object.DomainToDetailsPb(details),
|
|
|
|
}, nil
|
|
|
|
}
|