Skip to content
This repository was archived by the owner on Mar 17, 2021. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8fc7eeb

Browse files
medainshansnqyr
andcommittedAug 5, 2020
Add organization ID to client connection using header.
This seems like the right place to do so - the resource API calls that require an organization ID that are not-quite RESTful also would need authentication with a user that is an administrator for the organization. So putting it in at this level works out, and also avoids adding orgID parameters all over the place. Co-authored-by: hansnqyr <luke@nqyr.io>
1 parent 249aba6 commit 8fc7eeb

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed
 

‎client.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@ import (
2020
type Client struct {
2121
key string
2222
baseURL url.URL
23+
orgID string
2324
*http.Client
2425
}
2526

2627
//New creates a new grafana client
2728
//auth can be in user:pass format, or it can be an api key
28-
func New(auth, baseURL string) (*Client, error) {
29+
func New(auth, baseURL string, orgID int) (*Client, error) {
2930
u, err := url.Parse(baseURL)
3031
if err != nil {
3132
return nil, err
@@ -40,6 +41,7 @@ func New(auth, baseURL string) (*Client, error) {
4041
return &Client{
4142
key,
4243
*u,
44+
fmt.Sprintf("%d", orgID),
4345
cleanhttp.DefaultClient(),
4446
}, nil
4547
}
@@ -88,6 +90,9 @@ func (c *Client) newRequest(method, requestPath string, query url.Values, body i
8890
if err != nil {
8991
return req, err
9092
}
93+
94+
req.Header.Add("X-Grafana-Org-Id", c.orgID)
95+
9196
if c.key != "" {
9297
req.Header.Add("Authorization", c.key)
9398
}

‎client_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
)
99

1010
func TestNew_basicAuth(t *testing.T) {
11-
c, err := New("user:pass", "http://my-grafana.com")
11+
c, err := New("user:pass", "http://my-grafana.com", 1)
1212
if err != nil {
1313
t.Errorf("expected error to be nil; got: %s", err.Error())
1414
}
@@ -20,7 +20,7 @@ func TestNew_basicAuth(t *testing.T) {
2020
}
2121

2222
func TestNew_tokenAuth(t *testing.T) {
23-
c, err := New("123", "http://my-grafana.com")
23+
c, err := New("123", "http://my-grafana.com", 1)
2424
if err != nil {
2525
t.Errorf("expected error to be nil; got: %s", err.Error())
2626
}
@@ -37,9 +37,9 @@ func TestNew_tokenAuth(t *testing.T) {
3737
}
3838

3939
func TestNew_invalidURL(t *testing.T) {
40-
_, err := New("123", "://my-grafana.com")
40+
_, err := New("123", "://my-grafana.com", 1)
4141

42-
expected := "parse \"://my-grafana.com\": missing protocol scheme"
42+
expected := "parse \"://my-grafana.com:\" missing protocol scheme"
4343
if err.Error() != expected {
4444
t.Errorf("expected error: %v; got: %s", expected, err.Error())
4545
}

‎mock.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ func gapiTestTools(code int, body string) (*mockServer, *Client) {
4040
Host: "my-grafana.com",
4141
}
4242

43-
client := &Client{"my-key", url, httpClient}
43+
client := &Client{"my-key", url, "1", httpClient}
4444
return mock, client
4545
}

0 commit comments

Comments
 (0)
This repository has been archived.