| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- // Copyright 2018 Frédéric Guillot. All rights reserved.
- // Use of this source code is governed by the Apache 2.0
- // license that can be found in the LICENSE file.
- package client
- import (
- "bytes"
- "crypto/tls"
- "crypto/x509"
- "encoding/json"
- "fmt"
- "io"
- "io/ioutil"
- "net"
- "net/http"
- "net/url"
- "strings"
- "time"
- "github.com/miniflux/miniflux/errors"
- "github.com/miniflux/miniflux/logger"
- "github.com/miniflux/miniflux/timer"
- "github.com/miniflux/miniflux/version"
- )
- const (
- // 20 seconds max.
- requestTimeout = 20
- // 15MB max.
- maxBodySize = 1024 * 1024 * 15
- )
- var (
- errInvalidCertificate = "Invalid SSL certificate (original error: %q)"
- errTemporaryNetworkOperation = "This website is temporarily unreachable (original error: %q)"
- errPermanentNetworkOperation = "This website is permanently unreachable (original error: %q)"
- errRequestTimeout = "Website unreachable, the request timed out after %d seconds"
- )
- // Client is a HTTP Client :)
- type Client struct {
- url string
- etagHeader string
- lastModifiedHeader string
- authorizationHeader string
- username string
- password string
- Insecure bool
- }
- // WithCredentials defines the username/password for HTTP Basic authentication.
- func (c *Client) WithCredentials(username, password string) *Client {
- if username != "" && password != "" {
- c.username = username
- c.password = password
- }
- return c
- }
- // WithAuthorization defines authorization header value.
- func (c *Client) WithAuthorization(authorization string) *Client {
- c.authorizationHeader = authorization
- return c
- }
- // WithCacheHeaders defines caching headers.
- func (c *Client) WithCacheHeaders(etagHeader, lastModifiedHeader string) *Client {
- c.etagHeader = etagHeader
- c.lastModifiedHeader = lastModifiedHeader
- return c
- }
- // Get execute a GET HTTP request.
- func (c *Client) Get() (*Response, error) {
- request, err := c.buildRequest(http.MethodGet, nil)
- if err != nil {
- return nil, err
- }
- return c.executeRequest(request)
- }
- // PostForm execute a POST HTTP request with form values.
- func (c *Client) PostForm(values url.Values) (*Response, error) {
- request, err := c.buildRequest(http.MethodPost, strings.NewReader(values.Encode()))
- if err != nil {
- return nil, err
- }
- request.Header.Add("Content-Type", "application/x-www-form-urlencoded")
- return c.executeRequest(request)
- }
- // PostJSON execute a POST HTTP request with JSON payload.
- func (c *Client) PostJSON(data interface{}) (*Response, error) {
- b, err := json.Marshal(data)
- if err != nil {
- return nil, err
- }
- request, err := c.buildRequest(http.MethodPost, bytes.NewReader(b))
- if err != nil {
- return nil, err
- }
- request.Header.Add("Content-Type", "application/json")
- return c.executeRequest(request)
- }
- func (c *Client) executeRequest(request *http.Request) (*Response, error) {
- defer timer.ExecutionTime(time.Now(), fmt.Sprintf("[HttpClient] url=%s", c.url))
- client := c.buildClient()
- resp, err := client.Do(request)
- if resp != nil {
- defer resp.Body.Close()
- }
- if err != nil {
- if uerr, ok := err.(*url.Error); ok {
- switch uerr.Err.(type) {
- case x509.CertificateInvalidError, x509.HostnameError:
- err = errors.NewLocalizedError(errInvalidCertificate, uerr.Err)
- case *net.OpError:
- if uerr.Err.(*net.OpError).Temporary() {
- err = errors.NewLocalizedError(errTemporaryNetworkOperation, uerr.Err)
- } else {
- err = errors.NewLocalizedError(errPermanentNetworkOperation, uerr.Err)
- }
- case net.Error:
- nerr := uerr.Err.(net.Error)
- if nerr.Timeout() {
- err = errors.NewLocalizedError(errRequestTimeout, requestTimeout)
- } else if nerr.Temporary() {
- err = errors.NewLocalizedError(errTemporaryNetworkOperation, nerr)
- }
- }
- }
- return nil, err
- }
- if resp.ContentLength > maxBodySize {
- return nil, fmt.Errorf("client: response too large (%d bytes)", resp.ContentLength)
- }
- buf, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- return nil, fmt.Errorf("client: error while reading body %v", err)
- }
- response := &Response{
- Body: bytes.NewReader(buf),
- StatusCode: resp.StatusCode,
- EffectiveURL: resp.Request.URL.String(),
- LastModified: resp.Header.Get("Last-Modified"),
- ETag: resp.Header.Get("ETag"),
- ContentType: resp.Header.Get("Content-Type"),
- ContentLength: resp.ContentLength,
- }
- logger.Debug("[HttpClient:%s] URL=%s, EffectiveURL=%s, Code=%d, Length=%d, Type=%s, ETag=%s, LastMod=%s, Expires=%s, Auth=%v",
- request.Method,
- c.url,
- response.EffectiveURL,
- response.StatusCode,
- resp.ContentLength,
- response.ContentType,
- response.ETag,
- response.LastModified,
- resp.Header.Get("Expires"),
- c.username != "",
- )
- // Ignore caching headers for feeds that do not want any cache.
- if resp.Header.Get("Expires") == "0" {
- logger.Debug("[HttpClient] Ignore caching headers for %q", response.EffectiveURL)
- response.ETag = ""
- response.LastModified = ""
- }
- return response, err
- }
- func (c *Client) buildRequest(method string, body io.Reader) (*http.Request, error) {
- request, err := http.NewRequest(method, c.url, body)
- if err != nil {
- return nil, err
- }
- request.Header = c.buildHeaders()
- if c.username != "" && c.password != "" {
- request.SetBasicAuth(c.username, c.password)
- }
- return request, nil
- }
- func (c *Client) buildClient() http.Client {
- client := http.Client{Timeout: time.Duration(requestTimeout * time.Second)}
- if c.Insecure {
- client.Transport = &http.Transport{
- TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
- }
- }
- return client
- }
- func (c *Client) buildHeaders() http.Header {
- headers := make(http.Header)
- headers.Add("User-Agent", "Mozilla/5.0 (compatible; Miniflux/"+version.Version+"; +https://miniflux.net)")
- headers.Add("Accept", "*/*")
- if c.etagHeader != "" {
- headers.Add("If-None-Match", c.etagHeader)
- }
- if c.lastModifiedHeader != "" {
- headers.Add("If-Modified-Since", c.lastModifiedHeader)
- }
- if c.authorizationHeader != "" {
- headers.Add("Authorization", c.authorizationHeader)
- }
- headers.Add("Connection", "close")
- return headers
- }
- // New returns a new HTTP client.
- func New(url string) *Client {
- return &Client{url: url, Insecure: false}
- }
|