-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
messages.go
413 lines (312 loc) · 9.67 KB
/
messages.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
401
402
403
404
405
406
407
408
409
410
411
412
413
package main
import (
"encoding/base64"
"encoding/json"
"strconv"
"strings"
"time"
//"log"
"github.com/anacrolix/torrent"
"github.com/dustin/go-humanize"
"github.com/oz/osdb"
out "github.com/silentmurdock/wrserver/providers/output"
)
type messageResponse struct {
Success bool `json:"success"`
Message string `json:"message"`
}
type torrentFilesResponse struct {
Name string `json:"name"`
Url string `json:"url"`
Length string `json:"length"`
}
type torrentListResponse struct {
Name string `json:"name"`
Hash string `json:"hash"`
Length string `json:"length"`
}
type torrentFilesResultsResponse struct {
Success bool `json:"success"`
Results []torrentFilesResponse `json:"results"`
}
type torrentListResultsResponse struct {
Success bool `json:"success"`
Results []torrentListResponse `json:"results"`
}
type torrentStatsResponse struct {
Success bool `json:"success"`
DownSpeed string `json:"downspeed"`
DownData string `json:"downdata"`
DownPercent string `json:"downpercent"`
FullData string `json:"fulldata"`
Peers string `json:"peers"`
}
type subtitleFilesResponse struct {
Lang string `json:"lang"`
SubtitleName string `json:"subtitlename"`
ReleaseName string `json:"releasename"`
SubFormat string `json:"subformat"`
SubEncoding string `json:"subencoding"`
SubData string `json:"subdata"`
}
type subtitleFilesResultsResponse struct {
Success bool `json:"success"`
Results []subtitleFilesResponse `json:"results"`
}
type movieMagnetLinksResponse struct {
Success bool `json:"success"`
Results []out.OutputMovieStruct `json:"results"`
}
type showMagnetLinksResponse struct {
Success bool `json:"success"`
Results []out.OutputShowStruct `json:"results"`
}
func serverInfo() string {
message := messageResponse {
Success: true,
Message: "White Raven Server v" + version,
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func serverStop() string {
message := messageResponse {
Success: true,
Message: "Server stopped.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func restartTorrentClient() string {
message := messageResponse {
Success: true,
Message: "Restart torrent client.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func torrentFilesList(address string, files []*torrent.File) string {
sortFiles(files)
var results []torrentFilesResponse
for _, f := range files {
result := torrentFilesResponse {
Name: f.DisplayPath(),
Url: "http://" + address + "/api/get/" + f.Torrent().InfoHash().String() + "/" + base64.StdEncoding.EncodeToString([]byte(f.DisplayPath())),
Length: strconv.FormatInt(f.FileInfo().Length, 10),
}
results = append(results, result)
}
message := torrentFilesResultsResponse {
Success: true,
Results: results,
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func onlyOneTorrent() string {
message := messageResponse {
Success: false,
Message: "Only one torrent stream allowed at a time.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func failedToAddTorrent() string {
message := messageResponse {
Success: false,
Message: "Failed to add torrent.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func deleteTorrent() string {
message := messageResponse {
Success: true,
Message: "Torrent deleted.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func deleteAllTorrent() string {
message := messageResponse {
Success: true,
Message: "All torrents have been deleted.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func torrentNotFound() string {
message := messageResponse {
Success: false,
Message: "Torrent not found.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func noActiveTorrentFound() string {
message := messageResponse {
Success: false,
Message: "No active torrents found.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func showAllTorrent() string {
var results []torrentListResponse
for _, thistorrent := range torrents {
result := torrentListResponse {
Name: thistorrent.torrent.Name(),
Hash: thistorrent.torrent.InfoHash().String(),
Length: strconv.FormatInt(thistorrent.torrent.Length(), 10),
}
results = append(results, result)
}
message := torrentListResultsResponse {
Success: true,
Results: results,
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func downloadStats(address string, torr *torrent.Torrent) string {
currentProgress := torr.BytesCompleted()
torrWorkTime := time.Now()
torrDivTime := torrWorkTime.Sub(torrents[torr.InfoHash().String()].prevtime).Seconds()
if uint64(torrDivTime) <= 0 {
torrDivTime = 1
}
torrents[torr.InfoHash().String()].prevtime = torrWorkTime
downloadSpeed := humanize.Bytes(uint64(currentProgress - torrents[torr.InfoHash().String()].progress) / uint64(torrDivTime)) + "/s"
torrents[torr.InfoHash().String()].progress = currentProgress
complete := humanize.Bytes(uint64(currentProgress))
percent := humanize.FormatFloat("#.", float64(currentProgress) / float64(torr.Info().TotalLength()) * 100)
size := humanize.Bytes(uint64(torr.Info().TotalLength()))
peers := strconv.Itoa(torr.Stats().ActivePeers) + "/" + strconv.Itoa(torr.Stats().TotalPeers)
//log.Println("Download speed:", downloadSpeed, "Downloaded data:", complete, "Total length:", size)
//log.Println("Active peers:", torr.Stats().ActivePeers, "Total peers", torr.Stats().TotalPeers, "Percent:", percent)
message := torrentStatsResponse {
Success: true,
DownSpeed: downloadSpeed,
DownData: complete,
DownPercent: percent,
FullData: size,
Peers: peers,
}
messageString, _ := json.Marshal(message)
// Wait 3 second because Long Polling
time.Sleep(3 * time.Second)
return string(messageString)
}
func resourceNotFound() string {
message := messageResponse {
Success: false,
Message: "The resource you requested could not be found.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func invalidBase64Path() string {
message := messageResponse {
Success: false,
Message: "Invalid base64 path.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func failedToConnectToOpenSubtitles() string {
message := messageResponse {
Success: false,
Message: "Failed to connect to opensubtitles.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func noSubtitlesFound() string {
message := messageResponse {
Success: false,
Message: "No subtitles found.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func subtitleFilesList(address string, files osdb.Subtitles, lang string) string {
sortSubtitleFiles(files, lang)
var results []subtitleFilesResponse
for _, f := range files {
if f.SubFormat == "srt" {
workSubFileName := strings.ReplaceAll(f.SubFileName, "\"", "")
workSubFileName = strings.ReplaceAll(workSubFileName, "\\", "")
workMovieReleaseName := strings.ReplaceAll(f.MovieReleaseName, "\"", "")
workMovieReleaseName = strings.ReplaceAll(workMovieReleaseName, "\\", "")
result := subtitleFilesResponse {
Lang: f.ISO639,
SubtitleName: workSubFileName,
ReleaseName: workMovieReleaseName,
SubFormat: f.SubFormat,
SubEncoding: f.SubEncoding,
SubData: "http://" + address + "/api/getsubtitle/" + base64.URLEncoding.EncodeToString([]byte(f.ZipDownloadLink)) + "/encode/" + f.SubEncoding + "/subtitle.srt",
}
results = append(results, result)
}
}
message := subtitleFilesResultsResponse {
Success: true,
Results: results,
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func failedToLoadSubtitle() string {
message := messageResponse {
Success: false,
Message: "Failed to load the subtitle.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func displayMovieMagnetLinks(results []out.OutputMovieStruct) string {
message := movieMagnetLinksResponse {
Success: true,
Results: results,
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func displayShowMagnetLinks(results []out.OutputShowStruct) string {
message := showMagnetLinksResponse {
Success: true,
Results: results,
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func noMagnetLinksFound() string {
message := messageResponse {
Success: false,
Message: "No magnet links found.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func outputTmdbData(data string) string {
return "{\"success\":true,\"results\":[" + data + "]}"
}
func noTmdbDataFound() string {
message := messageResponse {
Success: false,
Message: "No TMDB data found.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}
func outputTvMazeData(data string) string {
return "{\"success\":true,\"results\":" + data + "}"
}
func noTvMazeDataFound() string {
message := messageResponse {
Success: false,
Message: "No TVMaze data found.",
}
messageString, _ := json.Marshal(message)
return string(messageString)
}