123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- // +build !go1.7
- // Copyright (c) 2015-2019 Jeevanandam M (jeeva@myjeeva.com)
- // 2016 Andrew Grigorev (https://github.com/ei-grad)
- // 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/json"
- "net/http"
- "net/url"
- "time"
- )
- // Request type is used to compose and send individual request from client
- // go-resty is provide option override client level settings such as
- // Auth Token, Basic Auth credentials, Header, Query Param, Form Data, Error object
- // and also you can add more options for that particular request
- type Request struct {
- URL string
- Method string
- Token string
- QueryParam url.Values
- FormData url.Values
- Header http.Header
- Time time.Time
- Body interface{}
- Result interface{}
- Error interface{}
- RawRequest *http.Request
- SRV *SRVRecord
- UserInfo *User
- isMultiPart bool
- isFormData bool
- setContentLength bool
- isSaveResponse bool
- notParseResponse bool
- jsonEscapeHTML bool
- outputFile string
- fallbackContentType string
- pathParams map[string]string
- client *Client
- bodyBuf *bytes.Buffer
- multipartFiles []*File
- multipartFields []*MultipartField
- }
- func (r *Request) addContextIfAvailable() {
- // nothing to do for golang<1.7
- }
- func (r *Request) isContextCancelledIfAvailable() bool {
- // just always return false golang<1.7
- return false
- }
- // for !go1.7
- var noescapeJSONMarshal = json.Marshal
|