2015-11-27 13:46:13 +01:00
|
|
|
// Package rest implements a simple REST wrapper
|
2016-02-23 22:16:13 +01:00
|
|
|
//
|
|
|
|
// All methods are safe for concurrent calling.
|
2015-11-27 13:46:13 +01:00
|
|
|
package rest
|
2015-10-04 23:08:31 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
2015-11-27 19:25:52 +01:00
|
|
|
"io/ioutil"
|
2017-07-05 18:48:43 +02:00
|
|
|
"mime/multipart"
|
2015-10-04 23:08:31 +02:00
|
|
|
"net/http"
|
2017-07-06 13:12:01 +02:00
|
|
|
"net/url"
|
2016-02-23 22:16:13 +01:00
|
|
|
"sync"
|
2015-10-04 23:08:31 +02:00
|
|
|
|
|
|
|
"github.com/ncw/rclone/fs"
|
2016-06-12 16:06:02 +02:00
|
|
|
"github.com/pkg/errors"
|
2015-10-04 23:08:31 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Client contains the info to sustain the API
|
|
|
|
type Client struct {
|
2016-02-23 22:16:13 +01:00
|
|
|
mu sync.RWMutex
|
2015-11-27 13:46:13 +01:00
|
|
|
c *http.Client
|
|
|
|
rootURL string
|
|
|
|
errorHandler func(resp *http.Response) error
|
2015-11-27 19:25:52 +01:00
|
|
|
headers map[string]string
|
2015-10-04 23:08:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewClient takes an oauth http.Client and makes a new api instance
|
2015-11-27 19:25:52 +01:00
|
|
|
func NewClient(c *http.Client) *Client {
|
|
|
|
api := &Client{
|
2015-11-27 13:46:13 +01:00
|
|
|
c: c,
|
|
|
|
errorHandler: defaultErrorHandler,
|
2015-11-27 19:25:52 +01:00
|
|
|
headers: make(map[string]string),
|
2015-10-04 23:08:31 +02:00
|
|
|
}
|
2015-11-27 19:25:52 +01:00
|
|
|
return api
|
2015-10-04 23:08:31 +02:00
|
|
|
}
|
|
|
|
|
2017-03-12 12:44:43 +01:00
|
|
|
// ReadBody reads resp.Body into result, closing the body
|
|
|
|
func ReadBody(resp *http.Response) (result []byte, err error) {
|
|
|
|
defer fs.CheckClose(resp.Body, &err)
|
|
|
|
return ioutil.ReadAll(resp.Body)
|
|
|
|
}
|
|
|
|
|
2015-11-27 19:25:52 +01:00
|
|
|
// defaultErrorHandler doesn't attempt to parse the http body, just
|
|
|
|
// returns it in the error message
|
2015-11-27 13:46:13 +01:00
|
|
|
func defaultErrorHandler(resp *http.Response) (err error) {
|
2017-03-12 12:44:43 +01:00
|
|
|
body, err := ReadBody(resp)
|
2015-11-27 19:25:52 +01:00
|
|
|
if err != nil {
|
2017-03-12 12:44:43 +01:00
|
|
|
return errors.Wrap(err, "error reading error out of body")
|
2015-11-27 19:25:52 +01:00
|
|
|
}
|
2016-06-12 16:06:02 +02:00
|
|
|
return errors.Errorf("HTTP error %v (%v) returned body: %q", resp.StatusCode, resp.Status, body)
|
2015-11-27 13:46:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetErrorHandler sets the handler to decode an error response when
|
|
|
|
// the HTTP status code is not 2xx. The handler should close resp.Body.
|
2015-11-27 19:25:52 +01:00
|
|
|
func (api *Client) SetErrorHandler(fn func(resp *http.Response) error) *Client {
|
2016-02-23 22:16:13 +01:00
|
|
|
api.mu.Lock()
|
|
|
|
defer api.mu.Unlock()
|
2015-11-27 13:46:13 +01:00
|
|
|
api.errorHandler = fn
|
2015-11-27 19:25:52 +01:00
|
|
|
return api
|
|
|
|
}
|
|
|
|
|
2017-07-07 09:18:13 +02:00
|
|
|
// SetRoot sets the default RootURL. You can override this on a per
|
|
|
|
// call basis using the RootURL field in Opts.
|
2015-11-27 19:25:52 +01:00
|
|
|
func (api *Client) SetRoot(RootURL string) *Client {
|
2016-02-23 22:16:13 +01:00
|
|
|
api.mu.Lock()
|
|
|
|
defer api.mu.Unlock()
|
2015-11-27 19:25:52 +01:00
|
|
|
api.rootURL = RootURL
|
|
|
|
return api
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetHeader sets a header for all requests
|
|
|
|
func (api *Client) SetHeader(key, value string) *Client {
|
2016-02-23 22:16:13 +01:00
|
|
|
api.mu.Lock()
|
|
|
|
defer api.mu.Unlock()
|
2015-11-27 19:25:52 +01:00
|
|
|
api.headers[key] = value
|
|
|
|
return api
|
2015-11-27 13:46:13 +01:00
|
|
|
}
|
|
|
|
|
2015-10-04 23:08:31 +02:00
|
|
|
// Opts contains parameters for Call, CallJSON etc
|
|
|
|
type Opts struct {
|
2017-07-06 23:19:50 +02:00
|
|
|
Method string // GET, POST etc
|
2017-07-07 09:18:13 +02:00
|
|
|
Path string // relative to RootURL
|
2017-07-06 23:19:50 +02:00
|
|
|
RootURL string // override RootURL passed into SetRoot()
|
2017-07-05 18:48:43 +02:00
|
|
|
Body io.Reader
|
|
|
|
NoResponse bool // set to close Body
|
|
|
|
ContentType string
|
|
|
|
ContentLength *int64
|
|
|
|
ContentRange string
|
|
|
|
ExtraHeaders map[string]string
|
|
|
|
UserName string // username for Basic Auth
|
|
|
|
Password string // password for Basic Auth
|
|
|
|
Options []fs.OpenOption
|
2017-07-06 13:12:01 +02:00
|
|
|
IgnoreStatus bool // if set then we don't check error status or parse error body
|
2017-09-21 11:18:34 +02:00
|
|
|
MultipartParams url.Values // if set do multipart form upload with attached file
|
|
|
|
MultipartMetadataName string // ..this is used for the name of the metadata form part if set
|
|
|
|
MultipartContentName string // ..name of the parameter which is the attached file
|
|
|
|
MultipartFileName string // ..name of the file for the attached file
|
2017-07-06 13:12:01 +02:00
|
|
|
Parameters url.Values // any parameters for the final URL
|
2017-09-20 11:53:20 +02:00
|
|
|
TransferEncoding []string // transfer encoding, set to "identity" to disable chunked encoding
|
|
|
|
Close bool // set to close the connection after this transaction
|
2017-07-05 18:48:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy creates a copy of the options
|
|
|
|
func (o *Opts) Copy() *Opts {
|
|
|
|
newOpts := *o
|
|
|
|
return &newOpts
|
2015-10-04 23:08:31 +02:00
|
|
|
}
|
|
|
|
|
2015-10-30 09:40:14 +01:00
|
|
|
// DecodeJSON decodes resp.Body into result
|
|
|
|
func DecodeJSON(resp *http.Response, result interface{}) (err error) {
|
2015-11-28 19:13:08 +01:00
|
|
|
defer fs.CheckClose(resp.Body, &err)
|
2015-10-04 23:08:31 +02:00
|
|
|
decoder := json.NewDecoder(resp.Body)
|
|
|
|
return decoder.Decode(result)
|
|
|
|
}
|
|
|
|
|
2016-10-26 19:42:41 +02:00
|
|
|
// ClientWithHeaderReset makes a new http client which resets the
|
|
|
|
// headers passed in on redirect
|
2017-02-25 22:41:03 +01:00
|
|
|
//
|
|
|
|
// FIXME This is now unecessary with go1.8
|
2016-10-26 19:42:41 +02:00
|
|
|
func ClientWithHeaderReset(c *http.Client, headers map[string]string) *http.Client {
|
2016-09-10 12:29:57 +02:00
|
|
|
if len(headers) == 0 {
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
clientCopy := *c
|
|
|
|
clientCopy.CheckRedirect = func(req *http.Request, via []*http.Request) error {
|
|
|
|
if len(via) >= 10 {
|
|
|
|
return errors.New("stopped after 10 redirects")
|
|
|
|
}
|
|
|
|
// Reset the headers in the new request
|
|
|
|
for k, v := range headers {
|
|
|
|
if v != "" {
|
2017-02-25 22:41:03 +01:00
|
|
|
req.Header.Set(k, v)
|
2016-09-10 12:29:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &clientCopy
|
|
|
|
}
|
|
|
|
|
2015-10-04 23:08:31 +02:00
|
|
|
// Call makes the call and returns the http.Response
|
|
|
|
//
|
|
|
|
// if err != nil then resp.Body will need to be closed
|
|
|
|
//
|
|
|
|
// it will return resp if at all possible, even if err is set
|
|
|
|
func (api *Client) Call(opts *Opts) (resp *http.Response, err error) {
|
2016-02-23 22:16:13 +01:00
|
|
|
api.mu.RLock()
|
|
|
|
defer api.mu.RUnlock()
|
2015-10-04 23:08:31 +02:00
|
|
|
if opts == nil {
|
2016-06-12 16:06:02 +02:00
|
|
|
return nil, errors.New("call() called with nil opts")
|
2015-10-04 23:08:31 +02:00
|
|
|
}
|
2017-07-07 09:18:13 +02:00
|
|
|
url := api.rootURL
|
|
|
|
if opts.RootURL != "" {
|
|
|
|
url = opts.RootURL
|
|
|
|
}
|
|
|
|
if url == "" {
|
|
|
|
return nil, errors.New("RootURL not set")
|
2015-10-04 23:08:31 +02:00
|
|
|
}
|
2017-07-07 09:18:13 +02:00
|
|
|
url += opts.Path
|
2017-07-06 13:12:01 +02:00
|
|
|
if opts.Parameters != nil && len(opts.Parameters) > 0 {
|
|
|
|
url += "?" + opts.Parameters.Encode()
|
|
|
|
}
|
2015-10-04 23:08:31 +02:00
|
|
|
req, err := http.NewRequest(opts.Method, url, opts.Body)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2015-11-27 19:25:52 +01:00
|
|
|
headers := make(map[string]string)
|
|
|
|
// Set default headers
|
|
|
|
for k, v := range api.headers {
|
|
|
|
headers[k] = v
|
|
|
|
}
|
2015-10-04 23:08:31 +02:00
|
|
|
if opts.ContentType != "" {
|
2015-11-27 19:25:52 +01:00
|
|
|
headers["Content-Type"] = opts.ContentType
|
2015-10-04 23:08:31 +02:00
|
|
|
}
|
|
|
|
if opts.ContentLength != nil {
|
|
|
|
req.ContentLength = *opts.ContentLength
|
|
|
|
}
|
|
|
|
if opts.ContentRange != "" {
|
2015-11-27 19:25:52 +01:00
|
|
|
headers["Content-Range"] = opts.ContentRange
|
2015-10-04 23:08:31 +02:00
|
|
|
}
|
2017-09-20 11:53:20 +02:00
|
|
|
if len(opts.TransferEncoding) != 0 {
|
|
|
|
req.TransferEncoding = opts.TransferEncoding
|
|
|
|
}
|
|
|
|
if opts.Close {
|
|
|
|
req.Close = true
|
|
|
|
}
|
2015-11-27 19:25:52 +01:00
|
|
|
// Set any extra headers
|
2015-10-30 09:40:14 +01:00
|
|
|
if opts.ExtraHeaders != nil {
|
|
|
|
for k, v := range opts.ExtraHeaders {
|
2015-11-27 19:25:52 +01:00
|
|
|
headers[k] = v
|
2015-10-30 09:40:14 +01:00
|
|
|
}
|
|
|
|
}
|
2016-09-10 12:29:57 +02:00
|
|
|
// add any options to the headers
|
|
|
|
fs.OpenOptionAddHeaders(opts.Options, headers)
|
2015-11-27 19:25:52 +01:00
|
|
|
// Now set the headers
|
|
|
|
for k, v := range headers {
|
2016-02-23 22:16:13 +01:00
|
|
|
if v != "" {
|
|
|
|
req.Header.Add(k, v)
|
|
|
|
}
|
2015-11-27 19:25:52 +01:00
|
|
|
}
|
|
|
|
if opts.UserName != "" || opts.Password != "" {
|
|
|
|
req.SetBasicAuth(opts.UserName, opts.Password)
|
|
|
|
}
|
2016-10-26 19:42:41 +02:00
|
|
|
c := ClientWithHeaderReset(api.c, headers)
|
2016-02-23 22:16:13 +01:00
|
|
|
api.mu.RUnlock()
|
2016-09-10 12:29:57 +02:00
|
|
|
resp, err = c.Do(req)
|
2016-02-23 22:16:13 +01:00
|
|
|
api.mu.RLock()
|
2015-10-04 23:08:31 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-03-12 12:44:43 +01:00
|
|
|
if !opts.IgnoreStatus {
|
|
|
|
if resp.StatusCode < 200 || resp.StatusCode > 299 {
|
|
|
|
return resp, api.errorHandler(resp)
|
|
|
|
}
|
2015-10-04 23:08:31 +02:00
|
|
|
}
|
|
|
|
if opts.NoResponse {
|
|
|
|
return resp, resp.Body.Close()
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2017-09-21 11:18:34 +02:00
|
|
|
// MultipartUpload creates an io.Reader which produces an encoded a
|
|
|
|
// multipart form upload from the params passed in and the passed in
|
|
|
|
//
|
|
|
|
// in - the body of the file
|
|
|
|
// params - the form parameters
|
|
|
|
// fileName - is the name of the attached file
|
|
|
|
// contentName - the name of the parameter for the file
|
|
|
|
//
|
|
|
|
// NB This doesn't allow setting the content type of the attachment
|
|
|
|
func MultipartUpload(in io.Reader, params url.Values, contentName, fileName string) (io.ReadCloser, string, error) {
|
|
|
|
bodyReader, bodyWriter := io.Pipe()
|
|
|
|
writer := multipart.NewWriter(bodyWriter)
|
|
|
|
contentType := writer.FormDataContentType()
|
|
|
|
|
|
|
|
// Pump the data in the background
|
|
|
|
go func() {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
for key, vals := range params {
|
|
|
|
for _, val := range vals {
|
|
|
|
err = writer.WriteField(key, val)
|
|
|
|
if err != nil {
|
|
|
|
_ = bodyWriter.CloseWithError(errors.Wrap(err, "create metadata part"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
part, err := writer.CreateFormFile(contentName, fileName)
|
|
|
|
if err != nil {
|
|
|
|
_ = bodyWriter.CloseWithError(errors.Wrap(err, "failed to create form file"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = io.Copy(part, in)
|
|
|
|
if err != nil {
|
|
|
|
_ = bodyWriter.CloseWithError(errors.Wrap(err, "failed to copy data"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = writer.Close()
|
|
|
|
if err != nil {
|
|
|
|
_ = bodyWriter.CloseWithError(errors.Wrap(err, "failed to close form"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_ = bodyWriter.Close()
|
|
|
|
}()
|
|
|
|
|
|
|
|
return bodyReader, contentType, nil
|
|
|
|
}
|
|
|
|
|
2015-10-30 09:40:14 +01:00
|
|
|
// CallJSON runs Call and decodes the body as a JSON object into response (if not nil)
|
2015-10-04 23:08:31 +02:00
|
|
|
//
|
|
|
|
// If request is not nil then it will be JSON encoded as the body of the request
|
|
|
|
//
|
2017-09-21 11:18:34 +02:00
|
|
|
// If (opts.MultipartParams or opts.MultipartContentName) and
|
|
|
|
// opts.Body are set then CallJSON will do a multipart upload with a
|
|
|
|
// file attached. opts.MultipartContentName is the name of the
|
|
|
|
// parameter and opts.MultipartFileName is the name of the file. If
|
|
|
|
// MultpartContentName is set, and request != nil is supplied, then
|
|
|
|
// the request will be marshalled into JSON and added to the form with
|
|
|
|
// parameter name MultipartMetadataName.
|
|
|
|
//
|
2015-10-04 23:08:31 +02:00
|
|
|
// It will return resp if at all possible, even if err is set
|
|
|
|
func (api *Client) CallJSON(opts *Opts, request interface{}, response interface{}) (resp *http.Response, err error) {
|
2017-07-05 18:48:43 +02:00
|
|
|
var requestBody []byte
|
|
|
|
// Marshal the request if given
|
|
|
|
if request != nil {
|
|
|
|
requestBody, err = json.Marshal(request)
|
2015-10-04 23:08:31 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-09-21 11:18:34 +02:00
|
|
|
// Set the body up as a JSON object if no body passed in
|
2017-07-05 18:48:43 +02:00
|
|
|
if opts.Body == nil {
|
2017-09-21 11:18:34 +02:00
|
|
|
opts = opts.Copy()
|
|
|
|
opts.ContentType = "application/json"
|
2017-07-05 18:48:43 +02:00
|
|
|
opts.Body = bytes.NewBuffer(requestBody)
|
|
|
|
}
|
|
|
|
}
|
2017-09-21 11:18:34 +02:00
|
|
|
isMultipart := (opts.MultipartParams != nil || opts.MultipartMetadataName != "") && opts.Body != nil
|
2017-07-05 18:48:43 +02:00
|
|
|
if isMultipart {
|
2017-09-21 11:18:34 +02:00
|
|
|
params := opts.MultipartParams
|
|
|
|
if params == nil {
|
|
|
|
params = url.Values{}
|
|
|
|
}
|
|
|
|
if opts.MultipartMetadataName != "" {
|
|
|
|
params.Add(opts.MultipartMetadataName, string(requestBody))
|
|
|
|
}
|
|
|
|
opts = opts.Copy()
|
|
|
|
opts.Body, opts.ContentType, err = MultipartUpload(opts.Body, params, opts.MultipartContentName, opts.MultipartFileName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-10-04 23:08:31 +02:00
|
|
|
}
|
|
|
|
resp, err = api.Call(opts)
|
|
|
|
if err != nil {
|
|
|
|
return resp, err
|
|
|
|
}
|
2015-11-27 19:25:52 +01:00
|
|
|
if response == nil || opts.NoResponse {
|
2015-10-30 09:40:14 +01:00
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
err = DecodeJSON(resp, response)
|
2015-10-04 23:08:31 +02:00
|
|
|
return resp, err
|
|
|
|
}
|