forked from grafana/grafana-api-golang-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.go
74 lines (67 loc) · 2.49 KB
/
user.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
package gapi
import (
"bytes"
"encoding/json"
"fmt"
"net/url"
"time"
)
// User represents a Grafana user. It is structured after the UserProfileDTO
// struct in the Grafana codebase.
type User struct {
Id int64 `json:"id,omitempty"`
Email string `json:"email,omitempty"`
Name string `json:"name,omitempty"`
Login string `json:"login,omitempty"`
Theme string `json:"theme,omitempty"`
OrgId int64 `json:"orgId,omitempty"`
IsAdmin bool `json:"isGrafanaAdmin,omitempty"`
IsDisabled bool `json:"isDisabled,omitempty"`
IsExternal bool `json:"isExternal,omitempty"`
UpdatedAt time.Time `json:"updatedAt,omitempty"`
CreatedAt time.Time `json:"createdAt,omitempty"`
AuthLabels []string `json:"authLabels,omitempty"`
AvatarUrl string `json:"avatarUrl,omitempty"`
Password string `json:"password,omitempty"`
}
// UserSearch represents a Grafana user as returned by API endpoints that
// return a collection of Grafana users. This representation of user has
// reduced and differing fields. It is structured after the UserSearchHitDTO
// struct in the Grafana codebase.
type UserSearch struct {
Id int64 `json:"id,omitempty"`
Email string `json:"email,omitempty"`
Name string `json:"name,omitempty"`
Login string `json:"login,omitempty"`
IsAdmin bool `json:"isAdmin,omitempty"`
IsDisabled bool `json:"isDisabled,omitempty"`
LastSeenAt time.Time `json:"lastSeenAt,omitempty"`
LastSeenAtAge string `json:"lastSeenAtAge,omitempty"`
AuthLabels []string `json:"authLabels,omitempty"`
AvatarUrl string `json:"avatarUrl,omitempty"`
}
// Users fetches and returns Grafana users.
func (c *Client) Users() (users []UserSearch, err error) {
err = c.request("GET", "/api/users", nil, nil, &users)
return
}
// User fetches a user by ID.
func (c *Client) User(id int64) (user User, err error) {
err = c.request("GET", fmt.Sprintf("/api/users/%d", id), nil, nil, &user)
return
}
// UserByEmail fetches a user by email address.
func (c *Client) UserByEmail(email string) (user User, err error) {
query := url.Values{}
query.Add("loginOrEmail", email)
err = c.request("GET", "/api/users/lookup", query, nil, &user)
return
}
// UserUpdate updates a user by ID.
func (c *Client) UserUpdate(u User) error {
data, err := json.Marshal(u)
if err != nil {
return err
}
return c.request("PUT", fmt.Sprintf("/api/users/%d", u.Id), nil, bytes.NewBuffer(data), nil)
}