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