This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
/
user.go
86 lines (78 loc) · 2.7 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
75
76
77
78
79
80
81
82
83
84
85
86
package gapi
import (
"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) {
var (
page = 1
newUsers []UserSearch
)
for len(newUsers) > 0 || page == 1 {
query := url.Values{}
query.Add("page", fmt.Sprintf("%d", page))
if err = c.request("GET", "/api/users", query, nil, &newUsers); err != nil {
return
}
users = append(users, newUsers...)
page++
}
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, data, nil)
}