forked from kdvh/whatapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
whatapi.go
889 lines (823 loc) · 24.7 KB
/
whatapi.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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
//Package whatapi is a wrapper for the What.CD JSON API (https://github.com/WhatCD/Gazelle/wiki/JSON-API-Documentation).
package whatapi
import (
"bytes"
"database/sql"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"net/http/cookiejar"
"net/url"
"strconv"
"strings"
"time"
"golang.org/x/net/publicsuffix"
)
type PSList struct{}
func (p PSList) PublicSuffix(d string) string {
s, err := publicsuffix.EffectiveTLDPlusOne(d)
if err != nil {
return d
}
return s
}
func (p PSList) String() string {
return "whatapi PSList v1.0"
}
//NewWhatAPI creates a new client for the What.CD API using the provided URL.
func NewWhatAPI(ur, agent string) (WhatAPI, error) {
cookieJar, err := cookiejar.New(nil)
if err != nil {
return nil, err
}
u, err := url.Parse(ur)
if err != nil {
return nil, err
}
return &WhatAPIStruct{
baseURL: *u,
userAgent: agent,
client: &http.Client{Jar: cookieJar},
db: nil,
cacheFor: 0,
}, nil
}
// Cache caches requests and responses from a What.CD API client using
// the provided sql db as a cache. It returns cached responses newer
// than the cacheFor duration. It initialises the cache if needed.
func Cache(whatAPI WhatAPI, db *sql.DB, cacheFor time.Duration) (WhatAPI, error) {
_, err := db.Exec(`
CREATE TABLE IF NOT EXISTS urlcache (
requesturl TEXT PRIMARY KEY NOT NULL,
body TEXT NOT NULL,
timestamp DATETIME NOT NULL
) WITHOUT ROWID;
CREATE TABLE IF NOT EXISTS cookies (
url TEXT PRIMARY KEY NOT NULL,
cookie TEXT NOT NULL
) WITHOUT ROWID;
`)
if err != nil {
return nil, err
}
w, ok := whatAPI.(*WhatAPIStruct)
if !ok {
return nil,
fmt.Errorf("can only wrap WhatAPIStruct at this time")
}
wCopy := *w
wCopy.db = db
wCopy.cacheFor = cacheFor
return &wCopy, nil
}
type Group interface {
ID() int
Name() string
Artist() string
Year() int
ReleaseType() int
Tags() []string
String() string
}
func ReleaseTypeString(r int) string {
s := map[int]string{
1: "Album",
3: "Soundtrack",
5: "EP",
6: "Anthology",
7: "Compilation",
9: "Single",
11: "Live",
13: "Remix",
14: "Bootleg",
15: "Interview",
16: "Mixtape",
17: "Demo",
18: "Concert",
19: "DJ",
21: "Unknown",
}
if v, ok := s[r]; ok {
return v
}
return "Invalid Release Type"
}
type GroupRelease interface {
Group
RecordLabel() string
CatalogueNumber() string
}
type GroupExt interface {
GroupRelease
WikiImage() string
Artists() []string
Importance() []int
WikiBody() string
}
func oneOrTwoMusicInfos(mi []MusicInfoStruct) string {
switch len(mi) {
case 1:
return mi[0].Name
case 2:
return fmt.Sprintf("%s & %s", mi[0].Name, mi[1].Name)
default:
return ""
}
}
func GroupString(g Group) string {
for _, t := range g.Tags() {
if t != "classical" {
continue
}
gs, ok := g.(GroupStruct)
if !ok {
break
}
mi := gs.MusicInfo
s := []string{}
if i := oneOrTwoMusicInfos(mi.Composers); i != "" {
s = append(s, i, "-")
}
s = append(s, gs.Name(), "-")
if i := oneOrTwoMusicInfos(mi.Artists); i != "" {
s = append(s, i)
}
if i := oneOrTwoMusicInfos(mi.Conductor); i != "" {
s = append(s, i)
}
s = append(s, fmt.Sprintf("(%4d)", gs.Year()))
return strings.Join(s, " ")
}
return fmt.Sprintf("%s - %s (%4d)", g.Artist(), g.Name(), g.Year())
}
type Torrent interface {
ID() int
Format() string
Encoding() string
Media() string
Remastered() bool
RemasterTitle() string
RemasterYear() int
Scene() bool
HasLog() bool
String() string
FileCount() int
FileSize() int64
}
type TorrentCatalogueNumber interface {
RemasterCatalogueNumber() string
}
type TorrentRecordLabel interface {
RemasterRecordLabel() string
}
type TorrentFiles interface {
Torrent
TorrentRecordLabel
TorrentCatalogueNumber
FilePath() string
Files() ([]FileStruct, error)
}
type TorrentExt interface {
TorrentFiles
Description() string
}
func TorrentString(t Torrent) string {
s := fmt.Sprintf("[%s %s %s]", t.Media(), t.Format(), t.Encoding())
if !t.Remastered() {
return s
}
label := ""
if r, ok := t.(TorrentRecordLabel); ok {
label = r.RemasterRecordLabel()
}
number := ""
if r, ok := t.(TorrentCatalogueNumber); ok {
number = r.RemasterCatalogueNumber()
}
s = fmt.Sprintf("%s{(%4d) %s/%s/%s}",
s, t.RemasterYear(), label,
number, t.RemasterTitle())
return s
}
//WhatAPI represents a client for the What.CD API.
type WhatAPI interface {
GetJSON(requestURL string, responseObj interface{}) error
Do(action string, params url.Values, result interface{}) error
CreateDownloadURL(id int) (string, error)
Login(username, password string) error
Logout() error
GetAccount() error
GetMailbox(params url.Values) (Mailbox, error)
GetConversation(id int) (Conversation, error)
GetNotifications(params url.Values) (Notifications, error)
GetAnnouncements() (Announcements, error)
GetSubscriptions(params url.Values) (Subscriptions, error)
GetCategories() (Categories, error)
GetForum(id int, params url.Values) (Forum, error)
GetThread(id int, params url.Values) (Thread, error)
GetArtistBookmarks() (ArtistBookmarks, error)
GetTorrentBookmarks() (TorrentBookmarks, error)
GetArtist(id int, params url.Values) (Artist, error)
GetRequest(id int, params url.Values) (Request, error)
GetTorrent(id int, params url.Values) (GetTorrentStruct, error)
GetTorrentGroup(id int, params url.Values) (TorrentGroup, error)
SearchTorrents(searchStr string, params url.Values) (TorrentSearch, error)
SearchRequests(searchStr string, params url.Values) (RequestsSearch, error)
SearchUsers(searchStr string, params url.Values) (UserSearch, error)
GetTopTenTorrents(params url.Values) (TopTenTorrents, error)
GetTopTenTags(params url.Values) (TopTenTags, error)
GetTopTenUsers(params url.Values) (TopTenUsers, error)
GetSimilarArtists(id, limit int) (SimilarArtists, error)
ParseHTML(s string) (string, error)
}
//WhatAPIStruct represents a client for the What.CD API.
type WhatAPIStruct struct {
baseURL url.URL
userAgent string
client *http.Client
authkey string
passkey string
loggedIn bool
db *sql.DB
cacheFor time.Duration
}
func (w *WhatAPIStruct) readThrough(requestURL string) ([]byte, error) {
req, err := http.NewRequest("GET", requestURL, nil)
req.Header.Set("User-Agent", w.userAgent)
if err != nil {
return nil, err
}
resp, err := w.client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return nil, errRequestFailedReason("Status Code " + resp.Status)
}
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return body, nil
}
func (w *WhatAPIStruct) updateCache(requestURL string, body []byte) error {
if w.db == nil {
return nil
}
res, err := w.db.Exec(
"REPLACE INTO urlcache (requesturl, body, timestamp) "+
"VALUES(?,?, datetime('now'))",
requestURL, body)
if err != nil {
return err
}
rows, err := res.RowsAffected()
if err != nil {
return err
}
if rows != 1 {
return fmt.Errorf(
"INSERT affected %d rows, expected 1", rows)
}
return nil
}
func (w *WhatAPIStruct) cachedResponse(requestURL string) (body []byte, err error) {
if w.db == nil {
return nil, nil
}
var timestamp time.Time
err = w.db.QueryRow(
"SELECT body, timestamp FROM urlcache WHERE requesturl = ?", requestURL).
Scan(&body, ×tamp)
if err != nil {
return nil, err
}
if body == nil || len(body) == 0 || time.Since(timestamp) > w.cacheFor {
return nil, sql.ErrNoRows
}
return body, err
}
//GetJSON sends a HTTP GET request to the API and decodes the JSON response into responseObj.
func (w *WhatAPIStruct) GetJSON(requestURL string, responseObj interface{}) (err error) {
if !w.loggedIn {
return errRequestFailedLogin
}
body, err := w.cachedResponse(requestURL)
switch {
case w.db == nil || err == sql.ErrNoRows:
if body, err = w.readThrough(requestURL); err != nil {
return err
}
if err = w.updateCache(requestURL, body); err != nil {
return err
}
case err != nil:
return err
default:
break
}
var st GenericResponse
if err := json.Unmarshal(body, &st); err != nil {
return err
}
if err := checkResponseStatus(st.Status, st.Error); err != nil {
return err
}
switch ro := responseObj.(type) {
case *ArtistResponse: // hack around orpheus bug in get artist
err := json.Unmarshal(body, ro)
if err != nil {
body = bytes.ReplaceAll(
body,
[]byte(`"extendedArtists":false`),
[]byte(`"extendedArtists":{}`))
}
case *TopTenTorrentsResponse: // hack around orpheus bug in top 10
err := json.Unmarshal(body, ro)
if err != nil {
body = bytes.ReplaceAll(
body,
[]byte(`"artist":false`),
[]byte(`"artist":""`))
}
default:
}
return json.Unmarshal(body, responseObj)
}
type GenericResponse struct {
Status string `json:"status"`
Error string `json:"error"`
}
func (w *WhatAPIStruct) Do(action string, params url.Values, result interface{}) error {
requestURL, err := buildURL(w.baseURL, "ajax.php", action, params)
if err != nil {
return err
}
return w.GetJSON(requestURL, result)
}
//CreateDownloadURL constructs a download URL using the provided torrent id.
func (w *WhatAPIStruct) CreateDownloadURL(id int) (string, error) {
if !w.loggedIn {
return "", errRequestFailedLogin
}
params := url.Values{}
params.Set("action", "download")
params.Set("id", strconv.Itoa(id))
params.Set("authkey", w.authkey)
params.Set("torrent_pass", w.passkey)
downloadURL, err := buildURL(w.baseURL, "torrents.php", "", params)
if err != nil {
return "", err
}
return downloadURL, nil
}
func (w *WhatAPIStruct) getCookies() error {
if w.db == nil {
return nil
}
var (
c []byte
cs []*http.Cookie
)
err := w.db.QueryRow(`SELECT cookie FROM cookies WHERE url=?`,
w.baseURL.String()).Scan(&c)
if err == sql.ErrNoRows {
return nil
}
if err != nil {
return err
}
err = json.Unmarshal(c, &cs)
if err == nil {
w.client.Jar.SetCookies(&w.baseURL, cs)
}
return err
}
func (w *WhatAPIStruct) clearCookies() (err error) {
w.client.Jar, err = cookiejar.New(nil)
if err != nil {
return err
}
return w.saveCookies()
}
func (w *WhatAPIStruct) saveCookies() error {
// remember cookies
if w.db == nil {
return nil
}
cs := w.client.Jar.Cookies(&w.baseURL)
c, err := json.Marshal(cs)
if err != nil {
return err
}
_, err = w.db.Exec(`REPLACE INTO cookies VALUES(?,?)`,
w.baseURL.String(), c)
return err
}
//Login logs in to the API using the provided credentials.
func (w *WhatAPIStruct) Login(username, password string) error {
if w.db != nil {
err := w.getCookies() // sets cookie jar
if err != nil {
return err
}
// can get account without posting a login?
err = w.GetAccount()
if err == nil {
w.loggedIn = true
return nil
}
// nope, clear cookies and log in fresh
err = w.clearCookies()
if err != nil {
return err
}
}
params := url.Values{}
params.Set("username", username)
params.Set("password", password)
reqBody := strings.NewReader(params.Encode())
req, err := http.NewRequest("POST", w.baseURL.String()+"login.php", reqBody)
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
req.Header.Set("User-Agent", w.userAgent)
resp, err := w.client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if !strings.Contains(resp.Request.URL.String(), "index") {
return errLoginFailed
}
w.loggedIn = true
err = w.GetAccount()
if err != nil {
return err
}
err = w.saveCookies()
return err
}
//Logout logs out of the API, ending the current session.
func (w *WhatAPIStruct) Logout() error {
params := url.Values{"auth": {w.authkey}}
requestURL, err := buildURL(w.baseURL, "logout.php", "", params)
if err != nil {
return err
}
_, err = w.client.Get(requestURL)
if err != nil {
return err
}
w.loggedIn, w.authkey, w.passkey = false, "", ""
return nil
}
//GetAccount retrieves account information for the current user.
func (w *WhatAPIStruct) GetAccount() error {
account := AccountResponse{}
requestURL, err := buildURL(w.baseURL, "ajax.php", "index", url.Values{})
if err != nil {
return err
}
// don't cache login results
db, loggedIn := w.db, w.loggedIn
w.db, w.loggedIn = nil, true
err = w.GetJSON(requestURL, &account)
w.db, w.loggedIn = db, loggedIn
if err != nil {
return err
}
err = checkResponseStatus(account.Status, account.Error)
if err != nil {
return err
}
w.authkey, w.passkey = account.Response.AuthKey, account.Response.PassKey
return nil
}
//GetMailbox retrieves mailbox information for the current user using the provided parameters.
func (w *WhatAPIStruct) GetMailbox(params url.Values) (Mailbox, error) {
mailbox := MailboxResponse{}
requestURL, err := buildURL(w.baseURL, "ajax.php", "inbox", params)
if err != nil {
return mailbox.Response, err
}
err = w.GetJSON(requestURL, &mailbox)
if err != nil {
return mailbox.Response, err
}
return mailbox.Response, checkResponseStatus(mailbox.Status, mailbox.Error)
}
//GetConversation retrieves conversation information for the current user using the provided conversation id and parameters.
func (w *WhatAPIStruct) GetConversation(id int) (Conversation, error) {
conversation := ConversationResponse{}
params := url.Values{}
params.Set("type", "viewconv")
params.Set("id", strconv.Itoa(id))
requestURL, err := buildURL(w.baseURL, "ajax.php", "inbox", params)
if err != nil {
return conversation.Response, err
}
err = w.GetJSON(requestURL, &conversation)
if err != nil {
return conversation.Response, err
}
return conversation.Response, checkResponseStatus(conversation.Status, conversation.Error)
}
//GetNotifications retrieves notification information using the specifed parameters.
func (w *WhatAPIStruct) GetNotifications(params url.Values) (Notifications, error) {
notifications := NotificationsResponse{}
requestURL, err := buildURL(w.baseURL, "ajax.php", "notifications", params)
if err != nil {
return notifications.Response, err
}
err = w.GetJSON(requestURL, ¬ifications)
if err != nil {
return notifications.Response, err
}
return notifications.Response, checkResponseStatus(notifications.Status, notifications.Error)
}
//GetAnnouncements retrieves announcement information.
func (w *WhatAPIStruct) GetAnnouncements() (Announcements, error) {
params := url.Values{}
announcements := AnnouncementsResponse{}
requestURL, err := buildURL(w.baseURL, "ajax.php", "announcements", params)
if err != nil {
return announcements.Response, err
}
err = w.GetJSON(requestURL, &announcements)
if err != nil {
return announcements.Response, err
}
return announcements.Response, checkResponseStatus(announcements.Status, announcements.Error)
}
//GetSubscriptions retrieves forum subscription information for the current user using the provided parameters.
func (w *WhatAPIStruct) GetSubscriptions(params url.Values) (Subscriptions, error) {
subscriptions := SubscriptionsResponse{}
requestURL, err := buildURL(w.baseURL, "ajax.php", "subscriptions", params)
if err != nil {
return subscriptions.Response, err
}
err = w.GetJSON(requestURL, &subscriptions)
if err != nil {
return subscriptions.Response, err
}
return subscriptions.Response, checkResponseStatus(subscriptions.Status, subscriptions.Error)
}
//GetCategories retrieves forum category information.
func (w *WhatAPIStruct) GetCategories() (Categories, error) {
categories := CategoriesResponse{}
params := url.Values{}
params.Set("type", "main")
requestURL, err := buildURL(w.baseURL, "ajax.php", "forum", params)
if err != nil {
return categories.Response, err
}
err = w.GetJSON(requestURL, &categories)
if err != nil {
return categories.Response, err
}
return categories.Response, checkResponseStatus(categories.Status, categories.Error)
}
//GetForum retrieves forum information using the provided forum id and parameters.
func (w *WhatAPIStruct) GetForum(id int, params url.Values) (Forum, error) {
forum := ForumResponse{}
params.Set("type", "viewforum")
params.Set("forumid", strconv.Itoa(id))
requestURL, err := buildURL(w.baseURL, "ajax.php", "forum", params)
if err != nil {
return forum.Response, err
}
err = w.GetJSON(requestURL, &forum)
if err != nil {
return forum.Response, err
}
return forum.Response, checkResponseStatus(forum.Status, forum.Error)
}
//GetThread retrieves forum thread information using the provided thread id and parameters.
func (w *WhatAPIStruct) GetThread(id int, params url.Values) (Thread, error) {
thread := ThreadResponse{}
params.Set("type", "viewthread")
params.Set("threadid", strconv.Itoa(id))
requestURL, err := buildURL(w.baseURL, "ajax.php", "forum", params)
if err != nil {
return thread.Response, err
}
err = w.GetJSON(requestURL, &thread)
if err != nil {
return thread.Response, err
}
return thread.Response, checkResponseStatus(thread.Status, thread.Error)
}
//GetArtistBookmarks retrieves artist bookmark information for the current user.
func (w *WhatAPIStruct) GetArtistBookmarks() (ArtistBookmarks, error) {
artistBookmarks := ArtistBookmarksResponse{}
params := url.Values{}
params.Set("type", "artists")
requestURL, err := buildURL(w.baseURL, "ajax.php", "bookmarks", params)
if err != nil {
return artistBookmarks.Response, err
}
err = w.GetJSON(requestURL, &artistBookmarks)
if err != nil {
return artistBookmarks.Response, err
}
return artistBookmarks.Response, checkResponseStatus(artistBookmarks.Status, artistBookmarks.Error)
}
//GetTorrentBookmarks retrieves torrent bookmark information for the current user.
func (w *WhatAPIStruct) GetTorrentBookmarks() (TorrentBookmarks, error) {
torrentBookmarks := TorrentBookmarksResponse{}
params := url.Values{}
params.Set("type", "torrents")
requestURL, err := buildURL(w.baseURL, "ajax.php", "bookmarks", params)
if err != nil {
return torrentBookmarks.Response, err
}
err = w.GetJSON(requestURL, &torrentBookmarks)
if err != nil {
return torrentBookmarks.Response, err
}
return torrentBookmarks.Response, checkResponseStatus(torrentBookmarks.Status, torrentBookmarks.Error)
}
//GetArtist retrieves artist information using the provided artist id and parameters.
func (w *WhatAPIStruct) GetArtist(id int, params url.Values) (Artist, error) {
artist := ArtistResponse{}
if _, ok := params["artistname"]; !ok || id != 0 {
params.Set("id", strconv.Itoa(id))
}
requestURL, err := buildURL(w.baseURL, "ajax.php", "artist", params)
if err != nil {
return artist.Response, err
}
err = w.GetJSON(requestURL, &artist)
if err != nil {
return artist.Response, err
}
return artist.Response, checkResponseStatus(artist.Status, artist.Error)
}
//GetRequest retrieves request information using the provided request id and parameters.
func (w *WhatAPIStruct) GetRequest(id int, params url.Values) (Request, error) {
request := RequestResponse{}
params.Set("id", strconv.Itoa(id))
requestURL, err := buildURL(w.baseURL, "ajax.php", "request", params)
if err != nil {
return request.Response, err
}
err = w.GetJSON(requestURL, &request)
if err != nil {
return request.Response, err
}
return request.Response, checkResponseStatus(request.Status, request.Error)
}
//GetTorrent retrieves torrent information using the provided torrent id and parameters.
func (w *WhatAPIStruct) GetTorrent(id int, params url.Values) (GetTorrentStruct, error) {
torrent := TorrentResponse{}
if _, ok := params["hash"]; !ok || id != 0 {
params.Set("id", strconv.Itoa(id))
}
requestURL, err := buildURL(w.baseURL, "ajax.php", "torrent", params)
if err != nil {
return torrent.Response, err
}
err = w.GetJSON(requestURL, &torrent)
if err != nil {
return torrent.Response, err
}
return torrent.Response, checkResponseStatus(torrent.Status, torrent.Error)
}
//GetTorrentGroup retrieves torrent group information using the provided torrent group id and parameters.
func (w *WhatAPIStruct) GetTorrentGroup(id int, params url.Values) (TorrentGroup, error) {
torrentGroup := TorrentGroupResponse{}
if _, ok := params["hash"]; !ok || id != 0 {
params.Set("id", strconv.Itoa(id))
}
requestURL, err := buildURL(w.baseURL, "ajax.php", "torrentgroup", params)
if err != nil {
return torrentGroup.Response, err
}
err = w.GetJSON(requestURL, &torrentGroup)
if err != nil {
return torrentGroup.Response, err
}
return torrentGroup.Response, checkResponseStatus(torrentGroup.Status, torrentGroup.Error)
}
//SearchTorrents retrieves torrent search results using the provided search string and parameters.
func (w *WhatAPIStruct) SearchTorrents(searchStr string, params url.Values) (TorrentSearch, error) {
torrentSearch := TorrentSearchResponse{}
params.Set("searchstr", searchStr)
requestURL, err := buildURL(w.baseURL, "ajax.php", "browse", params)
if err != nil {
return torrentSearch.Response, err
}
err = w.GetJSON(requestURL, &torrentSearch)
if err != nil {
return torrentSearch.Response, err
}
return torrentSearch.Response, checkResponseStatus(torrentSearch.Status, torrentSearch.Error)
}
//SearchRequests retrieves request search results using the provided search string and parameters.
func (w *WhatAPIStruct) SearchRequests(searchStr string, params url.Values) (RequestsSearch, error) {
requestsSearch := RequestsSearchResponse{}
params.Set("search", searchStr)
requestURL, err := buildURL(w.baseURL, "ajax.php", "requests", params)
if err != nil {
return requestsSearch.Response, err
}
err = w.GetJSON(requestURL, &requestsSearch)
if err != nil {
return requestsSearch.Response, err
}
return requestsSearch.Response, checkResponseStatus(requestsSearch.Status, requestsSearch.Error)
}
//SearchUsers retrieves user search results using the provided search string and parameters.
func (w *WhatAPIStruct) SearchUsers(searchStr string, params url.Values) (UserSearch, error) {
userSearch := UserSearchResponse{}
params.Set("search", searchStr)
requestURL, err := buildURL(w.baseURL, "ajax.php", "usersearch", params)
if err != nil {
return userSearch.Response, err
}
err = w.GetJSON(requestURL, &userSearch)
if err != nil {
return userSearch.Response, err
}
return userSearch.Response, checkResponseStatus(userSearch.Status, userSearch.Error)
}
//GetTopTenTorrents retrieves "top ten torrents" information using the provided parameters.
func (w *WhatAPIStruct) GetTopTenTorrents(params url.Values) (TopTenTorrents, error) {
topTenTorrents := TopTenTorrentsResponse{}
params.Set("type", "torrents")
requestURL, err := buildURL(w.baseURL, "ajax.php", "top10", params)
if err != nil {
return topTenTorrents.Response, err
}
err = w.GetJSON(requestURL, &topTenTorrents)
if err != nil {
return topTenTorrents.Response, err
}
return topTenTorrents.Response, checkResponseStatus(topTenTorrents.Status, topTenTorrents.Error)
}
//GetTopTenTags retrieves "top ten tags" information using the provided parameters.
func (w *WhatAPIStruct) GetTopTenTags(params url.Values) (TopTenTags, error) {
topTenTags := TopTenTagsResponse{}
params.Set("type", "tags")
requestURL, err := buildURL(w.baseURL, "ajax.php", "top10", params)
if err != nil {
return topTenTags.Response, err
}
err = w.GetJSON(requestURL, &topTenTags)
if err != nil {
return topTenTags.Response, err
}
return topTenTags.Response, checkResponseStatus(topTenTags.Status, topTenTags.Error)
}
//GetTopTenUsers retrieves "top tem users" information using the provided parameters.
func (w *WhatAPIStruct) GetTopTenUsers(params url.Values) (TopTenUsers, error) {
topTenUsers := TopTenUsersResponse{}
params.Set("type", "users")
requestURL, err := buildURL(w.baseURL, "ajax.php", "top10", params)
if err != nil {
return topTenUsers.Response, err
}
err = w.GetJSON(requestURL, &topTenUsers)
if err != nil {
return topTenUsers.Response, err
}
return topTenUsers.Response, checkResponseStatus(topTenUsers.Status, topTenUsers.Error)
}
//GetSimilarArtists retrieves similar artist information using the provided artist id and limit.
func (w *WhatAPIStruct) GetSimilarArtists(id, limit int) (SimilarArtists, error) {
similarArtists := SimilarArtists{}
params := url.Values{}
params.Set("id", strconv.Itoa(id))
params.Set("limit", strconv.Itoa(limit))
requestURL, err := buildURL(w.baseURL, "ajax.php", "similar_artists", params)
if err != nil {
return similarArtists, err
}
err = w.GetJSON(requestURL, &similarArtists)
if err != nil {
return similarArtists, err
}
return similarArtists, nil
}
// ParseHTML takes an HTML formatted string and passes it to the server
// to be converted into BBCode (only available on some Gazelle servers)
func (w *WhatAPIStruct) ParseHTML(s string) (string, error) {
params := url.Values{}
params.Set("html", s)
reqBody := strings.NewReader(params.Encode())
req, err := http.NewRequest(
"POST", w.baseURL.String()+"upload.php?action=parse_html", reqBody)
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
req.Header.Set("User-Agent", w.userAgent)
resp, err := w.client.Do(req)
if err != nil {
return "", err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return "", errRequestFailedReason("Status Code " + resp.Status)
}
r, err := ioutil.ReadAll(resp.Body)
return string(r), err
}