executor

package
v1.0.58 Latest Latest
Warning

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

Go to latest
Published: Mar 11, 2023 License: MIT Imports: 21 Imported by: 0

Documentation

Overview

Package executor calls UiPath services.

Index

Constants

View Source
const NotConfiguredErrorTemplate = `` /* 141-byte string literal not displayed */

Variables

This section is empty.

Functions

This section is empty.

Types

type ExecutionContext

type ExecutionContext struct {
	Organization string
	Tenant       string
	Method       string
	BaseUri      url.URL
	Route        string
	ContentType  string
	Input        *FileReference
	Parameters   ExecutionContextParameters
	AuthConfig   config.AuthConfig
	Insecure     bool
	Debug        bool
	Plugin       plugin.CommandPlugin
}

The ExecutionContext provides all the data needed by the executor to construct the HTTP request including URL, headers and body.

func NewExecutionContext

func NewExecutionContext(
	organization string,
	tenant string,
	method string,
	uri url.URL,
	route string,
	contentType string,
	input *FileReference,
	parameters ExecutionContextParameters,
	authConfig config.AuthConfig,
	insecure bool,
	debug bool,
	plugin plugin.CommandPlugin) *ExecutionContext

type ExecutionContextParameters added in v1.0.39

type ExecutionContextParameters struct {
	Path   []ExecutionParameter
	Query  []ExecutionParameter
	Header []ExecutionParameter
	Body   []ExecutionParameter
	Form   []ExecutionParameter
}

The ExecutionContextParameters contains list of parameters which are used by the executor to dynamically build the request.

func NewExecutionContextParameters added in v1.0.39

func NewExecutionContextParameters(
	path []ExecutionParameter,
	query []ExecutionParameter,
	header []ExecutionParameter,
	body []ExecutionParameter,
	form []ExecutionParameter) *ExecutionContextParameters

type ExecutionParameter

type ExecutionParameter struct {
	Name  string
	Value interface{}
}

An ExecutionParameter is a value which is used by the executor to build the request. Parameter values are typicall provided by multiple sources like config files, command line arguments and environment variables.

func NewExecutionParameter

func NewExecutionParameter(name string, value interface{}) *ExecutionParameter

type Executor

type Executor interface {
	Call(context ExecutionContext, writer output.OutputWriter, logger log.Logger) error
}

The Executor interface is an abstraction for carrying out CLI commands.

The ExecutionContext provides all the data needed to execute a command. The OutputWriter should be used to output the result of the command. The Logger should be used for providing additional information when running a command.

type FileReference

type FileReference struct {
	// contains filtered or unexported fields
}

A FileReference provides access to binary data usually referencing a file on disk. This allows the executor to stream large files directly when sending the HTTP request instead of loading them in memory first.

The FileReference can also be initialized from byte array in case the data already resides in memory.

func NewFileReference

func NewFileReference(path string) *FileReference

func NewFileReferenceData added in v1.0.23

func NewFileReferenceData(filename string, data []byte) *FileReference

func (FileReference) Data

func (f FileReference) Data() (io.ReadCloser, int64, error)

func (FileReference) Filename

func (f FileReference) Filename() string

type HttpExecutor

type HttpExecutor struct {
	// contains filtered or unexported fields
}

The HttpExecutor implements the Executor interface and constructs HTTP request from the given command line parameters and configurations.

func NewHttpExecutor added in v1.0.57

func NewHttpExecutor(authenticators []auth.Authenticator) *HttpExecutor

func (HttpExecutor) Call

func (e HttpExecutor) Call(context ExecutionContext, writer output.OutputWriter, logger log.Logger) error

type PluginExecutor added in v1.0.3

type PluginExecutor struct {
	// contains filtered or unexported fields
}

The PluginExecutor implements the Executor interface and invokes the registered plugin for the executed command. The plugin takes care of sending the HTTP request or performing other operations.

func NewPluginExecutor added in v1.0.57

func NewPluginExecutor(authenticators []auth.Authenticator) *PluginExecutor

func (PluginExecutor) Call added in v1.0.3

func (e PluginExecutor) Call(context ExecutionContext, writer output.OutputWriter, logger log.Logger) error

Jump to

Keyboard shortcuts

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