This repository has been archived by the owner on Mar 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
client.go
105 lines (90 loc) · 2.14 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
package gapi
import (
"bytes"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"path"
"strings"
"github.com/hashicorp/go-cleanhttp"
)
// Client is a Grafana API client.
type Client struct {
key string
baseURL url.URL
*http.Client
}
//New creates a new grafana client
//auth can be in user:pass format, or it can be an api key
func New(auth, baseURL string) (*Client, error) {
u, err := url.Parse(baseURL)
if err != nil {
return nil, err
}
key := ""
if strings.Contains(auth, ":") {
split := strings.SplitN(auth, ":", 2)
u.User = url.UserPassword(split[0], split[1])
} else if auth != "" {
key = fmt.Sprintf("Bearer %s", auth)
}
return &Client{
key,
*u,
cleanhttp.DefaultClient(),
}, 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.Do(r)
if err != nil {
return err
}
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.key != "" {
req.Header.Add("Authorization", c.key)
}
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
}