workflow

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 31, 2023 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Commands

type Commands struct {
	Create CreateHandler
	Delete DeleteHandler
	Update UpdateHandler
}

func NewCommands

func NewCommands(repo workflow.Repository, workflowReadModel workflowquery.ReadModel, factory *workflow.Factory, workspaceReadModel workspace.WorkspaceReadModel, bus eventbus.EventBus, womtoolPath string) *Commands

type CreateCommand

type CreateCommand struct {
	ID               string
	Name             string
	Description      *string
	WorkspaceID      string
	Language         string
	Source           string
	URL              string
	Tag              string
	Token            string
	MainWorkflowPath string
}

type CreateHandler

type CreateHandler interface {
	Handle(context.Context, *CreateCommand) (string, error)
}

func NewCreateHandler

func NewCreateHandler(service workflow.Service, workflowReadModel workflowquery.ReadModel, workspaceReadModel workspacequery.WorkspaceReadModel) CreateHandler

type DeleteCommand

type DeleteCommand struct {
	ID          string `validate:"required"`
	WorkspaceID string `validate:"required"`
}

type DeleteHandler

type DeleteHandler interface {
	Handle(ctx context.Context, cmd *DeleteCommand) error
}

func NewDeleteHandler

func NewDeleteHandler(workflowService workflow.Service, workspaceReadModel workspacequery.WorkspaceReadModel) DeleteHandler

type UpdateCommand

type UpdateCommand struct {
	WorkspaceID      string
	ID               string
	Name             *string
	Description      *string
	Language         *string
	Source           *string
	URL              *string
	Tag              *string
	Token            *string
	MainWorkflowPath *string
}

type UpdateHandler

type UpdateHandler interface {
	Handle(ctx context.Context, cmd *UpdateCommand) error
}

func NewUpdateHandler

func NewUpdateHandler(workflowService workflow.Service, workflowReadModel workflowquery.ReadModel, workspaceReadModel workspacequery.WorkspaceReadModel) UpdateHandler

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL