forked from nkatsaros/go-sabnzbd
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresults.go
355 lines (321 loc) · 11.4 KB
/
results.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
package sabnzbd
import (
"encoding/json"
"fmt"
"strconv"
"time"
)
type BytesFromGB int
func (b *BytesFromGB) UnmarshalJSON(data []byte) error {
var gb float64
var gbStr string
err := json.Unmarshal(data, &gb)
if err != nil {
err = json.Unmarshal(data, &gbStr)
if err != nil {
return err
}
gb, err = strconv.ParseFloat(gbStr, 32)
if err != nil {
return err
}
}
*b = BytesFromGB(gb * float64(GByte))
return nil
}
type BytesFromMB int
func (b *BytesFromMB) UnmarshalJSON(data []byte) error {
var mb float64
var mbStr string
err := json.Unmarshal(data, &mb)
if err != nil {
err = json.Unmarshal(data, &mbStr)
if err != nil {
return err
}
mb, err = strconv.ParseFloat(mbStr, 32)
if err != nil {
return err
}
}
*b = BytesFromMB(mb * float64(MByte))
return nil
}
type BytesFromKB int
func (b *BytesFromKB) UnmarshalJSON(data []byte) error {
var kb float64
var kbStr string
err := json.Unmarshal(data, &kb)
if err != nil {
err = json.Unmarshal(data, &kbStr)
if err != nil {
return err
}
kb, err = strconv.ParseFloat(kbStr, 32)
if err != nil {
return err
}
}
*b = BytesFromKB(kb * float64(KByte))
return nil
}
type BytesFromB int
func (b *BytesFromB) UnmarshalJSON(data []byte) error {
var bytes float64
var bytesStr string
err := json.Unmarshal(data, &bytes)
if err != nil {
err = json.Unmarshal(data, &bytesStr)
if err != nil {
return err
}
bytes, err = strconv.ParseFloat(bytesStr, 32)
if err != nil {
return err
}
}
*b = BytesFromB(bytes)
return nil
}
type SabDuration time.Duration
func (d *SabDuration) UnmarshalJSON(data []byte) error {
var str string
err := json.Unmarshal(data, &str)
if err != nil {
return err
}
var h, m, s time.Duration
if _, err = fmt.Sscanf(str, `%d:%2d:%2d`, &h, &m, &s); err != nil {
return err
}
*d = SabDuration(h*time.Hour + m*time.Minute + s*time.Second)
return nil
}
type apiError struct {
ErrorMsg string `json:"error,omitempty"`
}
func (e apiError) Error() string {
return e.ErrorMsg
}
type versionResponse struct {
Version string `json:"version"`
}
type authResponse struct {
Auth string `json:"auth"`
}
type SimpleQueueResponse struct {
TimeLeft SabDuration `json:"timeleft"`
Size BytesFromMB `json:"mb"`
NoOfSlots int `json:"noofslots"`
Paused bool `json:"paused"`
BytesLeft BytesFromMB `json:"mbleft"`
DownloadDiskFreeSpace BytesFromGB `json:"diskspace1"`
CompleteDiskFreeSpace BytesFromGB `json:"diskspace2"`
BytesPerSec BytesFromKB `json:"kbpersec"`
Jobs []SimpleQueueJob `json:"jobs"`
apiError
}
type SimpleQueueJob struct {
ID string `json:"id"`
MsgID string `json:"msgid"`
Filename string `json:"filename"`
BytesLeft BytesFromMB `json:"mbleft"`
Bytes BytesFromMB `json:"mb"`
}
type AdvancedQueueResponse struct {
CacheLimit string `json:"cache_limit"`
Categories []string `json:"categories"`
Scripts []string `json:"scripts"`
Paused bool `json:"paused"`
NewRelURL string `json:"new_rel_url"`
RestartRequested bool `json:"restart_req"`
Slots []AdvancedQueueSlot `json:"slots"`
HelpURI string `json:"helpuri"`
Uptime string `json:"uptime"`
RefreshRate string `json:"refresh_rate"`
IsVerbose bool `json:"isverbose"`
Start int `json:"start"`
Version string `json:"version"`
DownloadDiskTotalSpace BytesFromGB `json:"diskspacetotal1"`
CompleteDiskTotalSpace BytesFromGB `json:"diskspacetotal2"`
ColorScheme string `json:"color_scheme"`
Darwin bool `json:"darwin"`
NT bool `json:"nt"`
Status string `json:"status"`
LastWarning string `json:"last_warning"`
HaveWarnings string `json:"have_warnings"`
CacheArt string `json:"cache_art"`
FinishAction *string `json:"finishaction"`
NoOfSlots int `json:"noofslots"`
CacheSize string `json:"cache_size"`
Finish int `json:"finish"`
NewRelease string `json:"new_release"`
PauseInt string `json:"pause_int"`
Bytes BytesFromMB `json:"mb"`
BytesLeft BytesFromMB `json:"mbleft"`
TimeLeft SabDuration `json:"timeleft"`
ETA string `json:"eta"`
DownloadDiskFreeSpace BytesFromGB `json:"diskspace1"`
CompleteDiskFreeSpace BytesFromGB `json:"diskspace2"`
NZBQuota string `json:"nzb_quota"`
LoadAverage string `json:"loadavg"`
Limit int `json:"limit"`
BytesPerSec BytesFromKB `json:"kbpersec"`
SpeedLimit string `json:"speedlimit"`
WebDir string `json:"webdir"`
QueueDetails string `json:"queue_details"`
apiError
}
type advancedQueueResponse *AdvancedQueueResponse
func (r *AdvancedQueueResponse) UnmarshalJSON(data []byte) error {
var queue struct {
Queue json.RawMessage `json:"queue"`
}
if err := json.Unmarshal(data, &queue); err != nil {
return err
}
err := json.Unmarshal(queue.Queue, advancedQueueResponse(r))
return err
}
type AdvancedQueueSlot struct {
Status string `json:"status"`
Index int `json:"index"`
ETA string `json:"eta"`
TimeLeft SabDuration `json:"timeleft"`
AverageAge string `json:"avg_age"`
Script string `json:"script"`
MsgID string `json:"msgid"`
Verbosity string `json:"verbosity"`
Bytes BytesFromMB `json:"mb"`
Filename string `json:"filename"`
Priority string `json:"priority"`
Category string `json:"cat"`
BytesLeft BytesFromMB `json:"mbleft"`
Percentage string `json:"percentage"`
NzoID string `json:"nzo_id"`
UnpackOpts string `json:"unpackopts"`
Size string `json:"size"`
}
type HistoryResponse struct {
TotalSize string `json:"total_size"`
MonthSize string `json:"month_size"`
WeekSize string `json:"week_size"`
CacheLimit string `json:"cache_limit"`
Paused bool `json:"paused"`
NewRelURL string `json:"string"`
RestartRequested bool `json:"restart_req"`
Slots []HistorySlot `json:"slots"`
HelpURI string `json:"helpuri"`
Uptime string `json:"uptime"`
Version string `json:"version"`
DownloadDiskTotalSpace BytesFromGB `json:"diskspacetotal1"`
CompleteDiskTotalSpace BytesFromGB `json:"diskspacetotal2"`
ColorScheme string `json:"color_scheme"`
Darwin bool `json:"darwin"`
NT bool `json:"nt"`
Status string `json:"status"`
LastWarning string `json:"last_warning"`
HaveWarnings string `json:"have_warnings"`
CacheArt string `json:"cache_art"`
FinishAction *string `json:"finishaction"`
NoOfSlots int `json:"noofslots"`
CacheSize string `json:"cache_size"`
NewRelease string `json:"new_release"`
PauseInt string `json:"pause_int"`
Bytes BytesFromMB `json:"mb"`
BytesLeft BytesFromMB `json:"mbleft"`
TimeLeft SabDuration `json:"timeleft"`
ETA string `json:"eta"`
DownloadDiskFreeSpace BytesFromGB `json:"diskspace1"`
CompleteDiskFreeSpace BytesFromGB `json:"diskspace2"`
NZBQuota string `json:"nzb_quota"`
LoadAverage string `json:"loadavg"`
BytesPerSec BytesFromKB `json:"kbpersec"`
SpeedLimit string `json:"speedlimit"`
WebDir string `json:"webdir"`
apiError
}
type historyResponse *HistoryResponse
func (r *HistoryResponse) UnmarshalJSON(data []byte) error {
var history struct {
History json.RawMessage `json:"history"`
}
if err := json.Unmarshal(data, &history); err != nil {
return err
}
err := json.Unmarshal(history.History, historyResponse(r))
return err
}
type HistorySlot struct {
ActionLine string `json:"action_line"`
ShowDetails string `json:"show_details"`
ScriptLog string `json:"script_log"`
FailMessage string `json:"fail_message"`
Loaded bool `json:"loaded"`
ID int `json:"id"`
Size string `json:"size"`
Category string `json:"category"`
PP string `json:"pp"`
Completeness int `json:"completeness"`
Script string `json:"script"`
NZBName string `json:"nzb_name"`
DownloadTime int `json:"download_time"` // change to time.Duration
Storage string `json:"storage"`
Status string `json:"status"`
ScriptLine string `json:"script_line"`
Completed int `json:"completed"` // change to time.Time
NzoID string `json:"nzo_id"`
Downloaded int `json:"downloaded"` // change to time.Time
Report string `json:"report"`
Path string `json:"path"`
PostProcessingTime int `json:"postproc_time"` // change to time.Duration
Name string `json:"name"`
URL string `json:"url"`
Bytes int `json:"bytes"`
URLInfo string `json:"url_info"`
StageLogs []HistoryStageLog `json:"stage_log"`
}
type HistoryStageLog struct {
Name string `json:"name"`
Actions []string `json:"actions"`
}
type warningsResponse struct {
Warnings []string `json:"warnings"`
apiError
}
type categoriesResponse struct {
Categories []string `json:"categories"`
apiError
}
type scriptsResponse struct {
Scripts []string `json:"scripts"`
apiError
}
type addFileResponse struct {
NzoIDs []string `json:"nzo_ids"`
apiError
}
type ItemFilesResponse struct {
Files []ItemFile `json:"files"`
apiError
}
type ItemFile struct {
ID string `json:"id"`
NzfID string `json:"nzf_id"`
Status string `json:"status"`
Filename string `json:"filename"`
Age string `json:"age"`
Bytes BytesFromB `json:"bytes"`
BytesLeft BytesFromMB `json:"mbleft"`
}
type itemFile *ItemFile
func (f *ItemFile) UnmarshalJSON(data []byte) (err error) {
err = json.Unmarshal(data, itemFile(f))
if err != nil {
return err
}
if int(f.BytesLeft) > int(f.Bytes) {
f.BytesLeft = BytesFromMB(f.Bytes)
}
return nil
}