-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
executable file
·268 lines (213 loc) · 7.29 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
/**
* This is an example of a basic node.js script that performs
* the Authorization Code oAuth2 flow to authenticate against
* the Spotify Accounts.
*
* For more information, read
* https://developer.spotify.com/web-api/authorization-guide/#authorization_code_flow
*/
var express = require('express'); // Express web server framework
var request = require('request'); // "Request" library
var querystring = require('querystring');
var cookieParser = require('cookie-parser');
var app = express();
require('dotenv').config()
var bodyParser = require('body-parser');
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
var SpotifyWebApi = require('spotify-web-api-node');
var api_key = process.env.API_KEY;
var token = process.env.TOKEN;
var client_id = api_key; // Your client id
var client_secret = token; // Your secret
var redirect_uri = 'http://138.197.198.178:8888/callback'; // Your redirect uri
// var redirect_uri = 'http://localhost:8888/callback'; // Your redirect uri
// credentials are optional
var spotifyApi = new SpotifyWebApi({
clientId : client_id,
clientSecret : client_secret,
redirectUri : redirect_uri
});
/**
* Generates a random string containing numbers and letters
* @param {number} length The length of the string
* @return {string} The generated string
*/
var generateRandomString = function(length) {
var text = '';
var possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (var i = 0; i < length; i++) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
};
var stateKey = 'spotify_auth_state';
var app = express();
app.use(express.static(__dirname + '/public'))
.use(cookieParser());
app.get('/login', function(req, res) {
var state = generateRandomString(16);
res.cookie(stateKey, state);
// your application requests authorization
var scope = 'user-read-private user-read-email playlist-modify-private playlist-modify-public';
res.redirect('https://accounts.spotify.com/authorize?' +
querystring.stringify({
response_type: 'code',
client_id: client_id,
scope: scope,
redirect_uri: redirect_uri,
state: state
}));
});
app.get('/callback', function(req, res) {
// your application requests refresh and access tokens
// after checking the state parameter
var code = req.query.code || null;
var state = req.query.state || null;
var storedState = req.cookies ? req.cookies[stateKey] : null;
if (state === null || state !== storedState) {
res.redirect('/#' +
querystring.stringify({
error: 'state_mismatch'
}));
} else {
res.clearCookie(stateKey);
var authOptions = {
url: 'https://accounts.spotify.com/api/token',
form: {
code: code,
redirect_uri: redirect_uri,
grant_type: 'authorization_code'
},
headers: {
'Authorization': 'Basic ' + (new Buffer(client_id + ':' + client_secret).toString('base64'))
},
json: true
};
request.post(authOptions, function(error, response, body) {
if (!error && response.statusCode === 200) {
var access_token = body.access_token,
refresh_token = body.refresh_token;
// Set access token for future calls.
spotifyApi.setAccessToken(access_token);
var options = {
url: 'https://api.spotify.com/v1/me',
headers: { 'Authorization': 'Bearer ' + access_token },
json: true
};
// use the access token to access the Spotify Web API
request.get(options, function(error, response, body) {
});
// we can also pass the token to the browser to make requests from there
res.redirect('/#' +
querystring.stringify({
access_token: access_token,
refresh_token: refresh_token
}));
} else {
res.redirect('/#' +
querystring.stringify({
error: 'invalid_token'
}));
}
});
}
});
app.get('/refresh_token', function(req, res) {
// requesting access token from refresh token
var refresh_token = req.query.refresh_token;
var authOptions = {
url: 'https://accounts.spotify.com/api/token',
headers: { 'Authorization': 'Basic ' + (new Buffer(client_id + ':' + client_secret).toString('base64')) },
form: {
grant_type: 'refresh_token',
refresh_token: refresh_token
},
json: true
};
request.post(authOptions, function(error, response, body) {
if (!error && response.statusCode === 200) {
var access_token = body.access_token;
res.send({
'access_token': access_token
});
}
});
});
app.get('/getPlaylist', function(req, res) {
var context = {};
var artist = req.query.searchKey;
// Get artist id matching search term
spotifyApi.searchArtists(artist)
.then(function(data) {
if (data.body.artists.items.length != 0) {
var artistId = data.body.artists.items[0].id;
} else {
console.log("no results");
return;
}
// Get an artist's top tracks
spotifyApi.getArtistTopTracks(artistId, 'US')
.then(function(data) {
context.results = data.body
res.send(context);
}, function(err) {
console.log('Something went wrong!', err);
});
}, function(err) {
console.error(err);
});
});
app.get('/addPlaylist', function(req, res) {
var context = {};
var playlistName = req.query.search;
// Get user id
spotifyApi.getMe()
.then(function(data) {
var userId = data.body.id;
// Create Playlist
spotifyApi.createPlaylist(userId, playlistName, { public : false })
.then(function(data) {
addTracks(userId, data.body.id, req.query.search);
}, function(err) {
console.log('Something went wrong with the playlist creation!', err);
});
}, function(err) {
console.log('Something went wrong!', err);
});
function addTracks(userId, playlistId, artist) {
// Get artist id matching search term
spotifyApi.searchArtists(artist)
.then(function(data) {
if (data.body.artists.items.length != 0) {
var artistId = data.body.artists.items[0].id;
} else {
console.log("no results");
return;
}
// Get an artist's top tracks
spotifyApi.getArtistTopTracks(artistId, 'US')
.then(function(data) {
var dataObject = data.body;
var tracksArray = [];
for (var i = 0; i < 10; i++) {
tracksArray.push(dataObject.tracks[i].uri);
}
// Add tracks to a playlist
spotifyApi.addTracksToPlaylist(userId, playlistId, tracksArray)
.then(function(data) {
res.send(context);
console.log('Added tracks to playlist!');
}, function(err) {
console.log('Something went wrong!', err);
});
}, function(err) {
console.log('Something went wrong!', err);
});
}, function(err) {
console.error(err);
});
}
});
console.log('Listening on 8888');
app.listen(8888);