miniflux-v2/client/request.go

146 lines
3.3 KiB
Go
Raw Normal View History

2018-08-25 07:23:03 +02:00
// Copyright 2018 Frédéric Guillot. All rights reserved.
2018-10-09 00:50:15 +02:00
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2017-11-25 19:40:23 +01:00
2018-08-25 07:23:03 +02:00
package client // import "miniflux.app/client"
2017-11-25 19:40:23 +01:00
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"net/url"
"time"
)
const (
2019-01-08 03:08:42 +01:00
userAgent = "Miniflux Client Library"
2017-11-25 19:40:23 +01:00
defaultTimeout = 80
)
2018-05-15 03:52:12 +02:00
// List of exposed errors.
2017-11-25 19:40:23 +01:00
var (
2018-05-15 03:52:12 +02:00
ErrNotAuthorized = errors.New("miniflux: unauthorized (bad credentials)")
ErrForbidden = errors.New("miniflux: access forbidden")
ErrServerError = errors.New("miniflux: internal server error")
ErrNotFound = errors.New("miniflux: resource not found")
2017-11-25 19:40:23 +01:00
)
type errorResponse struct {
ErrorMessage string `json:"error_message"`
}
type request struct {
endpoint string
username string
password string
}
func (r *request) Get(path string) (io.ReadCloser, error) {
return r.execute(http.MethodGet, path, nil)
}
func (r *request) Post(path string, data interface{}) (io.ReadCloser, error) {
return r.execute(http.MethodPost, path, data)
}
2018-04-30 03:56:40 +02:00
func (r *request) PostFile(path string, f io.ReadCloser) (io.ReadCloser, error) {
return r.execute(http.MethodPost, path, f)
}
2017-11-25 19:40:23 +01:00
func (r *request) Put(path string, data interface{}) (io.ReadCloser, error) {
return r.execute(http.MethodPut, path, data)
}
func (r *request) Delete(path string) (io.ReadCloser, error) {
return r.execute(http.MethodDelete, path, nil)
}
func (r *request) execute(method, path string, data interface{}) (io.ReadCloser, error) {
if r.endpoint[len(r.endpoint)-1:] == "/" {
r.endpoint = r.endpoint[:len(r.endpoint)-1]
}
2017-11-25 19:40:23 +01:00
u, err := url.Parse(r.endpoint + path)
if err != nil {
return nil, err
}
request := &http.Request{
URL: u,
Method: method,
Header: r.buildHeaders(),
}
request.SetBasicAuth(r.username, r.password)
if data != nil {
2018-04-30 03:56:40 +02:00
switch data.(type) {
case io.ReadCloser:
request.Body = data.(io.ReadCloser)
default:
request.Body = ioutil.NopCloser(bytes.NewBuffer(r.toJSON(data)))
}
2017-11-25 19:40:23 +01:00
}
client := r.buildClient()
response, err := client.Do(request)
if err != nil {
return nil, err
}
switch response.StatusCode {
case http.StatusUnauthorized:
2018-05-15 03:52:12 +02:00
return nil, ErrNotAuthorized
2017-11-25 19:40:23 +01:00
case http.StatusForbidden:
2018-05-15 03:52:12 +02:00
return nil, ErrForbidden
2017-11-25 19:40:23 +01:00
case http.StatusInternalServerError:
2018-05-15 03:52:12 +02:00
return nil, ErrServerError
2018-04-30 03:56:40 +02:00
case http.StatusNotFound:
2018-05-15 03:52:12 +02:00
return nil, ErrNotFound
2017-11-25 19:40:23 +01:00
case http.StatusBadRequest:
defer response.Body.Close()
var resp errorResponse
decoder := json.NewDecoder(response.Body)
if err := decoder.Decode(&resp); err != nil {
return nil, fmt.Errorf("miniflux: bad request error (%v)", err)
}
return nil, fmt.Errorf("miniflux: bad request (%s)", resp.ErrorMessage)
}
2018-04-30 03:56:40 +02:00
if response.StatusCode > 400 {
return nil, fmt.Errorf("miniflux: status code=%d", response.StatusCode)
2017-11-25 19:40:23 +01:00
}
return response.Body, nil
}
func (r *request) buildClient() http.Client {
return http.Client{
Timeout: time.Duration(defaultTimeout * time.Second),
}
}
func (r *request) buildHeaders() http.Header {
headers := make(http.Header)
headers.Add("User-Agent", userAgent)
headers.Add("Content-Type", "application/json")
headers.Add("Accept", "application/json")
return headers
}
func (r *request) toJSON(v interface{}) []byte {
b, err := json.Marshal(v)
if err != nil {
log.Println("Unable to convert interface to JSON:", err)
return []byte("")
}
return b
}