httplib

package
v1.14.0 Latest Latest
Warning

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

Go to latest
Published: May 11, 2020 License: Apache-2.0 Imports: 21 Imported by: 0

README

httplib

httplib is an libs help you to curl remote url.

How to use?

GET

you can use Get to crawl data.

import "github.com/goasana/asana/httplib"

str, err := httplib.Get("http://asana.me/").String()
if err != nil {
    	// error
}
fmt.Println(str)

POST

POST data to remote url

req := httplib.Post("http://asana.me/")
req.Param("username","asana")
req.Param("password","123456")
str, err := req.String()
if err != nil {
    	// error
}
fmt.Println(str)

Set timeout

The default timeout is 60 seconds, function prototype:

SetTimeout(connectTimeout, readWriteTimeout time.Duration)

Example:

// GET
httplib.Get("http://asana.me/").SetTimeout(100 * time.Second, 30 * time.Second)

// POST
httplib.Post("http://asana.me/").SetTimeout(100 * time.Second, 30 * time.Second)

Debug

If you want to debug the request info, set the debug on

httplib.Get("http://asana.me/").Debug(true)

Set HTTP Basic Auth

str, err := Get("http://asana.me/").SetBasicAuth("user", "passwd").String()
if err != nil {
    	// error
}
fmt.Println(str)

Set HTTPS

If request url is https, You can set the client support TSL:

httplib.SetTLSClientConfig(&tls.Config{InsecureSkipVerify: true})

More info about the tls.Config please visit http://golang.org/pkg/crypto/tls/#Config

Set HTTP Version

some servers need to specify the protocol version of HTTP

httplib.Get("http://asana.me/").SetProtocolVersion("HTTP/1.1")

some http request need setcookie. So set it like this:

cookie := &http.Cookie{}
cookie.Name = "username"
cookie.Value  = "asana"
httplib.Get("http://asana.me/").SetCookie(cookie)

Upload file

httplib support mutil file upload, use req.PostFile()

req := httplib.Post("http://asana.me/")
req.Param("username","asana")
req.PostFile("uploadfile1", "httplib.pdf")
str, err := req.String()
if err != nil {
    	// error
}
fmt.Println(str)

See godoc for further documentation and examples.

Documentation

Overview

Package httplib is used as http.Client Usage:

import "github.com/goasana/asana/httplib"

	b := httplib.Post("http://asana.me/")
	b.Param("username","asana")
	b.Param("password","123456")
	b.PostFile("uploadfile1", "httplib.pdf")
	b.PostFile("uploadfile2", "httplib.txt")
	str, err := b.String()
	if err != nil {
		t.Fatal(err)
	}
	fmt.Println(str)

 more docs http://asana.me/docs/module/httplib.md

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func SetDefaultSetting

func SetDefaultSetting(setting AsanaHTTPSettings)

SetDefaultSetting Overwrite default settings

func TimeoutDialer

func TimeoutDialer(cTimeout time.Duration, rwTimeout time.Duration) func(context context.Context, net, addr string) (c net.Conn, err error)

TimeoutDialer returns functions of connection dialer with timeout settings for http.Transport Dial field.

Types

type AsanaHTTPRequest

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

AsanaHTTPRequest provides more useful methods for requesting one url than http.HTTPRequest.

func Delete

func Delete(url string) *AsanaHTTPRequest

Delete returns *AsanaHttpRequest DELETE method.

func Get

func Get(url string) *AsanaHTTPRequest

Get returns *AsanaHttpRequest with GET method.

func Head(url string) *AsanaHTTPRequest

Head returns *AsanaHttpRequest with HEAD method.

func NewAsanaRequest

func NewAsanaRequest(rawURL, method string) *AsanaHTTPRequest

NewAsanaRequest return *AsanaHttpRequest with specific method

func Post

func Post(url string) *AsanaHTTPRequest

Post returns *AsanaHttpRequest with POST method.

func Put

func Put(url string) *AsanaHTTPRequest

Put returns *AsanaHttpRequest with PUT method.

func (*AsanaHTTPRequest) Body

func (b *AsanaHTTPRequest) Body(data interface{}) *AsanaHTTPRequest

Body adds request raw body. it supports string and []byte.

func (*AsanaHTTPRequest) Bytes

func (b *AsanaHTTPRequest) Bytes() ([]byte, error)

Bytes returns the body []byte in response. it calls ResponseWriter inner.

func (*AsanaHTTPRequest) Debug

func (b *AsanaHTTPRequest) Debug(isdebug bool) *AsanaHTTPRequest

Debug sets show debug or not when executing request.

func (*AsanaHTTPRequest) DoRequest

func (b *AsanaHTTPRequest) DoRequest() (resp *http.Response, err error)

DoRequest will do the client.Do

func (*AsanaHTTPRequest) DumpBody

func (b *AsanaHTTPRequest) DumpBody(isdump bool) *AsanaHTTPRequest

DumpBody setting whether need to Dump the Body.

func (*AsanaHTTPRequest) DumpRequest

func (b *AsanaHTTPRequest) DumpRequest() []byte

DumpRequest return the DumpRequest

func (*AsanaHTTPRequest) GetRequest

func (b *AsanaHTTPRequest) GetRequest() *http.Request

GetRequest return the request object

func (*AsanaHTTPRequest) Header

func (b *AsanaHTTPRequest) Header(key, value string) *AsanaHTTPRequest

Header add header item string in request.

func (*AsanaHTTPRequest) JSONBody

func (b *AsanaHTTPRequest) JSONBody(obj interface{}) (*AsanaHTTPRequest, error)

JSONBody adds request raw body encoding by JSON.

func (*AsanaHTTPRequest) Param

