-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhelpers.go
43 lines (36 loc) · 864 Bytes
/
helpers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package ibmcloudauth
import (
"fmt"
"io/ioutil"
"net/http"
)
func httpRequest(client *http.Client, r *http.Request) ([]byte, int, error) {
resp, err := client.Do(r)
if err != nil {
return nil, 0, err
}
defer closeResponse(resp)
var body []byte
if resp.Body != nil {
body, err = ioutil.ReadAll(resp.Body)
if err != nil {
return nil, resp.StatusCode, err
}
}
return body, resp.StatusCode, nil
}
func httpRequestCheckStatus(client *http.Client, r *http.Request, httpStatus int) ([]byte, error) {
body, status, err := httpRequest(client, r)
if err != nil {
return body, err
}
if status != httpStatus {
return nil, fmt.Errorf("unexpected http status code: %v with response %v", status, string(body))
}
return body, nil
}
func closeResponse(resp *http.Response) {
if resp != nil && resp.Body != nil {
_ = resp.Body.Close()
}
}