forked from grafana/grafana-api-golang-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
orgs.go
87 lines (72 loc) · 1.78 KB
/
orgs.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
package gapi
import (
"bytes"
"encoding/json"
"fmt"
)
// Org represents a Grafana org.
type Org struct {
ID int64 `json:"id"`
Name string `json:"name"`
}
// Orgs fetches and returns the Grafana orgs.
func (c *Client) Orgs() ([]Org, error) {
orgs := make([]Org, 0)
err := c.request("GET", "/api/orgs/", nil, nil, &orgs)
if err != nil {
return orgs, err
}
return orgs, err
}
// OrgByName fetches and returns the org whose name it's passed.
func (c *Client) OrgByName(name string) (Org, error) {
org := Org{}
err := c.request("GET", fmt.Sprintf("/api/orgs/name/%s", name), nil, nil, &org)
if err != nil {
return org, err
}
return org, err
}
// Org fetches and returns the org whose ID it's passed.
func (c *Client) Org(id int64) (Org, error) {
org := Org{}
err := c.request("GET", fmt.Sprintf("/api/orgs/%d", id), nil, nil, &org)
if err != nil {
return org, err
}
return org, err
}
// NewOrg creates a new Grafana org.
func (c *Client) NewOrg(name string) (int64, error) {
id := int64(0)
dataMap := map[string]string{
"name": name,
}
data, err := json.Marshal(dataMap)
if err != nil {
return id, err
}
tmp := struct {
ID int64 `json:"orgId"`
}{}
err = c.request("POST", "/api/orgs", nil, bytes.NewBuffer(data), &tmp)
if err != nil {
return id, err
}
return tmp.ID, err
}
// UpdateOrg updates a Grafana org.
func (c *Client) UpdateOrg(id int64, name string) error {
dataMap := map[string]string{
"name": name,
}
data, err := json.Marshal(dataMap)
if err != nil {
return err
}
return c.request("PUT", fmt.Sprintf("/api/orgs/%d", id), nil, bytes.NewBuffer(data), nil)
}
// DeleteOrg deletes the Grafana org whose ID it's passed.
func (c *Client) DeleteOrg(id int64) error {
return c.request("DELETE", fmt.Sprintf("/api/orgs/%d", id), nil, nil, nil)
}