func (b *AsanaHTTPRequest) Param(key, value string) *AsanaHTTPRequest

Param adds query param in to request. params build query string as ?key1=value1&key2=value2...

func (*AsanaHTTPRequest) PostFile

func (b *AsanaHTTPRequest) PostFile(formname, filename string) *AsanaHTTPRequest

PostFile add a post file to the request

func (*AsanaHTTPRequest) Response

func (b *AsanaHTTPRequest) Response() (*http.Response, error)

Response executes request client gets response manually.

func (*AsanaHTTPRequest) Retries

func (b *AsanaHTTPRequest) Retries(times int) *AsanaHTTPRequest

Retries sets Retries times. default is 0 means no retried. -1 means retried forever. others means retried times.

func (*AsanaHTTPRequest) SetBasicAuth

func (b *AsanaHTTPRequest) SetBasicAuth(username, password string) *AsanaHTTPRequest

SetBasicAuth sets the request's Authorization header to use HTTP Basic Authentication with the provided username and password.

func (*AsanaHTTPRequest) SetCheckRedirect

func (b *AsanaHTTPRequest) SetCheckRedirect(redirect func(req *http.Request, via []*http.Request) error) *AsanaHTTPRequest

SetCheckRedirect specifies the policy for handling redirects.

If CheckRedirect is nil, the Client uses its default policy, which is to stop after 10 consecutive requests.

func (*AsanaHTTPRequest) SetCookie

func (b *AsanaHTTPRequest) SetCookie(cookie *http.Cookie) *AsanaHTTPRequest

SetCookie add cookie into request.

func (*AsanaHTTPRequest) SetEnableCookie

func (b *AsanaHTTPRequest) SetEnableCookie(enable bool) *AsanaHTTPRequest

SetEnableCookie sets enable/disable cookiejar

func (*AsanaHTTPRequest) SetHost

func (b *AsanaHTTPRequest) SetHost(host string) *AsanaHTTPRequest

SetHost set the request host

func (*AsanaHTTPRequest) SetProtocolVersion

func (b *AsanaHTTPRequest) SetProtocolVersion(vers string) *AsanaHTTPRequest

SetProtocolVersion Set the protocol version for incoming requests. Client requests always use HTTP/1.1.

func (*AsanaHTTPRequest) SetProxy

func (b *AsanaHTTPRequest) SetProxy(proxy func(*http.Request) (*url.URL, error)) *AsanaHTTPRequest

SetProxy set the http proxy example:

func(req *http.HTTPRequest) (*url.URL, error) {
	u, _ := url.ParseRequestURI("http://127.0.0.1:8118")
	return u, nil
}

func (*AsanaHTTPRequest) SetTLSClientConfig

func (b *AsanaHTTPRequest) SetTLSClientConfig(config *tls.Config) *AsanaHTTPRequest

SetTLSClientConfig sets tls connection configurations if visiting https url.

func (*AsanaHTTPRequest) SetTimeout

func (b *AsanaHTTPRequest) SetTimeout(connectTimeout, readWriteTimeout time.Duration) *AsanaHTTPRequest

SetTimeout sets connect time out and read-write time out for asanaRequest.

func (*AsanaHTTPRequest) SetTransport

func (b *AsanaHTTPRequest) SetTransport(transport http.RoundTripper) *AsanaHTTPRequest

SetTransport set the setting transport

func (*AsanaHTTPRequest) SetUserAgent

func (b *AsanaHTTPRequest) SetUserAgent(useragent string) *AsanaHTTPRequest

SetUserAgent sets User-Agent header field

func (*AsanaHTTPRequest) Setting

Setting Change request settings

func (*AsanaHTTPRequest) String

func (b *AsanaHTTPRequest) String() (string, error)

String returns the body string in response. it calls ResponseWriter inner.

func (*AsanaHTTPRequest) ToFile

func (b *AsanaHTTPRequest) ToFile(filename string) error

ToFile saves the body data in response to one file. it calls ResponseWriter inner.

func (*AsanaHTTPRequest) ToJSON

func (b *AsanaHTTPRequest) ToJSON(v interface{}) error

ToJSON returns the map that marshals from the body bytes as json in response . it calls ResponseWriter inner.

func (*AsanaHTTPRequest) ToXML

func (b *AsanaHTTPRequest) ToXML(v interface{}) error

ToXML returns the map that marshals from the body bytes as xml in response . it calls ResponseWriter inner.

func (*AsanaHTTPRequest) ToYAML

func (b *AsanaHTTPRequest) ToYAML(v interface{}) error

ToYAML returns the map that marshals from the body bytes as yaml in response . it calls ResponseWriter inner.

func (*AsanaHTTPRequest) XMLBody

func (b *AsanaHTTPRequest) XMLBody(obj interface{}) (*AsanaHTTPRequest, error)

XMLBody adds request raw body encoding by XML.

func (*AsanaHTTPRequest) YAMLBody

func (b *AsanaHTTPRequest) YAMLBody(obj interface{}) (*AsanaHTTPRequest, error)

YAMLBody adds request raw body encoding by YAML.

type AsanaHTTPSettings

type AsanaHTTPSettings struct {
	ShowDebug        bool
	UserAgent        string
	ConnectTimeout   time.Duration
	ReadWriteTimeout time.Duration
	TLSClientConfig  *tls.Config
	Proxy            func(*http.Request) (*url.URL, error)
	Transport        http.RoundTripper
	CheckRedirect    func(req *http.Request, via []*http.Request) error
	EnableCookie     bool
	Gzip             bool
	DumpBody         bool
	Retries          int // if set to -1 means will retry forever
}

AsanaHTTPSettings is the http.Client setting

Jump to

Keyboard shortcuts

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