454 lines
11 KiB
Go
454 lines
11 KiB
Go
|
// Copyright (c) 2015-2018 Jeevanandam M (jeeva@myjeeva.com), All rights reserved.
|
||
|
// resty source code and usage is governed by a MIT style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package resty
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"encoding/xml"
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
"io"
|
||
|
"mime/multipart"
|
||
|
"net/http"
|
||
|
"net/url"
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
"reflect"
|
||
|
"strings"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
//‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
||
|
// Request Middleware(s)
|
||
|
//___________________________________
|
||
|
|
||
|
func parseRequestURL(c *Client, r *Request) error {
|
||
|
// GitHub #103 Path Params
|
||
|
if len(r.pathParams) > 0 {
|
||
|
for p, v := range r.pathParams {
|
||
|
r.URL = strings.Replace(r.URL, "{"+p+"}", v, -1)
|
||
|
}
|
||
|
}
|
||
|
if len(c.pathParams) > 0 {
|
||
|
for p, v := range c.pathParams {
|
||
|
r.URL = strings.Replace(r.URL, "{"+p+"}", v, -1)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Parsing request URL
|
||
|
reqURL, err := url.Parse(r.URL)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
// If Request.URL is relative path then added c.HostURL into
|
||
|
// the request URL otherwise Request.URL will be used as-is
|
||
|
if !reqURL.IsAbs() {
|
||
|
r.URL = reqURL.String()
|
||
|
if len(r.URL) > 0 && r.URL[0] != '/' {
|
||
|
r.URL = "/" + r.URL
|
||
|
}
|
||
|
|
||
|
reqURL, err = url.Parse(c.HostURL + r.URL)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Adding Query Param
|
||
|
query := make(url.Values)
|
||
|
for k, v := range c.QueryParam {
|
||
|
for _, iv := range v {
|
||
|
query.Add(k, iv)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
for k, v := range r.QueryParam {
|
||
|
// remove query param from client level by key
|
||
|
// since overrides happens for that key in the request
|
||
|
query.Del(k)
|
||
|
|
||
|
for _, iv := range v {
|
||
|
query.Add(k, iv)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// GitHub #123 Preserve query string order partially.
|
||
|
// Since not feasible in `SetQuery*` resty methods, because
|
||
|
// standard package `url.Encode(...)` sorts the query params
|
||
|
// alphabetically
|
||
|
if len(query) > 0 {
|
||
|
if IsStringEmpty(reqURL.RawQuery) {
|
||
|
reqURL.RawQuery = query.Encode()
|
||
|
} else {
|
||
|
reqURL.RawQuery = reqURL.RawQuery + "&" + query.Encode()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
r.URL = reqURL.String()
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func parseRequestHeader(c *Client, r *Request) error {
|
||
|
hdr := make(http.Header)
|
||
|
for k := range c.Header {
|
||
|
hdr[k] = append(hdr[k], c.Header[k]...)
|
||
|
}
|
||
|
|
||
|
for k := range r.Header {
|
||
|
hdr.Del(k)
|
||
|
hdr[k] = append(hdr[k], r.Header[k]...)
|
||
|
}
|
||
|
|
||
|
if IsStringEmpty(hdr.Get(hdrUserAgentKey)) {
|
||
|
hdr.Set(hdrUserAgentKey, fmt.Sprintf(hdrUserAgentValue, Version))
|
||
|
}
|
||
|
|
||
|
ct := hdr.Get(hdrContentTypeKey)
|
||
|
if IsStringEmpty(hdr.Get(hdrAcceptKey)) && !IsStringEmpty(ct) &&
|
||
|
(IsJSONType(ct) || IsXMLType(ct)) {
|
||
|
hdr.Set(hdrAcceptKey, hdr.Get(hdrContentTypeKey))
|
||
|
}
|
||
|
|
||
|
r.Header = hdr
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func parseRequestBody(c *Client, r *Request) (err error) {
|
||
|
if isPayloadSupported(r.Method, c.AllowGetMethodPayload) {
|
||
|
// Handling Multipart
|
||
|
if r.isMultiPart && !(r.Method == MethodPatch) {
|
||
|
if err = handleMultipart(c, r); err != nil {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
goto CL
|
||
|
}
|
||
|
|
||
|
// Handling Form Data
|
||
|
if len(c.FormData) > 0 || len(r.FormData) > 0 {
|
||
|
handleFormData(c, r)
|
||
|
|
||
|
goto CL
|
||
|
}
|
||
|
|
||
|
// Handling Request body
|
||
|
if r.Body != nil {
|
||
|
handleContentType(c, r)
|
||
|
|
||
|
if err = handleRequestBody(c, r); err != nil {
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
CL:
|
||
|
// by default resty won't set content length, you can if you want to :)
|
||
|
if (c.setContentLength || r.setContentLength) && r.bodyBuf != nil {
|
||
|
r.Header.Set(hdrContentLengthKey, fmt.Sprintf("%d", r.bodyBuf.Len()))
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func createHTTPRequest(c *Client, r *Request) (err error) {
|
||
|
if r.bodyBuf == nil {
|
||
|
if reader, ok := r.Body.(io.Reader); ok {
|
||
|
r.RawRequest, err = http.NewRequest(r.Method, r.URL, reader)
|
||
|
} else {
|
||
|
r.RawRequest, err = http.NewRequest(r.Method, r.URL, nil)
|
||
|
}
|
||
|
} else {
|
||
|
r.RawRequest, err = http.NewRequest(r.Method, r.URL, r.bodyBuf)
|
||
|
}
|
||
|
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Assign close connection option
|
||
|
r.RawRequest.Close = c.closeConnection
|
||
|
|
||
|
// Add headers into http request
|
||
|
r.RawRequest.Header = r.Header
|
||
|
|
||
|
// Add cookies into http request
|
||
|
for _, cookie := range c.Cookies {
|
||
|
r.RawRequest.AddCookie(cookie)
|
||
|
}
|
||
|
|
||
|
// it's for non-http scheme option
|
||
|
if r.RawRequest.URL != nil && r.RawRequest.URL.Scheme == "" {
|
||
|
r.RawRequest.URL.Scheme = c.scheme
|
||
|
r.RawRequest.URL.Host = r.URL
|
||
|
}
|
||
|
|
||
|
// Use context if it was specified
|
||
|
r.addContextIfAvailable()
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func addCredentials(c *Client, r *Request) error {
|
||
|
var isBasicAuth bool
|
||
|
// Basic Auth
|
||
|
if r.UserInfo != nil { // takes precedence
|
||
|
r.RawRequest.SetBasicAuth(r.UserInfo.Username, r.UserInfo.Password)
|
||
|
isBasicAuth = true
|
||
|
} else if c.UserInfo != nil {
|
||
|
r.RawRequest.SetBasicAuth(c.UserInfo.Username, c.UserInfo.Password)
|
||
|
isBasicAuth = true
|
||
|
}
|
||
|
|
||
|
if !c.DisableWarn {
|
||
|
if isBasicAuth && !strings.HasPrefix(r.URL, "https") {
|
||
|
c.Log.Println("WARNING - Using Basic Auth in HTTP mode is not secure.")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Token Auth
|
||
|
if !IsStringEmpty(r.Token) { // takes precedence
|
||
|
r.RawRequest.Header.Set(hdrAuthorizationKey, "Bearer "+r.Token)
|
||
|
} else if !IsStringEmpty(c.Token) {
|
||
|
r.RawRequest.Header.Set(hdrAuthorizationKey, "Bearer "+c.Token)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func requestLogger(c *Client, r *Request) error {
|
||
|
if c.Debug {
|
||
|
rr := r.RawRequest
|
||
|
reqLog := "\n---------------------- REQUEST LOG -----------------------\n" +
|
||
|
fmt.Sprintf("%s %s %s\n", r.Method, rr.URL.RequestURI(), rr.Proto) +
|
||
|
fmt.Sprintf("HOST : %s\n", rr.URL.Host) +
|
||
|
fmt.Sprintf("HEADERS:\n") +
|
||
|
composeHeaders(rr.Header) + "\n" +
|
||
|
fmt.Sprintf("BODY :\n%v\n", r.fmtBodyString()) +
|
||
|
"----------------------------------------------------------\n"
|
||
|
|
||
|
c.Log.Print(reqLog)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
//‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
||
|
// Response Middleware(s)
|
||
|
//___________________________________
|
||
|
|
||
|
func responseLogger(c *Client, res *Response) error {
|
||
|
if c.Debug {
|
||
|
resLog := "\n---------------------- RESPONSE LOG -----------------------\n" +
|
||
|
fmt.Sprintf("STATUS : %s\n", res.Status()) +
|
||
|
fmt.Sprintf("RECEIVED AT : %v\n", res.ReceivedAt().Format(time.RFC3339Nano)) +
|
||
|
fmt.Sprintf("RESPONSE TIME : %v\n", res.Time()) +
|
||
|
"HEADERS:\n" +
|
||
|
composeHeaders(res.Header()) + "\n"
|
||
|
|
||
|
if res.Request.isSaveResponse {
|
||
|
resLog += fmt.Sprintf("BODY :\n***** RESPONSE WRITTEN INTO FILE *****\n")
|
||
|
} else {
|
||
|
resLog += fmt.Sprintf("BODY :\n%v\n", res.fmtBodyString(c.debugBodySizeLimit))
|
||
|
}
|
||
|
resLog += "----------------------------------------------------------\n"
|
||
|
|
||
|
c.Log.Print(resLog)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func parseResponseBody(c *Client, res *Response) (err error) {
|
||
|
// Handles only JSON or XML content type
|
||
|
ct := firstNonEmpty(res.Header().Get(hdrContentTypeKey), res.Request.fallbackContentType)
|
||
|
if IsJSONType(ct) || IsXMLType(ct) {
|
||
|
// HTTP status code > 199 and < 300, considered as Result
|
||
|
if res.IsSuccess() {
|
||
|
if res.Request.Result != nil {
|
||
|
err = Unmarshalc(c, ct, res.body, res.Request.Result)
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// HTTP status code > 399, considered as Error
|
||
|
if res.IsError() {
|
||
|
// global error interface
|
||
|
if res.Request.Error == nil && c.Error != nil {
|
||
|
res.Request.Error = reflect.New(c.Error).Interface()
|
||
|
}
|
||
|
|
||
|
if res.Request.Error != nil {
|
||
|
err = Unmarshalc(c, ct, res.body, res.Request.Error)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func handleMultipart(c *Client, r *Request) (err error) {
|
||
|
r.bodyBuf = acquireBuffer()
|
||
|
w := multipart.NewWriter(r.bodyBuf)
|
||
|
|
||
|
for k, v := range c.FormData {
|
||
|
for _, iv := range v {
|
||
|
if err = w.WriteField(k, iv); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
for k, v := range r.FormData {
|
||
|
for _, iv := range v {
|
||
|
if strings.HasPrefix(k, "@") { // file
|
||
|
err = addFile(w, k[1:], iv)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
} else { // form value
|
||
|
if err = w.WriteField(k, iv); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// #21 - adding io.Reader support
|
||
|
if len(r.multipartFiles) > 0 {
|
||
|
for _, f := range r.multipartFiles {
|
||
|
err = addFileReader(w, f)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// GitHub #130 adding multipart field support with content type
|
||
|
if len(r.multipartFields) > 0 {
|
||
|
for _, mf := range r.multipartFields {
|
||
|
if err = addMultipartFormField(w, mf); err != nil {
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
r.Header.Set(hdrContentTypeKey, w.FormDataContentType())
|
||
|
err = w.Close()
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func handleFormData(c *Client, r *Request) {
|
||
|
formData := url.Values{}
|
||
|
|
||
|
for k, v := range c.FormData {
|
||
|
for _, iv := range v {
|
||
|
formData.Add(k, iv)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
for k, v := range r.FormData {
|
||
|
// remove form data field from client level by key
|
||
|
// since overrides happens for that key in the request
|
||
|
formData.Del(k)
|
||
|
|
||
|
for _, iv := range v {
|
||
|
formData.Add(k, iv)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
r.bodyBuf = bytes.NewBuffer([]byte(formData.Encode()))
|
||
|
r.Header.Set(hdrContentTypeKey, formContentType)
|
||
|
r.isFormData = true
|
||
|
}
|
||
|
|
||
|
func handleContentType(c *Client, r *Request) {
|
||
|
contentType := r.Header.Get(hdrContentTypeKey)
|
||
|
if IsStringEmpty(contentType) {
|
||
|
contentType = DetectContentType(r.Body)
|
||
|
r.Header.Set(hdrContentTypeKey, contentType)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func handleRequestBody(c *Client, r *Request) (err error) {
|
||
|
var bodyBytes []byte
|
||
|
contentType := r.Header.Get(hdrContentTypeKey)
|
||
|
kind := kindOf(r.Body)
|
||
|
r.bodyBuf = nil
|
||
|
|
||
|
if reader, ok := r.Body.(io.Reader); ok {
|
||
|
if c.setContentLength || r.setContentLength { // keep backward compability
|
||
|
r.bodyBuf = acquireBuffer()
|
||
|
_, err = r.bodyBuf.ReadFrom(reader)
|
||
|
r.Body = nil
|
||
|
} else {
|
||
|
// Otherwise buffer less processing for `io.Reader`, sounds good.
|
||
|
return
|
||
|
}
|
||
|
} else if b, ok := r.Body.([]byte); ok {
|
||
|
bodyBytes = b
|
||
|
} else if s, ok := r.Body.(string); ok {
|
||
|
bodyBytes = []byte(s)
|
||
|
} else if IsJSONType(contentType) &&
|
||
|
(kind == reflect.Struct || kind == reflect.Map || kind == reflect.Slice) {
|
||
|
bodyBytes, err = jsonMarshal(c, r, r.Body)
|
||
|
} else if IsXMLType(contentType) && (kind == reflect.Struct) {
|
||
|
bodyBytes, err = xml.Marshal(r.Body)
|
||
|
}
|
||
|
|
||
|
if bodyBytes == nil && r.bodyBuf == nil {
|
||
|
err = errors.New("unsupported 'Body' type/value")
|
||
|
}
|
||
|
|
||
|
// if any errors during body bytes handling, return it
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// []byte into Buffer
|
||
|
if bodyBytes != nil && r.bodyBuf == nil {
|
||
|
r.bodyBuf = acquireBuffer()
|
||
|
_, _ = r.bodyBuf.Write(bodyBytes)
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func saveResponseIntoFile(c *Client, res *Response) error {
|
||
|
if res.Request.isSaveResponse {
|
||
|
file := ""
|
||
|
|
||
|
if len(c.outputDirectory) > 0 && !filepath.IsAbs(res.Request.outputFile) {
|
||
|
file += c.outputDirectory + string(filepath.Separator)
|
||
|
}
|
||
|
|
||
|
file = filepath.Clean(file + res.Request.outputFile)
|
||
|
if err := createDirectory(filepath.Dir(file)); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
outFile, err := os.Create(file)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
defer closeq(outFile)
|
||
|
|
||
|
// io.Copy reads maximum 32kb size, it is perfect for large file download too
|
||
|
defer closeq(res.RawResponse.Body)
|
||
|
|
||
|
written, err := io.Copy(outFile, res.RawResponse.Body)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
res.size = written
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|