forked from watsonbox/exportify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exportify.js
390 lines (344 loc) · 12.4 KB
/
exportify.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
window.Helpers = {
authorize: function() {
var client_id = this.getQueryParam('app_client_id');
// Use Exportify application client_id if none given
if (client_id == '') {
client_id = "9950ac751e34487dbbe027c4fd7f8e99"
}
window.location = "https://accounts.spotify.com/authorize" +
"?client_id=" + client_id +
"&redirect_uri=" + encodeURIComponent([location.protocol, '//', location.host, location.pathname].join('')) +
"&scope=playlist-read-private%20playlist-read-collaborative" +
"&response_type=token";
},
// http://stackoverflow.com/a/901144/4167042
getQueryParam: function(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
},
apiCall: function(url, access_token) {
return $.ajax({
url: url,
headers: {
'Authorization': 'Bearer ' + access_token
}
}).fail(function (jqXHR, textStatus) {
if (jqXHR.status == 401) {
// Return to home page after auth token expiry
window.location = window.location.href.split('#')[0]
} else if (jqXHR.status == 429) {
// API Rate-limiting encountered
window.location = window.location.href.split('#')[0] + '?rate_limit_message=true'
} else {
// Otherwise report the error so user can raise an issue
alert(jqXHR.responseText);
}
})
}
}
var PlaylistTable = React.createClass({
getInitialState: function() {
return {
playlists: [],
playlistCount: 0,
nextURL: null,
prevURL: null
};
},
loadPlaylists: function(url) {
var userId = '';
var firstPage = typeof url === 'undefined' || url.indexOf('offset=0') > -1;
window.Helpers.apiCall("https://api.spotify.com/v1/me", this.props.access_token).then(function(response) {
userId = response.id;
// Show starred playlist if viewing first page
if (firstPage) {
return $.when.apply($, [
window.Helpers.apiCall(
"https://api.spotify.com/v1/users/" + userId + "/starred",
this.props.access_token
),
window.Helpers.apiCall(
"https://api.spotify.com/v1/users/" + userId + "/playlists",
this.props.access_token
)
])
} else {
return window.Helpers.apiCall(url, this.props.access_token);
}
}.bind(this)).done(function() {
var response;
var playlists = [];
if (arguments[1] === 'success') {
response = arguments[0];
playlists = arguments[0].items;
} else {
response = arguments[1][0];
playlists = $.merge([arguments[0][0]], arguments[1][0].items);
}
if (this.isMounted()) {
this.setState({
playlists: playlists,
playlistCount: response.total,
nextURL: response.next,
prevURL: response.previous
});
$('#playlists').fadeIn();
$('#subtitle').text((response.offset + 1) + '-' + (response.offset + response.items.length) + ' of ' + response.total + ' playlists for ' + userId)
}
}.bind(this))
},
exportPlaylists: function() {
PlaylistsExporter.export(this.props.access_token, this.state.playlistCount);
},
componentDidMount: function() {
this.loadPlaylists(this.props.url);
},
render: function() {
if (this.state.playlists.length > 0) {
return (
<div id="playlists">
<Paginator nextURL={this.state.nextURL} prevURL={this.state.prevURL} loadPlaylists={this.loadPlaylists}/>
<table className="table table-hover">
<thead>
<tr>
<th style={{width: "30px"}}></th>
<th>Name</th>
<th style={{width: "150px"}}>Owner</th>
<th style={{width: "100px"}}>Tracks</th>
<th style={{width: "120px"}}>Public?</th>
<th style={{width: "120px"}}>Collaborative?</th>
<th style={{width: "100px"}} className="text-right"><button className="btn btn-default btn-xs" type="submit" onClick={this.exportPlaylists}><span className="fa fa-file-archive-o"></span> Export All</button></th>
</tr>
</thead>
<tbody>
{this.state.playlists.map(function(playlist, i) {
return <PlaylistRow playlist={playlist} key={playlist.id} access_token={this.props.access_token}/>;
}.bind(this))}
</tbody>
</table>
<Paginator nextURL={this.state.nextURL} prevURL={this.state.prevURL} loadPlaylists={this.loadPlaylists}/>
</div>
);
} else {
return <div className="spinner"></div>
}
}
});
var PlaylistRow = React.createClass({
exportPlaylist: function() {
PlaylistExporter.export(this.props.access_token, this.props.playlist);
},
renderTickCross: function(condition) {
if (condition) {
return <i className="fa fa-lg fa-check-circle-o"></i>
} else {
return <i className="fa fa-lg fa-times-circle-o" style={{ color: '#ECEBE8' }}></i>
}
},
renderIcon: function(playlist) {
if (playlist.name == 'Starred') {
return <i className="glyphicon glyphicon-star" style={{ color: 'gold' }}></i>;
} else {
return <i className="fa fa-music"></i>;
}
},
render: function() {
playlist = this.props.playlist
if(playlist.uri==null) return (
<tr key={this.props.key}>
<td>{this.renderIcon(playlist)}</td>
<td>{playlist.name}</td>
<td colSpan="2">This playlist is not supported</td>
<td>{this.renderTickCross(playlist.public)}</td>
<td>{this.renderTickCross(playlist.collaborative)}</td>
<td> </td>
</tr>
);
return (
<tr key={this.props.key}>
<td>{this.renderIcon(playlist)}</td>
<td><a href={playlist.uri}>{playlist.name}</a></td>
<td><a href={playlist.owner.uri}>{playlist.owner.id}</a></td>
<td>{playlist.tracks.total}</td>
<td>{this.renderTickCross(playlist.public)}</td>
<td>{this.renderTickCross(playlist.collaborative)}</td>
<td className="text-right"><button className="btn btn-default btn-xs btn-success" type="submit" onClick={this.exportPlaylist}><span className="glyphicon glyphicon-save"></span> Export</button></td>
</tr>
);
}
});
var Paginator = React.createClass({
nextClick: function(e) {
e.preventDefault()
if (this.props.nextURL != null) {
this.props.loadPlaylists(this.props.nextURL)
}
},
prevClick: function(e) {
e.preventDefault()
if (this.props.prevURL != null) {
this.props.loadPlaylists(this.props.prevURL)
}
},
render: function() {
if (this.props.nextURL != null || this.props.prevURL != null) {
return (
<nav className="paginator text-right">
<ul className="pagination pagination-sm">
<li className={this.props.prevURL == null ? 'disabled' : ''}>
<a href="#" aria-label="Previous" onClick={this.prevClick}>
<span aria-hidden="true">«</span>
</a>
</li>
<li className={this.props.nextURL == null ? 'disabled' : ''}>
<a href="#" aria-label="Next" onClick={this.nextClick}>
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>
)
} else {
return <div> </div>
}
}
});
// Handles exporting all playlist data as a zip file
var PlaylistsExporter = {
export: function(access_token, playlistCount) {
var playlistFileNames = [];
window.Helpers.apiCall("https://api.spotify.com/v1/me", access_token).then(function(response) {
var limit = 20;
var userId = response.id;
// Initialize requests with starred playlist
var requests = [
window.Helpers.apiCall(
"https://api.spotify.com/v1/users/" + userId + "/starred",
access_token
)
];
// Add other playlists
for (var offset = 0; offset < playlistCount; offset = offset + limit) {
var url = "https://api.spotify.com/v1/users/" + userId + "/playlists";
requests.push(
window.Helpers.apiCall(url + '?offset=' + offset + '&limit=' + limit, access_token)
)
}
$.when.apply($, requests).then(function() {
var playlists = [];
var playlistExports = [];
// Handle either single or multiple responses
if (typeof arguments[0].href == 'undefined') {
$(arguments).each(function(i, response) {
if (typeof response[0].items === 'undefined') {
// Single playlist
playlists.push(response[0]);
} else {
// Page of playlists
$.merge(playlists, response[0].items);
}
})
} else {
playlists = arguments[0].items
}
$(playlists).each(function(i, playlist) {
playlistFileNames.push(PlaylistExporter.fileName(playlist));
playlistExports.push(PlaylistExporter.csvData(access_token, playlist));
});
return $.when.apply($, playlistExports);
}).then(function() {
var zip = new JSZip();
var responses = [];
$(arguments).each(function(i, response) {
zip.file(playlistFileNames[i], response)
});
var content = zip.generate({ type: "blob" });
saveAs(content, "spotify_playlists.zip");
});
});
}
}
// Handles exporting a single playlist as a CSV file
var PlaylistExporter = {
export: function(access_token, playlist) {
this.csvData(access_token, playlist).then(function(data) {
var blob = new Blob(["\uFEFF" + data], { type: "text/csv;charset=utf-8" });
saveAs(blob, this.fileName(playlist));
}.bind(this))
},
csvData: function(access_token, playlist) {
var requests = [];
var limit = 100;
for (var offset = 0; offset < playlist.tracks.total; offset = offset + limit) {
requests.push(
window.Helpers.apiCall(playlist.tracks.href.split('?')[0] + '?offset=' + offset + '&limit=' + limit, access_token)
)
}
return $.when.apply($, requests).then(function() {
var responses = [];
// Handle either single or multiple responses
if (typeof arguments[0] != 'undefined') {
if (typeof arguments[0].href == 'undefined') {
responses = Array.prototype.slice.call(arguments).map(function(a) { return a[0] });
} else {
responses = [arguments[0]];
}
}
var tracks = responses.map(function(response) {
return response.items.map(function(item) {
return [
item.track.uri,
item.track.name,
item.track.artists.map(function(artist) { return artist.name }).join(', '),
item.track.album.name,
item.track.disc_number,
item.track.track_number,
item.track.duration_ms,
item.added_by == null ? '' : item.added_by.uri,
item.added_at
].map(function(track) { return '"' + track + '"'; })
});
});
// Flatten the array of pages
tracks = $.map(tracks, function(n) { return n })
tracks.unshift([
"Spotify URI",
"Track Name",
"Artist Name",
"Album Name",
"Disc Number",
"Track Number",
"Track Duration (ms)",
"Added By",
"Added At"
]);
csvContent = '';
tracks.forEach(function(infoArray, index){
dataString = infoArray.join(",");
csvContent += index < tracks.length ? dataString+ "\n" : dataString;
});
return csvContent;
});
},
fileName: function(playlist) {
return playlist.name.replace(/[^a-z0-9\- ]/gi, '').replace(/[ ]/gi, '_').toLowerCase() + ".csv";
}
}
$(function() {
var vars = window.location.hash.substring(1).split('&');
var key = {};
for (i=0; i<vars.length; i++) {
var tmp = vars[i].split('=');
key[tmp[0]] = tmp[1];
}
if (window.Helpers.getQueryParam('rate_limit_message') != '') {
// Show rate limit message
$('#rateLimitMessage').show();
} else if (typeof key['access_token'] === 'undefined') {
$('#loginButton').css('display', 'inline-block')
} else {
React.render(<PlaylistTable access_token={key['access_token']} />, playlistsContainer);
}
});