Documentation ¶
Index ¶
- Constants
- Variables
- func CloseReaderWrap(err error) error
- func DefaultHeader() httpi.MapHeader
- func DefaultLogger(method, url, auth string, reqBody, respBody *Body, status int, ...)
- func Delete(url string, param, response interface{}) error
- func Download(filepath, url string) error
- func DownloadImage(filepath, url string) error
- func DownloadToDir(dir, url string) error
- func Get(url string, param, response any) error
- func GetImage(url string) (io.ReadCloser, error)
- func GetRandUserAgent() string
- func GetReader(url string) (io.ReadCloser, error)
- func GetReaderWithHttpRequestOption(url string, opts ...HttpRequestOption) (io.ReadCloser, error)
- func GetStream(url string, param any) (io.ReadCloser, error)
- func GetStreamX(url string) (io.ReadCloser, error)
- func GetX(url string, response any) error
- func ImageOption(req *http.Request)
- func NewReplaceHttpRequest(r *http.Request) *replaceHttpRequest
- func Post(url string, param, response interface{}) error
- func Put(url string, param, response interface{}) error
- func ReplaceHttpRequest(r *http.Request, url, method string, body io.ReadCloser) *http.Request
- func SetProxyEnv(url string)
- func SetTag(t string)
- func UserAgentChrome(version string) string
- type AccessLog
- type Body
- type Client
- func (c *Client) AddHeader(k, v string) *Client
- func (c *Client) BasicAuth(authUser, authPass string) *Client
- func (c *Client) Clone() *Client
- func (c *Client) Delete(url string, param, response any) error
- func (c *Client) DeleteRequest(url string) *Request
- func (c *Client) DisableLog() *Client
- func (c *Client) Do(r *Request, param, response any) error
- func (c *Client) Get(url string, param, response any) error
- func (c *Client) GetRaw(url string, param any) (RawBytes, error)
- func (c *Client) GetRawX(url string) (RawBytes, error)
- func (c *Client) GetRequest(url string) *Request
- func (c *Client) GetStream(url string, param any) (io.ReadCloser, error)
- func (c *Client) GetStreamX(url string) (io.ReadCloser, error)
- func (c *Client) GetX(url string, response any) error
- func (c *Client) Header(header httpi.Header) *Client
- func (c *Client) HttpClient(client *http.Client) *Client
- func (c *Client) HttpRequestOption(opts ...HttpRequestOption) *Downloader
- func (c *Client) LogLevel(lvl LogLevel) *Client
- func (c *Client) Logger(logger AccessLog) *Client
- func (c *Client) ParseTag(tag string) *Client
- func (c *Client) Post(url string, param, response any) error
- func (c *Client) PostRequest(url string) *Request
- func (c *Client) Proxy(proxyUrl string) *Client
- func (c *Client) Put(url string, param, response any) error
- func (c *Client) PutRequest(url string) *Request
- func (c *Client) ReqDataHandler(handler func(data []byte) ([]byte, error)) *Client
- func (c *Client) Request(method, url string) *Request
- func (c *Client) ResDataHandler(handler func(data []byte) ([]byte, error)) *Client
- func (c *Client) ResetProxy() *Client
- func (c *Client) ResponseHandler(...) *Client
- func (c *Client) RetryHandler(handle func(r *http.Request)) *Client
- func (c *Client) RetryTimes(retryTimes int) *Client
- func (c *Client) RetryTimesWithInterval(retryTimes int, retryInterval time.Duration) *Client
- func (c *Client) SetHttpClient(opt HttpClientOption) *Client
- func (c *Client) Timeout(timeout time.Duration) *Client
- type ClientType
- type ContentType
- type DownloadMode
- type DownloadReq
- func (req *DownloadReq) AddHeader(k, v string) *DownloadReq
- func (c *DownloadReq) ConcurrencyDownload(filepath string, url string, concurrencyNum int) error
- func (c *DownloadReq) ContinuationDownload(filepath string) error
- func (c *DownloadReq) Download(filepath string) error
- func (req *DownloadReq) Downloader(c *Downloader) *DownloadReq
- func (c *DownloadReq) GetMode() DownloadMode
- func (c *DownloadReq) GetReader() (io.ReadCloser, error)
- func (c *DownloadReq) GetResponse() (*http.Response, error)
- func (c *DownloadReq) Mode(mode DownloadMode) *DownloadReq
- func (c *DownloadReq) OverwriteMode() *DownloadReq
- func (req *DownloadReq) SetDownloader(set func(c *Downloader)) *DownloadReq
- type Downloader
- type File
- type FromResponse
- type HttpClientOption
- type HttpRequestOption
- type LogLevel
- type MarshalBody
- type MarshalHeader
- type MarshalQuery
- type Multipart
- type Option
- type RawBytes
- type Request
- func (req *Request) AddHeader(k, v string) *Request
- func (req *Request) Client(c *Client) *Request
- func (req *Request) ContentType(contentType ContentType) *Request
- func (req *Request) Context(ctx context.Context) *Request
- func (req *Request) Do(param, response any, opts ...RequestOption) error
- func (req *Request) DoEmpty() error
- func (req *Request) DoNoParam(response any) error
- func (req *Request) DoNoResponse(param any) error
- func (req *Request) DoRaw(param any) (RawBytes, error)
- func (req *Request) DoStream(param any) (io.ReadCloser, error)
- func (req *Request) Header(header httpi.SliceHeader) *Request
- func (req *Request) SetClient(set func(c *Client)) *Request
- type RequestOption
- type ResponseBody
- type ResponseBody2
- type ResponseBodyCheck
- type ResponseHandler
- type SetRequest
- type UnmarshalBody
- type UnmarshalHeader
- type UnmarshalQuery
- type UploadMode
- type UploadReq
- func (r *UploadReq) Boundary(boundary string) *UploadReq
- func (r *UploadReq) ChunkSize(chunkSize int) *UploadReq
- func (r *UploadReq) Mode(mode UploadMode) *UploadReq
- func (r *UploadReq) UploadMultipart(formData map[string]string, files ...*Multipart) error
- func (r *UploadReq) UploadMultipartChunked(formData map[string]string, file Multipart) error
- func (r *UploadReq) UploadRaw(reader io.Reader, name string) error
- func (r *UploadReq) UploadRawChunked(reader io.Reader, name string) error
- func (r *UploadReq) UploadStream(oReader io.Reader) error
- func (r *UploadReq) Uploader(u *Uploader) *UploadReq
- type Uploader
Constants ¶
View Source
const ( UserAgent1 = "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0" UserAgentChrome95 = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" UserAgentChrome117 = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36" UserAgentIphone = "" /* 139-byte string literal not displayed */ )
View Source
const DownloadKey = fs.DownloadKey
View Source
const RangeFormat = "bytes=%d-%d/%d"
View Source
const RangeFormat2 = "bytes=%d-%d/*"
Variables ¶
View Source
var ( DefaultHttpClient = newHttpClient(ClientTypeApi) DefaultLogLevel = LogLevelError )
View Source
var ( ErrNotFound = fmt.Errorf("not found") ErrRangeNotSatisfiable = fmt.Errorf("range not satisfiable") )
View Source
var (
ContentTypeKey = http.CanonicalHeaderKey("Content-Type")
)
View Source
var (
DefaultClient = New().DisableLog()
)
View Source
var DefaultDownloadHttpClient = newDownloadHttpClient()
View Source
var DefaultDownloader = NewDownloader()
View Source
var DefaultUploader = NewUploader()
Functions ¶
func CloseReaderWrap ¶ added in v0.0.27
func DefaultHeader ¶
func DefaultLogger ¶
func DownloadImage ¶
func DownloadToDir ¶
func GetRandUserAgent ¶
func GetRandUserAgent() string
func GetReaderWithHttpRequestOption ¶ added in v0.1.4
func GetReaderWithHttpRequestOption(url string, opts ...HttpRequestOption) (io.ReadCloser, error)
func GetStreamX ¶
func GetStreamX(url string) (io.ReadCloser, error)
func ImageOption ¶
func NewReplaceHttpRequest ¶
func ReplaceHttpRequest ¶
func SetProxyEnv ¶
func SetProxyEnv(url string)
func UserAgentChrome ¶
Types ¶
type Body ¶
type Body struct { Data []byte ContentType ContentType }
func NewBody ¶
func NewBody(data []byte, contentType ContentType) *Body
func (*Body) IsProtobuf ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client ...
func DefaultHeaderClient ¶
func DefaultHeaderClient() *Client
func (*Client) DeleteRequest ¶
func (*Client) DisableLog ¶
func (*Client) GetRequest ¶
func (*Client) GetStreamX ¶
func (c *Client) GetStreamX(url string) (io.ReadCloser, error)
func (*Client) HttpRequestOption ¶ added in v0.1.4
func (c *Client) HttpRequestOption(opts ...HttpRequestOption) *Downloader
func (*Client) PostRequest ¶
func (*Client) PutRequest ¶
func (*Client) ReqDataHandler ¶ added in v0.1.4
func (*Client) ResDataHandler ¶
func (*Client) ResetProxy ¶ added in v0.0.31
func (*Client) ResponseHandler ¶
func (c *Client) ResponseHandler(handler func(response *http.Response) (retry bool, reader io.Reader, err error)) *Client
handler 返回值:是否重试,返回数据,错误
func (*Client) RetryTimes ¶
func (*Client) RetryTimesWithInterval ¶
func (*Client) SetHttpClient ¶
func (c *Client) SetHttpClient(opt HttpClientOption) *Client
type ClientType ¶ added in v0.1.4
type ClientType uint8
const ( ClientTypeApi ClientType = iota ClientTypeDownload ClientType = iota ClientTypeUpload ClientType = iota )
type ContentType ¶
type ContentType uint8
const ( ContentTypeJson ContentType = iota ContentTypeForm ContentTypeFormData ContentTypeGrpc ContentTypeGrpcWeb ContentTypeXml ContentTypeText ContentTypeBinary ContentTypeApplication ContentTypeImage ContentTypeAudio ContentTypeVideo )
func (*ContentType) Decode ¶
func (c *ContentType) Decode(contentType string)
func (ContentType) String ¶
func (c ContentType) String() string
type DownloadMode ¶
type DownloadMode uint16
const ( DModeOverwrite DownloadMode = 1 << iota DModeContinue DModeMultipart // TODO 分块下载后合并 DModeMultiThread // TODO 暂时没找到并发写文件的方法,可以并发下载,顺序写入 )
type DownloadReq ¶
type DownloadReq struct { Url string // contains filtered or unexported fields }
func NewDownloadReq ¶
func NewDownloadReq(url string) *DownloadReq
func (*DownloadReq) AddHeader ¶
func (req *DownloadReq) AddHeader(k, v string) *DownloadReq
func (*DownloadReq) ConcurrencyDownload ¶
func (c *DownloadReq) ConcurrencyDownload(filepath string, url string, concurrencyNum int) error
TODO: 利用简单任务调度实现
func (*DownloadReq) ContinuationDownload ¶
func (c *DownloadReq) ContinuationDownload(filepath string) error
func (*DownloadReq) Download ¶
func (c *DownloadReq) Download(filepath string) error
func (*DownloadReq) Downloader ¶
func (req *DownloadReq) Downloader(c *Downloader) *DownloadReq
func (*DownloadReq) GetMode ¶
func (c *DownloadReq) GetMode() DownloadMode
func (*DownloadReq) GetReader ¶
func (c *DownloadReq) GetReader() (io.ReadCloser, error)
func (*DownloadReq) GetResponse ¶
func (c *DownloadReq) GetResponse() (*http.Response, error)
func (*DownloadReq) Mode ¶
func (c *DownloadReq) Mode(mode DownloadMode) *DownloadReq
func (*DownloadReq) SetDownloader ¶
func (req *DownloadReq) SetDownloader(set func(c *Downloader)) *DownloadReq
type Downloader ¶
type Downloader = Client
TODO: Range Status(206) PartialContent 下载
func NewDownloader ¶
func NewDownloader() *Downloader
func (*Downloader) Download ¶
func (c *Downloader) Download(filepath string, r *DownloadReq) error
func (*Downloader) DownloadReq ¶
func (c *Downloader) DownloadReq(url string) *DownloadReq
type File ¶ added in v0.1.5
func (*File) ToMutilPart ¶ added in v0.1.11
type FromResponse ¶
type HttpClientOption ¶
type HttpRequestOption ¶
func AddHeader ¶
func AddHeader(k, v string) HttpRequestOption
func SetAccept ¶
func SetAccept(refer string) HttpRequestOption
func SetCookie ¶
func SetCookie(cookie string) HttpRequestOption
func SetRefer ¶
func SetRefer(refer string) HttpRequestOption
type MarshalBody ¶
type MarshalHeader ¶
type MarshalQuery ¶
type Request ¶
type Request struct {
Method, Url string
// contains filtered or unexported fields
}
func DefaultHeaderRequest ¶
func DefaultHeaderRequest() *Request
func DeleteRequest ¶
func GetRequest ¶
func NewRequest ¶
func PostRequest ¶
func PutRequest ¶
func (*Request) ContentType ¶
func (req *Request) ContentType(contentType ContentType) *Request
func (*Request) Do ¶
func (req *Request) Do(param, response any, opts ...RequestOption) error
Do create a HTTP request param: 请求参数 目前只支持编码为json 或 Url-encoded
func (*Request) DoNoResponse ¶
type RequestOption ¶ added in v0.0.44
type ResponseBody ¶
type ResponseBody httpi.ResAnyData
func (*ResponseBody) CheckError ¶
func (res *ResponseBody) CheckError() error
type ResponseBody2 ¶
type ResponseBody2 struct { Status int `json:"status"` Msg string `json:"msg"` Data any `json:"data"` }
func (*ResponseBody2) CheckError ¶
func (res *ResponseBody2) CheckError() error
type ResponseBodyCheck ¶
type ResponseBodyCheck interface {
CheckError() error
}
func CommonResponse ¶
func CommonResponse(response interface{}) ResponseBodyCheck
func CommonResponse2 ¶
func CommonResponse2(response interface{}) ResponseBodyCheck
type ResponseHandler ¶
type SetRequest ¶
type UnmarshalBody ¶
type UnmarshalHeader ¶
type UnmarshalQuery ¶
type UploadMode ¶
type UploadMode uint16
const ( UModeNormal UploadMode = iota UModeStream UModeChunked UModeChunkedConcurrent )
type UploadReq ¶ added in v0.1.4
type UploadReq struct { Url string // contains filtered or unexported fields }
func NewUploadReq ¶ added in v0.1.5
func (*UploadReq) Mode ¶ added in v0.1.11
func (r *UploadReq) Mode(mode UploadMode) *UploadReq
func (*UploadReq) UploadMultipart ¶ added in v0.1.5
func (*UploadReq) UploadMultipartChunked ¶ added in v0.1.11
默认单文件
func (*UploadReq) UploadRawChunked ¶ added in v0.1.11
func (*UploadReq) UploadStream ¶ added in v0.1.11
Source Files ¶
Click to show internal directories.
Click to hide internal directories.