-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaccount_stats.go
220 lines (156 loc) · 4.82 KB
/
account_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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
// Copyright 2019 nic.at GmbH. All rights reserved.
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package rc0go
import (
"encoding/json"
"gopkg.in/resty.v1"
"strconv"
)
type AccountStatsService service
//
type TopZone struct {
ID int `json:"id, omitempty"`
Domain string `json:"domain, omitempty"`
Count int `json:"qc, omitempty"`
}
//
type TopQuery struct {
Query
ID int `json:"id, omitempty"`
Domain string `json:"domain, omitempty"`
}
//
type TopNXDomain struct {
NXDomain
ID int `json:"id, omitempty"`
Domain string `json:"domain, omitempty"`
}
//
type TopMagnitude struct {
ID int `json:"id, omitempty"`
Domain string `json:"domain, omitempty"`
Magnitude float32 `json:"mag, omitempty"`
}
type QueryCount struct {
Date string `json:"date, omitempty"`
Count int `json:"count, omitempty"`
NXCount int `json:"nxcount, omitempty"`
}
type CountryQueryCount struct {
CountryCode string `json:"cc, omitempty"`
Country string `json:"country, omitempty"`
Region string `json:"region, omitempty"`
Subregion string `json:"subregion, omitempty"`
QueryCount int `json:"qc, omitempty"`
}
// Return the Top 1000 zones from your account with the highest number of queries in the given past period
//
// rcode0 API doc: https://my.rcodezero.at/api-doc/#api-account-statistics-top-zones-get
func (s *AccountStatsService) TopZones(days int) ([]*TopZone, error) {
resp, err := accStatsRequest(s, days, RC0AccStatsTopZones)
if err != nil {
return nil, err
}
var topZones []*TopZone
err = json.Unmarshal(resp.Body(), &topZones)
if err != nil {
return nil, err
}
return topZones, nil
}
// Returns the Top 1000 QNAMEs for zones in your account with the highest number of queries in the given past period
//
// rcode0 API doc: https://my.rcodezero.at/api-doc/#api-account-statistics-top-qnames-get
func (s *AccountStatsService) TopQNames(days int) ([]*TopQuery, error) {
resp, err := accStatsRequest(s, days, RC0AccStatsTopQNames)
if err != nil {
return nil, err
}
var topQNames []*TopQuery
err = json.Unmarshal(resp.Body(), &topQNames)
if err != nil {
return nil, err
}
return topQNames, nil
}
// Returns the Top 1000 QNAMEs with QTYPE answered with NXDOMAIN for zones in your account with the highest number of queries in the given past period
//
// rcode0 API doc: https://my.rcodezero.at/api-doc/#api-account-statistics-top-nxdomains-get
func (s *AccountStatsService) TopNXDomains(days int) ([]*TopNXDomain, error) {
resp, err := accStatsRequest(s, days, RC0AccStatsTopNXDomains)
if err != nil {
return nil, err
}
var topNXDomains []*TopNXDomain
err = json.Unmarshal(resp.Body(), &topNXDomains)
if err != nil {
return nil, err
}
return topNXDomains, nil
}
// Returns the Top 1000 zone in your account with the highest dns magnitude in the given past period
//
// rcode0 API doc: https://my.rcodezero.at/api-doc/#api-account-statistics-top-dns-magnitude-get
func (s *AccountStatsService) TopMagnitude(days int) ([]*TopMagnitude, error) {
resp, err := accStatsRequest(s, days, RC0AccStatsTopDNSMagnitude)
if err != nil {
return nil, err
}
var topMagnitudes []*TopMagnitude
err = json.Unmarshal(resp.Body(), &topMagnitudes)
if err != nil {
return nil, err
}
return topMagnitudes, nil
}
// Get the total number of queries and the number of queries answered with NXDOMAIN for all zones in your account for the given past period
//
// rcode0 API doc: https://my.rcodezero.at/api-doc/#api-account-statistics-queries-get
func (s *AccountStatsService) TotalQueryCount(days int) ([]*QueryCount, error) {
resp, err := accStatsRequest(s, days, RC0AccStatsQueries)
if err != nil {
return nil, err
}
var queryCounts []*QueryCount
err = json.Unmarshal(resp.Body(), &queryCounts)
if err != nil {
return nil, err
}
return queryCounts, nil
}
// Return the number of Queries grouped by the originating country/subregion and region for the given past period
//
// rcode0 API doc: https://my.rcodezero.at/api-doc/#api-account-statistics-countries-get
func (s *AccountStatsService) TotalQueryCountPerCountry(days int) ([]*CountryQueryCount, error) {
resp, err := accStatsRequest(s, days, RC0AccStatsCountries)
if err != nil {
return nil, err
}
var queryCounts []*CountryQueryCount
err = json.Unmarshal(resp.Body(), &queryCounts)
if err != nil {
return nil, err
}
return queryCounts, nil
}
// Helper method to avoid code duplication
func accStatsRequest(s *AccountStatsService, days int, operation string) (*resty.Response, error) {
req := s.client.NewRequest()
d := strconv.Itoa(days)
if days > 0 {
req.SetQueryParam(
"days", d,
)
}
resp, err := req.Get(
s.client.BaseURL.String() +
s.client.APIVersion +
operation,
)
if err != nil {
return nil, err
}
return resp, nil
}