u_http_client

package
v1.3.0 Latest Latest
Warning

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

Go to latest
Published: Apr 28, 2023 License: MIT Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type HttpClient

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

func NewHttpClient

func NewHttpClient(httpExecutor HttpExecutor, timeout time.Duration) *HttpClient

func NewRetryHttpClient

func NewRetryHttpClient(httpExecutor HttpExecutor, timeout time.Duration, retry uint64) *HttpClient

func (*HttpClient) Do

func (c *HttpClient) Do(ctx context.Context, method string) (*HttpResponse, error)

func (*HttpClient) DoFormEncoding

func (c *HttpClient) DoFormEncoding(ctx context.Context, method string) (*HttpResponse, error)

func (*HttpClient) DoFormMultipart

func (c *HttpClient) DoFormMultipart(ctx context.Context) (*HttpResponse, error)

func (*HttpClient) URL

func (c *HttpClient) URL() string

func (*HttpClient) WithBasicAuth

func (c *HttpClient) WithBasicAuth(username string, password string) *HttpClient

func (*HttpClient) WithBearerAuth

func (c *HttpClient) WithBearerAuth(token string, addPrefix bool) *HttpClient

func (*HttpClient) WithHeaders

func (c *HttpClient) WithHeaders(headers map[string]string) *HttpClient

func (*HttpClient) WithPayload

func (c *HttpClient) WithPayload(params interface{}) *HttpClient

func (*HttpClient) WithUrl

func (c *HttpClient) WithUrl(uri string, params map[string][]string) *HttpClient

type HttpExecutor

type HttpExecutor interface {
	Execute(r *http.Request, timeout time.Duration, retry uint64) (int, []byte, error)
	WithPrometheusHttpConfig(conf *u_prometheus.HttpConfig) HttpExecutor
}

func NewHttpExecutor

func NewHttpExecutor() HttpExecutor

type HttpResponse added in v1.1.7

type HttpResponse struct {
	Code    int
	Payload []byte
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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