Ash Wilson | 89466cc | 2014-08-29 11:27:39 -0400 | [diff] [blame] | 1 | package gophercloud |
| 2 | |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 3 | import ( |
| 4 | "bytes" |
| 5 | "encoding/json" |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 6 | "io" |
| 7 | "io/ioutil" |
| 8 | "net/http" |
Jon Perritt | 2b5e3e1 | 2015-02-13 12:15:08 -0700 | [diff] [blame] | 9 | "strings" |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 10 | ) |
| 11 | |
Jon Perritt | 2b5e3e1 | 2015-02-13 12:15:08 -0700 | [diff] [blame] | 12 | // DefaultUserAgent is the default User-Agent string set in the request header. |
jrperritt | b101323 | 2016-02-10 19:01:53 -0600 | [diff] [blame] | 13 | const DefaultUserAgent = "gophercloud/2.0.0" |
Jon Perritt | 2b5e3e1 | 2015-02-13 12:15:08 -0700 | [diff] [blame] | 14 | |
| 15 | // UserAgent represents a User-Agent header. |
| 16 | type UserAgent struct { |
| 17 | // prepend is the slice of User-Agent strings to prepend to DefaultUserAgent. |
| 18 | // All the strings to prepend are accumulated and prepended in the Join method. |
| 19 | prepend []string |
| 20 | } |
| 21 | |
| 22 | // Prepend prepends a user-defined string to the default User-Agent string. Users |
| 23 | // may pass in one or more strings to prepend. |
| 24 | func (ua *UserAgent) Prepend(s ...string) { |
| 25 | ua.prepend = append(s, ua.prepend...) |
| 26 | } |
| 27 | |
| 28 | // Join concatenates all the user-defined User-Agend strings with the default |
| 29 | // Gophercloud User-Agent string. |
| 30 | func (ua *UserAgent) Join() string { |
| 31 | uaSlice := append(ua.prepend, DefaultUserAgent) |
| 32 | return strings.Join(uaSlice, " ") |
| 33 | } |
| 34 | |
Jamie Hannaford | b280dea | 2014-10-24 15:14:06 +0200 | [diff] [blame] | 35 | // ProviderClient stores details that are required to interact with any |
| 36 | // services within a specific provider's API. |
Ash Wilson | 89466cc | 2014-08-29 11:27:39 -0400 | [diff] [blame] | 37 | // |
Jamie Hannaford | b280dea | 2014-10-24 15:14:06 +0200 | [diff] [blame] | 38 | // Generally, you acquire a ProviderClient by calling the NewClient method in |
| 39 | // the appropriate provider's child package, providing whatever authentication |
| 40 | // credentials are required. |
Ash Wilson | 89466cc | 2014-08-29 11:27:39 -0400 | [diff] [blame] | 41 | type ProviderClient struct { |
Jamie Hannaford | b280dea | 2014-10-24 15:14:06 +0200 | [diff] [blame] | 42 | // IdentityBase is the base URL used for a particular provider's identity |
| 43 | // service - it will be used when issuing authenticatation requests. It |
| 44 | // should point to the root resource of the identity service, not a specific |
| 45 | // identity version. |
Ash Wilson | 09694b9 | 2014-09-09 14:08:27 -0400 | [diff] [blame] | 46 | IdentityBase string |
| 47 | |
Jamie Hannaford | b280dea | 2014-10-24 15:14:06 +0200 | [diff] [blame] | 48 | // IdentityEndpoint is the identity endpoint. This may be a specific version |
| 49 | // of the identity service. If this is the case, this endpoint is used rather |
| 50 | // than querying versions first. |
Ash Wilson | c6372fe | 2014-09-03 11:24:52 -0400 | [diff] [blame] | 51 | IdentityEndpoint string |
| 52 | |
Jamie Hannaford | b280dea | 2014-10-24 15:14:06 +0200 | [diff] [blame] | 53 | // TokenID is the ID of the most recently issued valid token. |
Ash Wilson | 89466cc | 2014-08-29 11:27:39 -0400 | [diff] [blame] | 54 | TokenID string |
Ash Wilson | b8401a7 | 2014-09-08 17:07:49 -0400 | [diff] [blame] | 55 | |
Jamie Hannaford | b280dea | 2014-10-24 15:14:06 +0200 | [diff] [blame] | 56 | // EndpointLocator describes how this provider discovers the endpoints for |
| 57 | // its constituent services. |
Ash Wilson | b8401a7 | 2014-09-08 17:07:49 -0400 | [diff] [blame] | 58 | EndpointLocator EndpointLocator |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 59 | |
| 60 | // HTTPClient allows users to interject arbitrary http, https, or other transit behaviors. |
| 61 | HTTPClient http.Client |
Jon Perritt | 2b5e3e1 | 2015-02-13 12:15:08 -0700 | [diff] [blame] | 62 | |
| 63 | // UserAgent represents the User-Agent header in the HTTP request. |
| 64 | UserAgent UserAgent |
Jon Perritt | f4052c6 | 2015-02-14 09:48:18 -0700 | [diff] [blame] | 65 | |
Jon Perritt | f4052c6 | 2015-02-14 09:48:18 -0700 | [diff] [blame] | 66 | // ReauthFunc is the function used to re-authenticate the user if the request |
| 67 | // fails with a 401 HTTP response code. This a needed because there may be multiple |
| 68 | // authentication functions for different Identity service versions. |
Jon Perritt | 6fe7c40 | 2015-02-17 12:24:53 -0700 | [diff] [blame] | 69 | ReauthFunc func() error |
Ash Wilson | 89466cc | 2014-08-29 11:27:39 -0400 | [diff] [blame] | 70 | } |
| 71 | |
Jamie Hannaford | b280dea | 2014-10-24 15:14:06 +0200 | [diff] [blame] | 72 | // AuthenticatedHeaders returns a map of HTTP headers that are common for all |
| 73 | // authenticated service requests. |
Ash Wilson | 89466cc | 2014-08-29 11:27:39 -0400 | [diff] [blame] | 74 | func (client *ProviderClient) AuthenticatedHeaders() map[string]string { |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 75 | if client.TokenID == "" { |
| 76 | return map[string]string{} |
| 77 | } |
Ash Wilson | 89466cc | 2014-08-29 11:27:39 -0400 | [diff] [blame] | 78 | return map[string]string{"X-Auth-Token": client.TokenID} |
| 79 | } |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 80 | |
| 81 | // RequestOpts customizes the behavior of the provider.Request() method. |
| 82 | type RequestOpts struct { |
| 83 | // JSONBody, if provided, will be encoded as JSON and used as the body of the HTTP request. The |
| 84 | // content type of the request will default to "application/json" unless overridden by MoreHeaders. |
| 85 | // It's an error to specify both a JSONBody and a RawBody. |
| 86 | JSONBody interface{} |
jrperritt | b101323 | 2016-02-10 19:01:53 -0600 | [diff] [blame] | 87 | // RawBody contains an io.Reader that will be consumed by the request directly. No content-type |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 88 | // will be set unless one is provided explicitly by MoreHeaders. |
jrperritt | b101323 | 2016-02-10 19:01:53 -0600 | [diff] [blame] | 89 | RawBody io.Reader |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 90 | // JSONResponse, if provided, will be populated with the contents of the response body parsed as |
| 91 | // JSON. |
Ash Wilson | 2491b4c | 2015-02-12 16:13:39 -0500 | [diff] [blame] | 92 | JSONResponse interface{} |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 93 | // OkCodes contains a list of numeric HTTP status codes that should be interpreted as success. If |
| 94 | // the response has a different code, an error will be returned. |
| 95 | OkCodes []int |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 96 | // MoreHeaders specifies additional HTTP headers to be provide on the request. If a header is |
| 97 | // provided with a blank value (""), that header will be *omitted* instead: use this to suppress |
| 98 | // the default Accept header or an inferred Content-Type, for example. |
| 99 | MoreHeaders map[string]string |
Jon Perritt | e0f9e4f | 2016-02-21 21:41:03 -0600 | [diff] [blame] | 100 | // ErrorType specifies the resource error type to return if an error is encountered. |
| 101 | // This lets resources override default error messages based on the response status code. |
| 102 | ErrorContext error |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 103 | } |
| 104 | |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 105 | var applicationJSON = "application/json" |
| 106 | |
| 107 | // Request performs an HTTP request using the ProviderClient's current HTTPClient. An authentication |
| 108 | // header will automatically be provided. |
| 109 | func (client *ProviderClient) Request(method, url string, options RequestOpts) (*http.Response, error) { |
jrperritt | b101323 | 2016-02-10 19:01:53 -0600 | [diff] [blame] | 110 | var body io.Reader |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 111 | var contentType *string |
| 112 | |
| 113 | // Derive the content body by either encoding an arbitrary object as JSON, or by taking a provided |
Brendan ODonnell | a69b347 | 2015-04-27 13:59:41 -0500 | [diff] [blame] | 114 | // io.ReadSeeker as-is. Default the content-type to application/json. |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 115 | if options.JSONBody != nil { |
| 116 | if options.RawBody != nil { |
| 117 | panic("Please provide only one of JSONBody or RawBody to gophercloud.Request().") |
| 118 | } |
| 119 | |
| 120 | rendered, err := json.Marshal(options.JSONBody) |
| 121 | if err != nil { |
| 122 | return nil, err |
| 123 | } |
| 124 | |
| 125 | body = bytes.NewReader(rendered) |
| 126 | contentType = &applicationJSON |
| 127 | } |
| 128 | |
| 129 | if options.RawBody != nil { |
| 130 | body = options.RawBody |
| 131 | } |
| 132 | |
| 133 | // Construct the http.Request. |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 134 | req, err := http.NewRequest(method, url, body) |
| 135 | if err != nil { |
| 136 | return nil, err |
| 137 | } |
| 138 | |
| 139 | // Populate the request headers. Apply options.MoreHeaders last, to give the caller the chance to |
| 140 | // modify or omit any header. |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 141 | if contentType != nil { |
Ash Wilson | 54d62fa | 2015-02-12 15:09:46 -0500 | [diff] [blame] | 142 | req.Header.Set("Content-Type", *contentType) |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 143 | } |
Ash Wilson | 54d62fa | 2015-02-12 15:09:46 -0500 | [diff] [blame] | 144 | req.Header.Set("Accept", applicationJSON) |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 145 | |
| 146 | for k, v := range client.AuthenticatedHeaders() { |
| 147 | req.Header.Add(k, v) |
| 148 | } |
| 149 | |
Jon Perritt | f0a1fee | 2015-02-13 12:53:23 -0700 | [diff] [blame] | 150 | // Set the User-Agent header |
| 151 | req.Header.Set("User-Agent", client.UserAgent.Join()) |
| 152 | |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 153 | if options.MoreHeaders != nil { |
| 154 | for k, v := range options.MoreHeaders { |
| 155 | if v != "" { |
Ash Wilson | 54d62fa | 2015-02-12 15:09:46 -0500 | [diff] [blame] | 156 | req.Header.Set(k, v) |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 157 | } else { |
| 158 | req.Header.Del(k) |
| 159 | } |
| 160 | } |
| 161 | } |
| 162 | |
Kostiantyn Yarovyi | 3fa30bb | 2015-11-25 17:21:03 +0200 | [diff] [blame] | 163 | // Set connection parameter to close the connection immediately when we've got the response |
| 164 | req.Close = true |
Jon Perritt | aaafa61 | 2016-02-21 18:23:38 -0600 | [diff] [blame] | 165 | |
Jon Perritt | 2b5e3e1 | 2015-02-13 12:15:08 -0700 | [diff] [blame] | 166 | // Issue the request. |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 167 | resp, err := client.HTTPClient.Do(req) |
| 168 | if err != nil { |
| 169 | return nil, err |
| 170 | } |
| 171 | |
Jamie Hannaford | 647cea5 | 2015-03-23 17:15:07 +0100 | [diff] [blame] | 172 | // Allow default OkCodes if none explicitly set |
| 173 | if options.OkCodes == nil { |
| 174 | options.OkCodes = defaultOkCodes(method) |
| 175 | } |
| 176 | |
| 177 | // Validate the HTTP response status. |
| 178 | var ok bool |
| 179 | for _, code := range options.OkCodes { |
| 180 | if resp.StatusCode == code { |
| 181 | ok = true |
| 182 | break |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 183 | } |
Jamie Hannaford | 647cea5 | 2015-03-23 17:15:07 +0100 | [diff] [blame] | 184 | } |
Jon Perritt | 28256b3 | 2016-02-29 03:06:36 -0600 | [diff] [blame^] | 185 | |
Jamie Hannaford | 647cea5 | 2015-03-23 17:15:07 +0100 | [diff] [blame] | 186 | if !ok { |
| 187 | body, _ := ioutil.ReadAll(resp.Body) |
| 188 | resp.Body.Close() |
Jon Perritt | 28256b3 | 2016-02-29 03:06:36 -0600 | [diff] [blame^] | 189 | //pc := make([]uintptr, 1) // at least 1 entry needed |
| 190 | //runtime.Callers(2, pc) |
| 191 | //f := runtime.FuncForPC(pc[0]) |
Jon Perritt | e0f9e4f | 2016-02-21 21:41:03 -0600 | [diff] [blame] | 192 | respErr := &ErrUnexpectedResponseCode{ |
Jamie Hannaford | 647cea5 | 2015-03-23 17:15:07 +0100 | [diff] [blame] | 193 | URL: url, |
| 194 | Method: method, |
| 195 | Expected: options.OkCodes, |
| 196 | Actual: resp.StatusCode, |
| 197 | Body: body, |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 198 | } |
Jon Perritt | 28256b3 | 2016-02-29 03:06:36 -0600 | [diff] [blame^] | 199 | respErr.Function = "gophercloud.ProviderClient.Request" |
Jon Perritt | e0f9e4f | 2016-02-21 21:41:03 -0600 | [diff] [blame] | 200 | |
| 201 | errType := options.ErrorContext |
| 202 | switch resp.StatusCode { |
| 203 | case http.StatusBadRequest: |
| 204 | err = ErrDefault400{respErr} |
| 205 | if error400er, ok := errType.(Err400er); ok { |
| 206 | err = error400er.Error400(respErr) |
| 207 | } |
| 208 | case http.StatusUnauthorized: |
| 209 | if client.ReauthFunc != nil { |
| 210 | err = client.ReauthFunc() |
| 211 | if err != nil { |
Jon Perritt | 28256b3 | 2016-02-29 03:06:36 -0600 | [diff] [blame^] | 212 | e := &ErrUnableToReauthenticate{} |
| 213 | e.OriginalError = respErr |
| 214 | return nil, e |
Jon Perritt | e0f9e4f | 2016-02-21 21:41:03 -0600 | [diff] [blame] | 215 | } |
| 216 | if options.RawBody != nil { |
Jon Perritt | 28256b3 | 2016-02-29 03:06:36 -0600 | [diff] [blame^] | 217 | if seeker, ok := options.RawBody.(io.Seeker); ok { |
| 218 | seeker.Seek(0, 0) |
Jon Perritt | e0f9e4f | 2016-02-21 21:41:03 -0600 | [diff] [blame] | 219 | } |
Jon Perritt | e0f9e4f | 2016-02-21 21:41:03 -0600 | [diff] [blame] | 220 | } |
| 221 | resp, err = client.Request(method, url, options) |
| 222 | if err != nil { |
| 223 | switch err.(type) { |
| 224 | case *ErrUnexpectedResponseCode: |
Jon Perritt | 28256b3 | 2016-02-29 03:06:36 -0600 | [diff] [blame^] | 225 | e := &ErrErrorAfterReauthentication{} |
| 226 | e.OriginalError = err.(*ErrUnexpectedResponseCode) |
| 227 | return nil, e |
Jon Perritt | e0f9e4f | 2016-02-21 21:41:03 -0600 | [diff] [blame] | 228 | default: |
Jon Perritt | 28256b3 | 2016-02-29 03:06:36 -0600 | [diff] [blame^] | 229 | e := &ErrErrorAfterReauthentication{} |
| 230 | e.OriginalError = err |
| 231 | return nil, e |
Jon Perritt | e0f9e4f | 2016-02-21 21:41:03 -0600 | [diff] [blame] | 232 | } |
| 233 | } |
| 234 | return resp, nil |
| 235 | } |
| 236 | err = ErrDefault401{respErr} |
| 237 | if error401er, ok := errType.(Err401er); ok { |
| 238 | err = error401er.Error401(respErr) |
| 239 | } |
| 240 | case http.StatusNotFound: |
| 241 | err = ErrDefault404{respErr} |
| 242 | if error404er, ok := errType.(Err404er); ok { |
| 243 | err = error404er.Error404(respErr) |
| 244 | } |
| 245 | case http.StatusMethodNotAllowed: |
| 246 | err = ErrDefault405{respErr} |
| 247 | if error405er, ok := errType.(Err405er); ok { |
| 248 | err = error405er.Error405(respErr) |
| 249 | } |
| 250 | case http.StatusRequestTimeout: |
| 251 | err = ErrDefault408{respErr} |
| 252 | if error408er, ok := errType.(Err408er); ok { |
| 253 | err = error408er.Error408(respErr) |
| 254 | } |
| 255 | case 429: |
| 256 | err = ErrDefault429{respErr} |
| 257 | if error429er, ok := errType.(Err429er); ok { |
| 258 | err = error429er.Error429(respErr) |
| 259 | } |
| 260 | case http.StatusInternalServerError: |
| 261 | err = ErrDefault500{respErr} |
| 262 | if error500er, ok := errType.(Err500er); ok { |
| 263 | err = error500er.Error500(respErr) |
| 264 | } |
| 265 | case http.StatusServiceUnavailable: |
| 266 | err = ErrDefault503{respErr} |
| 267 | if error503er, ok := errType.(Err503er); ok { |
| 268 | err = error503er.Error503(respErr) |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | if err == nil { |
| 273 | err = respErr |
| 274 | } |
| 275 | |
| 276 | return resp, err |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | // Parse the response body as JSON, if requested to do so. |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 280 | if options.JSONResponse != nil { |
| 281 | defer resp.Body.Close() |
Pratik Mallya | ee675fd | 2015-09-14 14:07:30 -0500 | [diff] [blame] | 282 | if err := json.NewDecoder(resp.Body).Decode(options.JSONResponse); err != nil { |
| 283 | return nil, err |
| 284 | } |
Ash Wilson | 89eec33 | 2015-02-12 13:40:32 -0500 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | return resp, nil |
| 288 | } |
Jamie Hannaford | 647cea5 | 2015-03-23 17:15:07 +0100 | [diff] [blame] | 289 | |
| 290 | func defaultOkCodes(method string) []int { |
| 291 | switch { |
| 292 | case method == "GET": |
| 293 | return []int{200} |
| 294 | case method == "POST": |
| 295 | return []int{201, 202} |
| 296 | case method == "PUT": |
| 297 | return []int{201, 202} |
Krzysztof Kwapisiewicz | 136d2c2 | 2016-02-03 15:36:06 +0100 | [diff] [blame] | 298 | case method == "PATCH": |
| 299 | return []int{200, 204} |
Jamie Hannaford | 647cea5 | 2015-03-23 17:15:07 +0100 | [diff] [blame] | 300 | case method == "DELETE": |
| 301 | return []int{202, 204} |
| 302 | } |
| 303 | |
| 304 | return []int{} |
| 305 | } |
Jamie Hannaford | 2a9e74f | 2015-03-24 14:55:24 +0100 | [diff] [blame] | 306 | |
Jon Perritt | aaafa61 | 2016-02-21 18:23:38 -0600 | [diff] [blame] | 307 | // Get calls `Request` with the "GET" HTTP verb. |
| 308 | func (client *ProviderClient) Get(url string, JSONResponse interface{}, opts *RequestOpts) (*http.Response, error) { |
Jamie Hannaford | 2a9e74f | 2015-03-24 14:55:24 +0100 | [diff] [blame] | 309 | if opts == nil { |
| 310 | opts = &RequestOpts{} |
| 311 | } |
| 312 | if JSONResponse != nil { |
| 313 | opts.JSONResponse = JSONResponse |
| 314 | } |
| 315 | return client.Request("GET", url, *opts) |
| 316 | } |
| 317 | |
Jon Perritt | aaafa61 | 2016-02-21 18:23:38 -0600 | [diff] [blame] | 318 | // Post calls `Request` with the "POST" HTTP verb. |
| 319 | func (client *ProviderClient) Post(url string, JSONBody interface{}, JSONResponse interface{}, opts *RequestOpts) (*http.Response, error) { |
Jamie Hannaford | 2a9e74f | 2015-03-24 14:55:24 +0100 | [diff] [blame] | 320 | if opts == nil { |
| 321 | opts = &RequestOpts{} |
| 322 | } |
| 323 | |
Brendan ODonnell | a69b347 | 2015-04-27 13:59:41 -0500 | [diff] [blame] | 324 | if v, ok := (JSONBody).(io.ReadSeeker); ok { |
Jamie Hannaford | 2a9e74f | 2015-03-24 14:55:24 +0100 | [diff] [blame] | 325 | opts.RawBody = v |
| 326 | } else if JSONBody != nil { |
| 327 | opts.JSONBody = JSONBody |
| 328 | } |
| 329 | |
| 330 | if JSONResponse != nil { |
| 331 | opts.JSONResponse = JSONResponse |
| 332 | } |
| 333 | |
| 334 | return client.Request("POST", url, *opts) |
| 335 | } |
| 336 | |
Jon Perritt | aaafa61 | 2016-02-21 18:23:38 -0600 | [diff] [blame] | 337 | // Put calls `Request` with the "PUT" HTTP verb. |
| 338 | func (client *ProviderClient) Put(url string, JSONBody interface{}, JSONResponse interface{}, opts *RequestOpts) (*http.Response, error) { |
Jamie Hannaford | 2a9e74f | 2015-03-24 14:55:24 +0100 | [diff] [blame] | 339 | if opts == nil { |
| 340 | opts = &RequestOpts{} |
| 341 | } |
| 342 | |
Brendan ODonnell | a69b347 | 2015-04-27 13:59:41 -0500 | [diff] [blame] | 343 | if v, ok := (JSONBody).(io.ReadSeeker); ok { |
Jamie Hannaford | 2a9e74f | 2015-03-24 14:55:24 +0100 | [diff] [blame] | 344 | opts.RawBody = v |
| 345 | } else if JSONBody != nil { |
| 346 | opts.JSONBody = JSONBody |
| 347 | } |
| 348 | |
| 349 | if JSONResponse != nil { |
| 350 | opts.JSONResponse = JSONResponse |
| 351 | } |
| 352 | |
| 353 | return client.Request("PUT", url, *opts) |
| 354 | } |
| 355 | |
Jon Perritt | aaafa61 | 2016-02-21 18:23:38 -0600 | [diff] [blame] | 356 | // Patch calls `Request` with the "PATCH" HTTP verb. |
| 357 | func (client *ProviderClient) Patch(url string, JSONBody interface{}, JSONResponse interface{}, opts *RequestOpts) (*http.Response, error) { |
Krzysztof Kwapisiewicz | 136d2c2 | 2016-02-03 15:36:06 +0100 | [diff] [blame] | 358 | if opts == nil { |
| 359 | opts = &RequestOpts{} |
| 360 | } |
| 361 | |
| 362 | if v, ok := (JSONBody).(io.ReadSeeker); ok { |
| 363 | opts.RawBody = v |
| 364 | } else if JSONBody != nil { |
| 365 | opts.JSONBody = JSONBody |
| 366 | } |
| 367 | |
| 368 | if JSONResponse != nil { |
| 369 | opts.JSONResponse = JSONResponse |
| 370 | } |
| 371 | |
| 372 | return client.Request("PATCH", url, *opts) |
| 373 | } |
| 374 | |
Jon Perritt | aaafa61 | 2016-02-21 18:23:38 -0600 | [diff] [blame] | 375 | // Delete calls `Request` with the "DELETE" HTTP verb. |
Jamie Hannaford | 2a9e74f | 2015-03-24 14:55:24 +0100 | [diff] [blame] | 376 | func (client *ProviderClient) Delete(url string, opts *RequestOpts) (*http.Response, error) { |
| 377 | if opts == nil { |
| 378 | opts = &RequestOpts{} |
| 379 | } |
| 380 | |
| 381 | return client.Request("DELETE", url, *opts) |
| 382 | } |