This repository has been archived by the owner on Mar 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
folder_permissions.go
65 lines (55 loc) · 1.9 KB
/
folder_permissions.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
package gapi
import (
"bytes"
"encoding/json"
"fmt"
)
// FolderPermission has information such as a folder, user, team, role and permission.
type FolderPermission struct {
Id int64 `json:"id"`
FolderUid string `json:"uid"`
UserId int64 `json:"userId"`
TeamId int64 `json:"teamId"`
Role string `json:"role"`
IsFolder bool `json:"isFolder"`
// Permission levels are
// 1 = View
// 2 = Edit
// 4 = Admin
Permission int64 `json:"permission"`
PermissionName string `json:"permissionName"`
// optional fields
FolderId int64 `json:"folderId,omitempty"`
DashboardId int64 `json:"dashboardId,omitempty"`
}
// PermissionItems represents Grafana folder permission items.
type PermissionItems struct {
Items []*PermissionItem `json:"items"`
}
// PermissionItem represents a Grafana folder permission item.
type PermissionItem struct {
// As you can see the docs, each item has a pair of [Role|TeamId|UserId] and Permission.
// unnecessary fields are omitted.
Role string `json:"role,omitempty"`
TeamId int64 `json:"teamId,omitempty"`
UserId int64 `json:"userId,omitempty"`
Permission int64 `json:"permission"`
}
// FolderPermissions fetches and returns the permissions for the folder whose ID it's passed.
func (c *Client) FolderPermissions(fid string) ([]*FolderPermission, error) {
permissions := make([]*FolderPermission, 0)
err := c.request("GET", fmt.Sprintf("/api/folders/%s/permissions", fid), nil, nil, &permissions)
if err != nil {
return permissions, err
}
return permissions, nil
}
// UpdateFolderPermissions remove existing permissions if items are not included in the request.
func (c *Client) UpdateFolderPermissions(fid string, items *PermissionItems) error {
path := fmt.Sprintf("/api/folders/%s/permissions", fid)
data, err := json.Marshal(items)
if err != nil {
return err
}
return c.request("POST", path, nil, bytes.NewBuffer(data), nil)
}