-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
286 lines (241 loc) · 7.81 KB
/
index.js
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
"use strict";
const Endpoints = require("./Rest/Endpoints");
const RequestHandler = require("./Rest/RequestHandler");
const Album = require('./Estruturas/Album');
const Artist = require('./Estruturas/Artist');
const Categories = require('./Estruturas/Categories');
const CurrentlyPlayer = require('./Estruturas/CurrentlyPlayer');
const User = require('./Estruturas/User');
const Playlist = require('./Estruturas/Playlist');
const RecentlyPlayed = require('./Estruturas/RecentlyPlayed');
const Track = require('./Estruturas/Track');
let EventEmitter;
try {
EventEmitter = require("eventemitter3");
} catch (err) {
EventEmitter = require("events").EventEmitter;
}
class SpotifyAPI extends EventEmitter {
/**
* Create a Client
* @arg {String} token api token
* @arg {String} refreshtoken api refresh token
* @arg {Object} [options] Spotify options
* @arg {String} [options.refreshtoken] URL para RefreshToken para caso o token expire, a api irá tentar requisitar um novo token
*/
constructor(options) {
super();
this.options = {
token: "",
refreshtoken: "",
refreshCallback: ""
}
if (typeof options === "object") {
for (var property of Object.keys(options)) {
this.options[property] = options[property];
}
}
if (this.options.refreshtoken == "") {
throw new Error("URL para RefreshToken não pode ficar vazio");
}
this.requestHandler = new RequestHandler(this);
this.ready = false;
}
/**
* Atualize o token
* @returns {void}
*/
setAccessToken(newToken) {
this.options.token = newToken;
}
/**
* Atualize o refreshtoken
* @returns {void}
*/
setRefreshToken(newRefreshtoken) {
this.options.refreshtoken = newRefreshtoken;
}
/**
* Retorna um album
* @returns {Promise<Album>}
*/
getAlbum(albumID) {
return this.requestHandler.request("GET", Endpoints.ALBUM(albumID));
}
/**
* Retorna as tracks do album
* @returns {Promise<[Track]>}
*/
getAlbumTrack(albumID) {
return this.requestHandler.request("GET", Endpoints.ALBUM_TRACK(albumID));
}
/**
* Retorna vários albuns
* @returns {Promise<[Album]>}
*/
getAlbums() {
return this.requestHandler.request("GET", Endpoints.ALBUMS);
}
/**
* Retorna um artista
* @returns {Promise<Artist>}
*/
getArtist(artistID) {
return this.requestHandler.request("GET", Endpoints.ARTIST(artistID));
}
/**
* Retorna os albuns do artista
* @returns {Promise<Album>}
*/
getArtistAlbums(artistID) {
return this.requestHandler.request("GET", Endpoints.ARTIST_ALBUM(artistID));
}
/**
* Retorna os artistas relacionados ao artista
* @returns {Promise<[Track]>}
*/
getArtistRelatedArtists(artistID) {
return this.requestHandler.request("GET", Endpoints.ARTIST_RELATED_ARTISTS(artistID));
}
/**
* Retorna um artista
* @returns {Promise<[Artist]>}
*/
getArtistTopTracks(artistID) {
return this.requestHandler.request("GET", Endpoints.ARTIST_TOP_TRACKS(artistID));
}
/**
* Retorna vários artistas
* @returns {Promise<[Artist]>}
*/
getArtists() {
return this.requestHandler.request("GET", Endpoints.ARTISTS);
}
getAudioAnalysi(trackID) {
return this.requestHandler.request("GET", Endpoints.AUDIO_ANALYSI(trackID));
}
getAudioFeature(trackID) {
return this.requestHandler.request("GET", Endpoints.AUDIO_FEATURE(trackID));
}
getAudioFeatures() {
return this.requestHandler.request("GET", Endpoints.AUDIO_FEATURES);
}
/**
* Retorna uma categoria
* @returns {Promise<Categories>}
*/
getBrowseCategorie(categoryID) {
return this.requestHandler.request("GET", Endpoints.BROWSE_CATEGORIE(categoryID));
}
/**
* Retorna a listas de reprodução de uma categoria
* @returns {Promise<[Playlist]>}
*/
getBrowseCategoriePlaylists(categoryID) {
return this.requestHandler.request("GET", Endpoints.BROWSE_CATEGORIE_PLAYLISTS(categoryID));
}
/**
* Retorna uma lista de categorias
* @returns {Promise<[Categories]>}
*/
getBrowseCategories() {
return this.requestHandler.request("GET", Endpoints.BROWSE_CATEGORIES);
}
/**
* Retorna uma lista de listas de reprodução em destaque
* @returns {Promise<[Playlist]>}
*/
getBrowseFeaturedPlalist() {
return this.requestHandler.request("GET", Endpoints.BROWSE_FEATURED_PLAYLISTS);
}
/**
* Retorna uma lista de novos lançamentos
* @returns {Promise<[Album]>}
*/
getBrowseNewReleases() {
return this.requestHandler.request("GET", Endpoints.BROWSE_NEW_RELEASES);
}
/**
* Retorna o perfil do usuário atual
* @returns {Promise<User>}
*/
getMe() {
return this.requestHandler.request("GET", Endpoints.ME);
}
getMeAlbums() {
return this.requestHandler.request("GET", Endpoints.ME_ALBUMS);
}
getMeAlbumsContains() {
return this.requestHandler.request("GET", Endpoints.ME_ALBUMS_CONTAINS);
}
getMePlayer() {
return this.requestHandler.request("GET", Endpoints.ME_PLAYER);
}
/**
* Retorna a faixa atualmente em reprodução do usuário
* @returns {Promise<CurrentlyPlayer>}
*/
getCurrentlyPlaying() {
return this.requestHandler.request("GET", Endpoints.ME_PLAYER_CURRENTLY_PLAYING);
}
getMePlayerDevices() {
return this.requestHandler.request("GET", Endpoints.ME_PLAYER_DEVICES);
}
/**
* Retorna as trilhas reproduzidas recentemente pelo usuário atual
* @returns {Promise<RecentlyPlayed>}
*/
getRecentlyPlayed() {
return this.requestHandler.request("GET", Endpoints.ME_PLAYER_RECENTLY_PLAYED);
}
getMePlaylist(playlistID) {
return this.requestHandler.request("GET", Endpoints.ME_PLAYLIST(playlistID));
}
getMePlaylistImages(playlistID) {
return this.requestHandler.request("GET", Endpoints.ME_PLAYLIST_IMAGES(playlistID));
}
getMePlaylists() {
return this.requestHandler.request("GET", Endpoints.ME_PLAYLISTS);
}
getMeTop(type) {
return this.requestHandler.request("GET", Endpoints.ME_TOP(type));
}
getMeTracks() {
return this.requestHandler.request("GET", Endpoints.ME_TRACKS);
}
getMeTracksContains() {
return this.requestHandler.request("GET", Endpoints.ME_TRACKS_CONTAINS);
}
getMeUserPlaylists(userID) {
return this.requestHandler.request("GET", Endpoints.ME_USER_PLAYLISTS(userID));
}
/**
* Retorna as recomendações Baseadas em Sementes
* @returns {Promise<>}
*/
getRecommendations() {
return this.requestHandler.request("GET", Endpoints.RECOMMENDATIONS);
}
/**
* Retorna uma faixa
* @returns {Promise<Track>}
*/
getTrack(trackID) {
return this.requestHandler.request("GET", Endpoints.TRACK(trackID));
}
/**
* Retorna várias faixas
* @returns {Promise<[Track]>}
*/
getTracks() {
return this.requestHandler.request("GET", Endpoints.TRACKS);
}
/**
* Retorna um perfil de usuário
* @returns {Promise<User>}
*/
getUser(userID) {
return this.requestHandler.request("GET", Endpoints.USER(userID));
}
}
module.exports = SpotifyAPI;