-
Notifications
You must be signed in to change notification settings - Fork 19
/
me_library_playlists.go
251 lines (199 loc) · 6.85 KB
/
me_library_playlists.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
package applemusic
import (
"context"
"fmt"
)
type LibraryPlaylistMeta struct {
Total int `json:"total"`
}
// LibraryPlaylists represents a list of library playlist.
type LibraryPlaylists struct {
Data []LibraryPlaylist `json:"data"`
Next string `json:"next,omitempty"`
Meta LibraryPlaylistMeta `json:"meta,omitempty"`
}
type LibraryPlaylistTracks struct {
Data []Song `json:"data"`
Next string `json:"next,omitempty"`
Meta LibraryPlaylistMeta `json:"meta,omitempty"`
}
type libraryPlaylistCatalogRelationships struct {
Tracks LibraryPlaylistTracks `json:"tracks"`
}
type libraryPlaylistCatalog struct {
Id string `json:"id"`
Type string `json:"type"`
Href string `json:"href"`
Attributes LibraryPlaylistAttributes `json:"attributes"`
Relationships libraryPlaylistCatalogRelationships `json:"relationships"`
}
type libraryPlaylistCatalogResponse struct {
Data []libraryPlaylistCatalog `json:"data"`
Next string `json:"next,omitempty"`
Meta LibraryPlaylistMeta `json:"meta,omitempty"`
}
func (s *MeService) getLibraryPlaylists(ctx context.Context, u string, opt interface{}) (*LibraryPlaylists, *Response, error) {
u, err := addOptions(u, opt)
if err != nil {
return nil, nil, err
}
req, err := s.client.NewRequest("GET", u, nil)
if err != nil {
return nil, nil, err
}
libraryPlaylists := &LibraryPlaylists{}
resp, err := s.client.Do(ctx, req, libraryPlaylists)
if err != nil {
return nil, resp, err
}
return libraryPlaylists, resp, nil
}
// GetLibraryPlaylist fetches a library playlist using its identifier.
func (s *MeService) GetLibraryPlaylist(ctx context.Context, id string, opt *Options) (*LibraryPlaylists, *Response, error) {
u := fmt.Sprintf("v1/me/library/playlists/%s", id)
return s.getLibraryPlaylists(ctx, u, opt)
}
// LibraryPlaylistsByIdsOptions specifies the optional parameters to the
// MeService.GetLibraryPlaylistsByIds method.
type LibraryPlaylistsByIdsOptions struct {
Ids string `url:"ids"`
Options
}
// GetLibraryPlaylistsByIds fetches one or more library playlists using their identifiers.
func (s *MeService) GetLibraryPlaylistsByIds(ctx context.Context, opt *LibraryPlaylistsByIdsOptions) (*LibraryPlaylists, *Response, error) {
u := "v1/me/library/playlists"
return s.getLibraryPlaylists(ctx, u, opt)
}
// GetAllLibraryPlaylists fetches all the library playlists in alphabetical order.
func (s *MeService) GetAllLibraryPlaylists(ctx context.Context, opt *PageOptions) (*LibraryPlaylists, *Response, error) {
u := "v1/me/library/playlists"
return s.getLibraryPlaylists(ctx, u, opt)
}
func (s *MeService) getLibraryPlaylistsTracks(ctx context.Context, u string, opt interface{}) (*LibraryPlaylistTracks, *Response, error) {
u, err := addOptions(u, opt)
if err != nil {
return nil, nil, err
}
req, err := s.client.NewRequest("GET", u, nil)
if err != nil {
return nil, nil, err
}
libraryPlaylistTracks := &LibraryPlaylistTracks{}
resp, err := s.client.Do(ctx, req, libraryPlaylistTracks)
if err != nil {
return nil, resp, err
}
return libraryPlaylistTracks, resp, nil
}
// GetLibraryPlaylist fetches a library playlist using its identifier.
func (s *MeService) GetLibraryPlaylistTracks(ctx context.Context, id string, opt *PageOptions) ([]Song, int, error) {
u := fmt.Sprintf("v1/me/library/playlists/%s/tracks", id)
var tracks []Song
total := 0
limit := opt.Limit
for len(u) > 0 {
if limit > 0 && len(tracks) >= limit {
return tracks, total, nil
}
lpt, _, err := s.getLibraryPlaylistsTracks(ctx, u, opt)
if err != nil {
return tracks, total, err
}
total = lpt.Meta.Total
tracks = append(tracks, lpt.Data...)
u = lpt.Next
}
return tracks, total, nil
}
func (s *MeService) getLibraryPlaylistCatalogTracks(ctx context.Context, u string, opt interface{}) (*LibraryPlaylistTracks, *Response, error) {
u, err := addOptions(u, opt)
if err != nil {
return nil, nil, err
}
req, err := s.client.NewRequest("GET", u, nil)
if err != nil {
return nil, nil, err
}
libraryPlaylistResponse := &libraryPlaylistCatalogResponse{}
resp, err := s.client.Do(ctx, req, &libraryPlaylistResponse)
if err != nil {
return nil, resp, err
}
if libraryPlaylistResponse != nil && len(libraryPlaylistResponse.Data) > 0 {
return &libraryPlaylistResponse.Data[0].Relationships.Tracks, resp, nil
}
return nil, resp, nil
}
// GetLibraryPlaylistCatalogTracks fetches a library playlist using its identifier to get the catalog tracks of the playlist.
func (s *MeService) GetLibraryPlaylistCatalogTracks(ctx context.Context, id string, limit int) ([]Song, error) {
u := fmt.Sprintf("v1/me/library/playlists/%s/catalog", id)
opt := &PageOptions{Limit: limit, Options: Options{Include: "tracks"}}
var tracks []Song
// first call is a different response then the pagination
lpt, _, err := s.getLibraryPlaylistCatalogTracks(ctx, u, opt)
if err != nil {
return tracks, err
}
tracks = append(tracks, lpt.Data...)
// get the rest of the songs if they exist
u = lpt.Next
for len(u) > 0 {
if limit != 0 && len(tracks) >= limit {
return tracks, nil
}
lpt, _, err := s.getLibraryPlaylistsTracks(ctx, u, opt)
if err != nil {
return tracks, err
}
tracks = append(tracks, lpt.Data...)
u = lpt.Next
}
return tracks, nil
}
type CreateLibraryPlaylistAttributes struct {
Name string `json:"name"`
Description string `json:"description"`
}
type CreateLibraryPlaylistTrack struct {
Id string `json:"id"`
Type string `json:"type"`
}
type CreateLibraryPlaylistTrackData struct {
Data []CreateLibraryPlaylistTrack `json:"data"`
}
type CreateLibraryPlaylistRelationships struct {
Tracks CreateLibraryPlaylistTrackData `json:"tracks"`
}
type CreateLibraryPlaylist struct {
Attributes CreateLibraryPlaylistAttributes `json:"attributes"`
Relationships *CreateLibraryPlaylistRelationships `json:"relationships,omitempty"`
}
func (s *MeService) CreateLibraryPlaylist(ctx context.Context, body CreateLibraryPlaylist, opt *Options) (*LibraryPlaylists, *Response, error) {
u := "v1/me/library/playlists"
u, err := addOptions(u, opt)
if err != nil {
return nil, nil, err
}
req, err := s.client.NewRequest("POST", u, body)
if err != nil {
return nil, nil, err
}
libraryPlaylists := &LibraryPlaylists{}
resp, err := s.client.Do(ctx, req, libraryPlaylists)
if err != nil {
return nil, resp, err
}
return libraryPlaylists, resp, nil
}
func (s *MeService) AddLibraryTracksToPlaylist(ctx context.Context, playlistId string, body CreateLibraryPlaylistTrackData) (*Response, error) {
u := fmt.Sprintf("/v1/me/library/playlists/%s/tracks", playlistId)
req, err := s.client.NewRequest("POST", u, body)
if err != nil {
return nil, err
}
resp, err := s.client.Do(ctx, req, nil)
if err != nil {
return resp, err
}
return resp, nil
}