forked from grafana/grafana-api-golang-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
165 lines (139 loc) · 3.77 KB
/
client.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package gapi
import (
"bytes"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"path"
"strconv"
"time"
"github.com/hashicorp/go-cleanhttp"
)
// Client is a Grafana API client.
type Client struct {
config Config
baseURL url.URL
client *http.Client
}
// Config contains client configuration.
type Config struct {
// APIKey is an optional API key.
APIKey string
// BasicAuth is optional basic auth credentials.
BasicAuth *url.Userinfo
// HTTPHeaders are optional HTTP headers.
HTTPHeaders map[string]string
// Client provides an optional HTTP client, otherwise a default will be used.
Client *http.Client
// OrgID provides an optional organization ID, ignored when using APIKey, BasicAuth defaults to last used org
OrgID int64
// NumRetries contains the number of attempted retries
NumRetries int
}
// New creates a new Grafana client.
func New(baseURL string, cfg Config) (*Client, error) {
u, err := url.Parse(baseURL)
if err != nil {
return nil, err
}
if cfg.BasicAuth != nil {
u.User = cfg.BasicAuth
}
cli := cfg.Client
if cli == nil {
cli = cleanhttp.DefaultClient()
}
return &Client{
config: cfg,
baseURL: *u,
client: cli,
}, nil
}
func (c *Client) request(method, requestPath string, query url.Values, body io.Reader, responseStruct interface{}) error {
var (
req *http.Request
resp *http.Response
err error
bodyContents []byte
)
// retry logic
for n := 0; n <= c.config.NumRetries; n++ {
req, err = c.newRequest(method, requestPath, query, body)
if err != nil {
return err
}
// Wait a bit if that's not the first request
if n != 0 {
time.Sleep(time.Second * 5)
}
resp, err = c.client.Do(req)
// If err is not nil, retry again
// That's either caused by client policy, or failure to speak HTTP (such as network connectivity problem). A
// non-2xx status code doesn't cause an error.
if err != nil {
continue
}
defer resp.Body.Close()
// read the body (even on non-successful HTTP status codes), as that's what the unit tests expect
bodyContents, err = ioutil.ReadAll(resp.Body)
// if there was an error reading the body, try again
if err != nil {
continue
}
// Exit the loop if we have something final to return. This is anything < 500, if it's not a 429.
if resp.StatusCode < http.StatusInternalServerError && resp.StatusCode != http.StatusTooManyRequests {
break
}
}
if err != nil {
return err
}
if os.Getenv("GF_LOG") != "" {
log.Printf("response status %d with body %v", resp.StatusCode, string(bodyContents))
}
// check status code.
if resp.StatusCode >= 400 {
return fmt.Errorf("status: %d, body: %v", resp.StatusCode, string(bodyContents))
}
if responseStruct == nil {
return nil
}
err = json.Unmarshal(bodyContents, responseStruct)
if err != nil {
return err
}
return nil
}
func (c *Client) newRequest(method, requestPath string, query url.Values, body io.Reader) (*http.Request, error) {
url := c.baseURL
url.Path = path.Join(url.Path, requestPath)
url.RawQuery = query.Encode()
req, err := http.NewRequest(method, url.String(), body)
if err != nil {
return req, err
}
if c.config.APIKey != "" {
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", c.config.APIKey))
} else if c.config.OrgID != 0 {
req.Header.Add("X-Grafana-Org-Id", strconv.FormatInt(c.config.OrgID, 10))
}
if c.config.HTTPHeaders != nil {
for k, v := range c.config.HTTPHeaders {
req.Header.Add(k, v)
}
}
if os.Getenv("GF_LOG") != "" {
if body == nil {
log.Printf("request (%s) to %s with no body data", method, url.String())
} else {
log.Printf("request (%s) to %s with body data: %s", method, url.String(), body.(*bytes.Buffer).String())
}
}
req.Header.Add("Content-Type", "application/json")
return req, err
}