-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathartist.go
135 lines (116 loc) · 3.54 KB
/
artist.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
package deezer
import (
"fmt"
)
type ArtistService service
type Artist struct {
ID int `json:"id,omitempty"`
Name string `json:"name,omitempty"`
Link string `json:"link,omitempty"`
Share string `json:"share,omitempty"`
Picture string `json:"picture,omitempty"`
PictureSmall string `json:"picture_small,omitempty"`
PictureMedium string `json:"picture_medium,omitempty"`
PictureBig string `json:"picture_big,omitempty"`
PictureXl string `json:"picture_xl,omitempty"`
NbAlbum int `json:"nb_album,omitempty"`
NbFan int `json:"nb_fan,omitempty"`
Radio bool `json:"radio,omitempty"`
TrackList string `json:"tracklist,omitempty"`
Type string `json:"type,omitempty"`
}
type Top struct {
Data []Track `json:"data,omitempty"`
Total int `json:"total,omitempty"`
Next string `json:"next,omitempty"`
}
type Albums struct {
Data []Album `json:"data,omitempty"`
Total int `json:"total,omitempty"`
Next string `json:"next,omitempty"`
}
type Playlists struct {
Data []Playlist `json:"data,omitempty"`
Total int `json:"total,omitempty"`
Next string `json:"next,omitempty"`
}
type Artists struct {
Data []Artist `json:"data,omitempty"`
Total int `json:"total,omitempty"`
Next string `json:"next,omitempty"`
}
type Fans struct {
Data []User `json:"data,omitempty"`
Total int `json:"total,omitempty"`
Next string `json:"next,omitempty"`
}
type Related struct {
Data []Artist `json:"data,omitempty"`
Total int `json:"total,omitempty"`
Next string `json:"next,omitempty"`
}
type Radio struct {
Data []Track `json:"data,omitempty"`
Total int `json:"total,omitempty"`
Next string `json:"next,omitempty"`
}
type Comments struct {
Data []Comment `json:"data,omitempty"`
Total int `json:"total,omitempty"`
Next string `json:"next,omitempty"`
}
func (s *ArtistService) Get(ID string) (*Artist, error) {
var err error
artist := new(Artist)
s.client.base.Path("artist/").Get(ID).Receive(artist, err)
return artist, err
}
func (s *ArtistService) GetTopFive(ID string) (*Top, error) {
var err error
top := new(Top)
path := fmt.Sprintf("artist/%s/top", ID)
s.client.base.Get(path).Receive(top, err)
return top, err
}
func (s *ArtistService) GetAlbums(ID string) (*Albums, error) {
var err error
albums := new(Albums)
path := fmt.Sprintf("artist/%s/albums", ID)
s.client.base.Get(path).Receive(albums, err)
return albums, err
}
func (s *ArtistService) GetPlaylists(ID string) (*Playlists, error) {
var err error
playlists := new(Playlists)
path := fmt.Sprintf("artist/%s/playlists", ID)
s.client.base.Get(path).Receive(playlists, err)
return playlists, err
}
func (s *ArtistService) GetFans(ID string) (*Fans, error) {
var err error
fans := new(Fans)
path := fmt.Sprintf("artist/%s/fans", ID)
s.client.base.Get(path).Receive(fans, err)
return fans, err
}
func (s *ArtistService) GetRelated(ID string) (*Related, error) {
var err error
related := new(Related)
path := fmt.Sprintf("artist/%s/related", ID)
s.client.base.Get(path).Receive(related, err)
return related, err
}
func (s *ArtistService) GetRadio(ID string) (*Radio, error) {
var err error
radio := new(Radio)
path := fmt.Sprintf("artist/%s/radio", ID)
s.client.base.Get(path).Receive(radio, err)
return radio, err
}
func (s *ArtistService) GetComments(ID string) (*Comments, error) {
var err error
comments := new(Comments)
path := fmt.Sprintf("artist/%s/comments", ID)
s.client.base.Get(path).Receive(comments, err)
return comments, err
}