-
Notifications
You must be signed in to change notification settings - Fork 2
/
access.go
59 lines (49 loc) · 1.14 KB
/
access.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
package adguard
import (
"encoding/json"
"fmt"
"net/http"
"strings"
)
// GetAccess - Returns the current access list
func (c *ADG) GetAccess() (*AccessList, error) {
// initialize request
req, err := http.NewRequest("GET", fmt.Sprintf("%s/access/list", c.HostURL), nil)
if err != nil {
return nil, err
}
// perform request
body, err := c.doRequest(req)
if err != nil {
return nil, err
}
// convert response to AccessList object
var accessList AccessList
err = json.Unmarshal(body, &accessList)
if err != nil {
return nil, err
}
return &accessList, nil
}
// SetAccess - Sets the access list
func (c *ADG) SetAccess(accessList AccessList) (*AccessList, error) {
// convert provided access list to JSON
rb, err := json.Marshal(accessList)
if err != nil {
return nil, err
}
// initialize request
req, err := http.NewRequest("POST", fmt.Sprintf("%s/access/set", c.HostURL), strings.NewReader(string(rb)))
if err != nil {
return nil, err
}
// perform request
body, err := c.doRequest(req)
if err != nil {
return nil, err
}
// appease Go
_ = body
// return the same access list that was passed
return &accessList, nil
}