-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
490 lines (413 loc) · 15.4 KB
/
app.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
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
require("dotenv").config();
let express = require('express');
let axios = require('axios');
let cors = require('cors');
let querystring = require('querystring');
let cookieParser = require('cookie-parser');
const app = express();
const isValidUrl = urlString => {
try {
return Boolean(new URL(urlString));
} catch (e) {
return false;
}
}
const {CLIENT_ID, CLIENT_SECRET, CALLBACK_URL, WEB_PORT, GENRE_SONG_CHUNK} = process.env;
let redirectUri = `${CALLBACK_URL}/callback`;
let generateRandomString = function (length) {
let text = '';
let possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (let i = 0; i < length; i++) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
};
let stateKey = 'spotify_auth_state';
app.use(express.static(__dirname + '/public'))
.use(cors())
.use(cookieParser())
.use(express.json());
app.get('/login', function (req, res) {
let state = generateRandomString(16);
res.cookie(stateKey, state);
// your application requests authorization
let permissionScopes = [
'user-read-private',
'user-read-email',
'playlist-read-collaborative',
'playlist-read-private',
'playlist-modify-private',
'playlist-modify-public',
'user-top-read'
];
let scope = permissionScopes.join(' ');
res.redirect('https://accounts.spotify.com/authorize?' +
querystring.stringify({
response_type: 'code',
client_id: CLIENT_ID,
scope: scope,
redirect_uri: redirectUri,
state: state
}));
});
app.get('/callback', async (req, res) => {
// your application requests refresh and access tokens
// after checking the state parameter
let code = req.query.code || null;
let state = req.query.state || null;
let storedState = req.cookies ? req.cookies[stateKey] : null;
if (state === null || state !== storedState) {
res.redirect('/#' +
querystring.stringify({
error: 'state_mismatch'
})
);
return;
}
res.clearCookie(stateKey);
let authOptions = {
method: 'post',
url: 'https://accounts.spotify.com/api/token',
params: {
code: code,
redirect_uri: redirectUri,
grant_type: 'authorization_code'
},
headers: {
'Authorization': 'Basic ' + (Buffer.from(CLIENT_ID + ':' + CLIENT_SECRET).toString('base64'))
},
json: true
};
const authorizationResponse = await axios(authOptions);
if (authorizationResponse.status !== 200) {
res.clearCookie('access_token');
res.clearCookie('refresh_token');
res.clearCookie('clientID');
res.clearCookie('country');
res.redirect('/#' +
querystring.stringify({
error: 'invalid_token'
})
);
return;
}
let body = authorizationResponse.data;
let access_token = body.access_token,
refresh_token = body.refresh_token;
// use the access token to access the Spotify Web API
const spotifyResponse = await performSpotifyRequest(access_token, 'https://api.spotify.com/v1/me');
// we can also pass the token to the browser to make requests from there
res.cookie("clientID", spotifyResponse.data.id);
res.cookie("country", spotifyResponse.data.country);
res.cookie("access_token", access_token);
res.cookie("refresh_token", refresh_token);
res.redirect("/");
});
app.get('/refresh_token', function (req, res) {
// requesting access token from refresh token
let refresh_token = req.cookies ? req.cookies['refresh_token'] : null;
let authOptions = {
method: "post",
url: 'https://accounts.spotify.com/api/token',
headers: {'Authorization': 'Basic ' + (Buffer.from(CLIENT_ID + ':' + CLIENT_SECRET).toString('base64'))},
params: {
grant_type: 'refresh_token',
refresh_token: refresh_token
},
json: true
};
axios(authOptions).then((response) => {
let body = response.data;
if (response.status === 200) {
let access_token = body.access_token;
res.cookie("access_token", access_token);
res.json({
'access_token': access_token
});
}
}).catch((err) => {
console.log(err)
});
});
app.post('/generateRandomPlaylist', async (req, res) => await generateRandomPlaylist(req, res));
// User Logout Handler
app.get('/logout', (req, res) => {
res.clearCookie('access_token');
res.clearCookie('refresh_token');
res.clearCookie('clientID');
res.clearCookie('country');
res.redirect('/');
})
console.log(`Listening on ${WEB_PORT} with callback URL ${CALLBACK_URL}`);
app.listen(WEB_PORT);
async function fetchSpotifyTopTracks(access_token, selectedType, timeRanges) {
let queryIDs = [];
// Used to keep a track of which artist ids have already been used.
let artistsUsed = [];
let selectedModeType = (selectedType === "tracks") ? 'tracks' : 'artists';
for await (let timeRange of timeRanges) {
if (queryIDs.length > 50) {
continue;
}
const totalSongs = selectedModeType === "genres" ? 50 : 10;
for (let i = 0; i < 20; i++) {
const seeds = await fetchUsersTopOnMode(access_token, timeRange, totalSongs, selectedModeType, (i * totalSongs));
if (!seeds) {
continue;
}
if (seeds && seeds.length < 0) {
continue;
}
for (let song of seeds) {
if (selectedModeType === "tracks") {
if (artistsUsed.includes(song['artists'][0]['id'])) {
continue;
}
artistsUsed.push(song['artists'][0]['id']);
queryIDs.push(song['id']);
} else if (selectedType === "genres") {
for (let genre of song['genres']) {
if (queryIDs.includes(genre)) {
continue;
}
queryIDs.push(genre);
}
} else if (selectedType === "artists") {
if (queryIDs.includes(song['id'])) {
continue;
}
queryIDs.push(song['id']);
}
}
}
}
return queryIDs;
}
async function generateRandomPlaylist(req, res) {
const {clientID, access_token, country} = req.cookies;
// Allow the ability to specify a playlist name using json payload
let spotifyPlaylistName = req.body.playlistName;
if (!spotifyPlaylistName || (spotifyPlaylistName.length <= 0)) {
spotifyPlaylistName = "Randomly Generated Playlist";
}
let acceptableTypes = ["tracks", "genres", "artists", "playlist"];
let selectedType = req.body.type;
if (!acceptableTypes.includes(selectedType)) {
selectedType = acceptableTypes[0];
}
let queryIDs = [];
if (selectedType !== 'playlist') {
// Fetch the current users top artists
let timeRanges = [
"short_term",
"medium_term",
"long_term"
];
if (req.body.timeRange) {
if (timeRanges.includes(req.body.timeRange)) {
timeRanges = [req.body.timeRange];
}
}
queryIDs = await fetchSpotifyTopTracks(access_token, selectedType, timeRanges);
} else {
let playlistId = req.body.playlistId;
if (isValidUrl(playlistId)) {
let url = new URL(playlistId);
playlistId = url?.pathname?.split('/')[url?.pathname?.split('/')?.length - 1];
}
queryIDs = await fetchPlaylistData(access_token, playlistId);
queryIDs = queryIDs.map(a => a?.split('spotify:track:')[1]);
if(queryIDs && queryIDs?.length > 20) {
queryIDs = queryIDs.map(value => ({ value, sort: Math.random() }))
.sort((a, b) => a.sort - b.sort)
.map(({ value }) => value);
queryIDs = queryIDs?.slice(0, 20);
}
}
// If the user has no tracks, they're probably a new account and as a result, can't be used for recommended
if (queryIDs.length === 0) {
res.json({
"success": false
})
return;
}
// As the user has a timeframe allocated favourite genres, we can search for a playlist name
let selectedPlaylistData = await fetchPlaylistDataOnName(spotifyPlaylistName, access_token);
while (!selectedPlaylistData) {
// Create a new playlist with that name
selectedPlaylistData = await createPlaylist(spotifyPlaylistName, clientID, access_token);
}
// Assign Spotify Playlist ID if it exists after one attempt
let spotifyPlaylistID = selectedPlaylistData.id ?? null;
if (!spotifyPlaylistID) {
res.json({
"success": false
})
return;
}
// Now that we know the playlist exists, we can start to populate it
const spotifyPlaylistContent = await fetchPlaylistData(access_token, spotifyPlaylistID);
if (!spotifyPlaylistContent) {
res.json({
"success": false
})
return;
}
// START: Recommendations are used on Top Tracks
let songRecommendations = [];
let maxAttemptsToGenre = 0;
while ((songRecommendations.length < GENRE_SONG_CHUNK) && (maxAttemptsToGenre <= 10)) {
let seedType = selectedType;
if (seedType === "playlist") {
seedType = "tracks";
}
songRecommendations.concat(await fetchRecommendedSongs(access_token, (country ?? "GB"), `seed_${seedType}`, queryIDs, spotifyPlaylistContent, songRecommendations));
maxAttemptsToGenre++;
}
// We want to slice the max song chunk size.
songRecommendations = songRecommendations.slice(0, GENRE_SONG_CHUNK);
if (songRecommendations && songRecommendations.length > 0) {
await addSongsToPlaylist(access_token, spotifyPlaylistID, songRecommendations);
}
// END: Recommendations are used on Top Tracks
res.json({
"success": true,
spotifyPlaylistID,
spotifyPlaylistName
});
}
async function fetchUsersTopOnMode(clientAccessToken, time_range = "short_term", limit = 50, topMode = "artists", offset = 0) {
const userTopArtistRequest = await performSpotifyRequest(clientAccessToken, `https://api.spotify.com/v1/me/top/${topMode}`, "get", {
limit,
time_range,
offset
});
const userTopArtistResponse = userTopArtistRequest.data;
return userTopArtistResponse['items'] ?? null;
}
async function createPlaylist(playlistName, userID, clientAccessToken) {
const spotifyPlaylistRequest = await performSpotifyRequest(clientAccessToken, `https://api.spotify.com/v1/users/${userID}/playlists`, "post", {
"name": playlistName,
"description": "This playlist was randomly generated.",
"public": false
});
return spotifyPlaylistRequest.data ?? null;
}
async function fetchPlaylistDataOnName(playlistName, clientAccessToken) {
const spotifyPlaylistRequest = await performSpotifyRequest(clientAccessToken, 'https://api.spotify.com/v1/me/playlists');
const spotifyPlaylistResponse = spotifyPlaylistRequest.data ?? null;
// If the playlist is null, the user has no playlists and so we should return null
if (!spotifyPlaylistResponse) {
return spotifyPlaylistResponse;
}
// Now that we have a collection of the users playlists, we should iterate through and see if a playlist with the name exists.
let playlistItems = spotifyPlaylistResponse['items'] ?? [];
// If the items array doesn't exist, we should return null
if (playlistItems && playlistItems.length === 0) {
return null;
}
let selectedPlaylist = playlistItems.filter(playlist => playlist.name.toLowerCase() === playlistName.toLowerCase());
if (selectedPlaylist && selectedPlaylist.length === 0) {
return null;
}
return selectedPlaylist[0];
}
async function fetchPlaylistData(userToken, playlistID) {
let currentPlaylistItems = [];
let offset = 0;
let end = false;
let checkLength = async () => {
if (end) {
return;
}
const data = await fetchPlaylistDataOffset(userToken, playlistID, offset)
if (!(data && data["items"] && data["items"]?.length > 0)) {
end = true;
return;
}
for (let element of data["items"]) {
let track = element["track"];
currentPlaylistItems.push(track["uri"]);
}
offset = offset + 100;
await checkLength();
}
await checkLength();
return currentPlaylistItems;
}
async function fetchPlaylistDataOffset(userToken, playlistID, offset = 0) {
const playlistDataRequest = await performSpotifyRequest(userToken, `https://api.spotify.com/v1/playlists/${playlistID}/tracks?offset=${offset}`);
return playlistDataRequest.data ?? null;
}
async function fetchRecommendedSongs(userToken, userCountry, typeOfSeeds = "seed_tracks", seeds = [], playlistContent, songRecommendations = []) {
let songs = songRecommendations ?? [];
const chunkSize = 5; // Spotify prevents anything greater than this
for (let i = 0; i < seeds.length; i += chunkSize) {
let params = {
[typeOfSeeds]: seeds.slice(i, i + chunkSize).join(","),
limit: 100,
market: userCountry
};
const spotifyRecommendationRequest = await performSpotifyRequest(
userToken,
`https://api.spotify.com/v1/recommendations`,
"get",
params
);
const spotifyRecommendationResponse = spotifyRecommendationRequest.data ?? null;
if (!spotifyRecommendationResponse) {
return [];
}
for await (let track of spotifyRecommendationResponse['tracks']) {
if (playlistContent.includes(track["uri"])) {
continue;
}
if (songRecommendations.includes(track["uri"])) {
continue;
}
if (songs.includes(track["uri"])) {
continue;
}
songs.push(track["uri"]);
}
}
return songs;
}
async function addSongsToPlaylist(userToken, playlistID, songs) {
const chunkSize = 20; // Spotify prevents anything greater than this
for (let i = 0; i < songs.length; i += chunkSize) {
const chunk = songs.slice(i, i + chunkSize);
let response = await performSpotifyRequest(
userToken,
`https://api.spotify.com/v1/playlists/${playlistID}/tracks`,
"post",
{
"uris":chunk,
"position":0
}
);
console.log(response.data);
}
}
async function performSpotifyRequest(userToken = null, url, method = "get", params = null) {
if (!userToken || !url) {
return null;
}
let options = {
method,
url,
json: true,
headers: {
Authorization: `Bearer ${userToken}`
}
};
if (params) {
if (method === "get") {
options['params'] = params;
} else {
options['data'] = JSON.stringify(params);
}
}
console.log(options);
return axios(options);
}