forked from grafana/grafana-api-golang-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
123 lines (103 loc) · 2.62 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
package gapi
import (
"bytes"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"path"
"strconv"
"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
// 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
}
// 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 {
r, err := c.newRequest(method, requestPath, query, body)
if err != nil {
return err
}
resp, err := c.client.Do(r)
if err != nil {
return err
}
defer resp.Body.Close()
bodyContents, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
if os.Getenv("GF_LOG") != "" {
log.Printf("response status %d with body %v", resp.StatusCode, string(bodyContents))
}
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 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
}