-
Notifications
You must be signed in to change notification settings - Fork 2
/
stats.go
59 lines (49 loc) · 1.28 KB
/
stats.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"
)
// GetStatsConfig - Returns statistics configuration parameters
func (c *ADG) GetStatsConfig() (*GetStatsConfigResponse, error) {
// initialize request
req, err := http.NewRequest("GET", fmt.Sprintf("%s/stats/config", 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 GetStatsConfigResponse object
var statsConfig GetStatsConfigResponse
err = json.Unmarshal(body, &statsConfig)
if err != nil {
return nil, err
}
return &statsConfig, nil
}
// SetStatsConfig - Sets statistics configuration parameters
func (c *ADG) SetStatsConfig(statsConfig GetStatsConfigResponse) (*GetStatsConfigResponse, error) {
// convert provided statistics config to JSON
rb, err := json.Marshal(statsConfig)
if err != nil {
return nil, err
}
// initialize request
req, err := http.NewRequest("PUT", fmt.Sprintf("%s/stats/config/update", 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 statistics config that was passed
return &statsConfig, nil
}