forked from grafana/grafana-api-golang-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.go
73 lines (61 loc) · 1.84 KB
/
admin.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
package gapi
import (
"encoding/json"
"fmt"
)
// PauseAllAlertsResponse represents the response body for a PauseAllAlerts request.
type PauseAllAlertsResponse struct {
AlertsAffected int64 `json:"alertsAffected,omitempty"`
State string `json:"state,omitempty"`
Message string `json:"message,omitempty"`
}
// CreateUser creates a Grafana user.
func (c *Client) CreateUser(user User) (int64, error) {
id := int64(0)
data, err := json.Marshal(user)
if err != nil {
return id, err
}
created := struct {
ID int64 `json:"id"`
}{}
err = c.request("POST", "/api/admin/users", nil, data, &created)
if err != nil {
return id, err
}
return created.ID, err
}
// DeleteUser deletes a Grafana user.
func (c *Client) DeleteUser(id int64) error {
return c.request("DELETE", fmt.Sprintf("/api/admin/users/%d", id), nil, nil, nil)
}
// UpdateUserPassword updates a user password.
func (c *Client) UpdateUserPassword(id int64, password string) error {
body := map[string]string{"password": password}
data, err := json.Marshal(body)
if err != nil {
return err
}
return c.request("PUT", fmt.Sprintf("/api/admin/users/%d/password", id), nil, data, nil)
}
// UpdateUserPermissions sets a user's admin status.
func (c *Client) UpdateUserPermissions(id int64, isAdmin bool) error {
body := map[string]bool{"isGrafanaAdmin": isAdmin}
data, err := json.Marshal(body)
if err != nil {
return err
}
return c.request("PUT", fmt.Sprintf("/api/admin/users/%d/permissions", id), nil, data, nil)
}
// PauseAllAlerts pauses all Grafana alerts.
func (c *Client) PauseAllAlerts() (PauseAllAlertsResponse, error) {
result := PauseAllAlertsResponse{}
data, err := json.Marshal(PauseAlertRequest{
Paused: true,
})
if err != nil {
return result, err
}
err = c.request("POST", "/api/admin/pause-all-alerts", nil, data, &result)
return result, err
}