forked from mrobinsn/go-sabnzbd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
results.go
400 lines (348 loc) · 11.2 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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
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
}
func (b BytesFromGB) String() string {
return bytesToHumanReadable(int64(b))
}
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
}
func (b BytesFromMB) String() string {
return bytesToHumanReadable(int64(b))
}
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
}
func (b BytesFromKB) String() string {
return bytesToHumanReadable(int64(b))
}
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
}
func (b BytesFromB) String() string {
return bytesToHumanReadable(int64(b))
}
type SabDuration time.Duration
func (d SabDuration) String() string {
return time.Duration(d).String()
}
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 QueueResponse struct {
Version string `json:"version"`
Paused bool `json:"paused"`
PauseInt string `json:"pause_int"`
PausedAll bool `json:"paused_all"`
DownloadDiskFreeSpace BytesFromGB `json:"diskspace1"`
CompleteDiskFreeSpace BytesFromGB `json:"diskspace2"`
Diskspace1Norm string `json:"diskspace1_norm"`
Diskspace2Norm string `json:"diskspace2_norm"`
DownloadDiskTotalSpace BytesFromGB `json:"diskspacetotal1"`
CompleteDiskTotalSpace BytesFromGB `json:"diskspacetotal2"`
SpeedLimitPercentage int `json:"speedlimit,string"`
SpeedLimit BytesFromB `json:"speedlimit_abs"`
HaveWarnings string `json:"have_warnings"`
FinishAction *string `json:"finishaction"`
Quota string `json:"quota"`
HaveQuota bool `json:"have_quota"`
LeftQuota string `json:"left_quota"`
CacheArt string `json:"cache_art"`
CacheSize string `json:"cache_size"`
BytesPerSecond BytesFromKB `json:"kbpersec"`
Speed string `json:"speed"`
BytesLeft BytesFromMB `json:"mbleft"`
BytesTotal BytesFromMB `json:"mb"`
Bytes BytesFromMB
SizeLeft string `json:"sizeleft"`
Size string `json:"size"`
NoOfSlotsTotal int `json:"noofslots_total"`
NoOfSlots int `json:"noofslots"`
Start int `json:"start"`
Limit int `json:"limit"`
Finish int `json:"finish"`
Status string `json:"status"`
TimeLeft SabDuration `json:"timeleft"`
Slots []QueueSlot `json:"slots"`
apiError
}
type queueResponse *QueueResponse
func (r *QueueResponse) 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, queueResponse(r))
r.Bytes = r.BytesTotal - r.BytesLeft
return err
}
type QueueSlot struct {
Index int `json:"index"`
NzoID string `json:"nzo_id"`
UnpackOpts string `json:"unpackopts"`
Priority string `json:"priority"`
Script string `json:"script"`
Filename string `json:"filename"`
Labels []string `json:"labels"`
Password string `json:"password"`
Category string `json:"cat"`
BytesLeft BytesFromMB `json:"mbleft"`
BytesTotal BytesFromMB `json:"mb"`
Size string `json:"size"`
SizeLeft string `json:"sizeleft"`
Percentage int `json:"percentage,string"`
MBMissing BytesFromMB `json:"mbmissing"` // doesn't seem to be working
Bytes BytesFromMB
DirectUnpack string `json:"direct_unpack"`
Status string `json:"status"`
TimeLeft SabDuration `json:"timeleft"`
AverageAge string `json:"avg_age"`
}
func (r *QueueSlot) UnmarshalJSON(data []byte) error {
type TmpQueueSlot QueueSlot
var tmpSlot TmpQueueSlot
if err := json.Unmarshal(data, &tmpSlot); err != nil {
return err
}
*r = QueueSlot(tmpSlot)
r.Bytes = r.BytesTotal - r.BytesLeft
return nil
}
type HistoryResponse struct {
TotalSize string `json:"total_size"`
MonthSize string `json:"month_size"`
WeekSize string `json:"week_size"`
DaySize string `json:"day_size"`
Slots []HistorySlot `json:"slots"`
NoOfSlots int `json:"noofslots"`
Version string `json:"version"`
LastHistoryUpdate int `json:"last_history_update"`
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 {
ID int `json:"id"`
CompletedUnix int64 `json:"completed"`
Completed time.Time
Name string `json:"name"`
NZBName string `json:"nzb_name"`
Category string `json:"category"`
PP string `json:"pp"`
Script string `json:"script"`
Report string `json:"report"`
URL string `json:"url"`
Status string `json:"status"`
NzoID string `json:"nzo_id"`
Storage string `json:"storage"`
Path string `json:"path"`
ScriptLog string `json:"script_log"`
ScriptLine string `json:"script_line"`
DownloadTime int64 `json:"download_time"`
DownloadDuration time.Duration
PostProcessingTime int64 `json:"postproc_time"`
PostProcessingDuration time.Duration
StageLogs []HistoryStageLog `json:"stage_log"`
Downloaded int64 `json:"downloaded"` // represents downloaded bytes, not time
Completeness int `json:"completeness"`
FailMessage string `json:"fail_message"`
URLInfo string `json:"url_info"`
Bytes int `json:"bytes"`
Meta string `json:"meta"`
Series string `json:"series"`
MD5Sum string `json:"md5sum"`
Password string `json:"password"`
ActionLine string `json:"action_line"`
Size string `json:"size"`
Loaded bool `json:"loaded"`
Retry int
}
func (r *HistorySlot) UnmarshalJSON(data []byte) error {
type TmpHistorySlot HistorySlot
var tmpSlot TmpHistorySlot
if err := json.Unmarshal(data, &tmpSlot); err != nil {
fmt.Printf("failed to unmarshal queue slot: %s\n", err)
return err
}
*r = HistorySlot(tmpSlot)
r.Completed = time.Unix(r.CompletedUnix, 0)
r.DownloadDuration = time.Duration(r.DownloadTime * int64(time.Second))
r.PostProcessingDuration = time.Duration(r.PostProcessingTime * int64(time.Second))
return nil
}
type HistoryStageLog struct {
Name string `json:"name"`
Actions []string `json:"actions"`
}
type ServerStatsResponse struct {
Total BytesFromB `json:"total"`
Month BytesFromB `json:"month"`
Week BytesFromB `json:"week"`
Day BytesFromB `json:"day"`
Servers map[string]ServerStatsServer `json:"servers"`
}
type ServerStatsServer struct {
Total BytesFromB `json:"total"`
Month BytesFromB `json:"month"`
Week BytesFromB `json:"week"`
Day BytesFromB `json:"day"`
Daily map[ServerStatsDate]BytesFromB `json:"daily"`
ArticlesTried map[ServerStatsDate]int `json:"articles_tried"`
ArticlesSuccess map[ServerStatsDate]int `json:"articles_success"`
}
type ServerStatsDate string
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
}
func bytesToHumanReadable(i int64) string {
if i < 1000 {
return fmt.Sprintf("%d B", i)
} else if i < 1000*1000 {
return fmt.Sprintf("%.2f KB", float64(i)/1000)
} else if i < 1000*1000*1000 {
return fmt.Sprintf("%.2f MB", float64(i)/(1000*1000))
} else if i < 1000*1000*1000*1000 {
return fmt.Sprintf("%.2f GB", float64(i)/(1000*1000*1000))
} else if i < 1000*1000*1000*1000*1000 {
return fmt.Sprintf("%.2f TB", float64(i)/(1000*1000*1000*1000))
} else {
return fmt.Sprintf("%.2f PB", float64(i)/(1000*1000*1000*1000*1000))
}
}