-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
465 lines (419 loc) · 13 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
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
var cheerio = require('cheerio')
var got = require('got')
module.exports = ScrapeEngine
function ScrapeEngine () {
if (!(this instanceof ScrapeEngine)) {
return new ScrapeEngine()
}
this.lastfmURL = 'http://www.last.fm'
// Two step selection
// var selection = $('.col-main h2:contains(\'Artist\')').parent()
// $(selection).find('ol.grid-items .grid-items-item a.link-block-target')
this.filter = [
'.col-main ol.grid-items .grid-items-item a.link-block-target ', // Target: Artist 2step
".col-main h2:contains('Album')", // Target: Album 2step
'.chartlist .chartlist-name a.link-block-target', // Target: Titles
'.col-main .grid-items-section .grid-items-item-main-text a.link-block-target', // Similar Artist 2Step
'.col-main .grid-items a.link-block-target', // Similar Artist over "+similar" URL
// ----------------------------------------------------------------------------//
'.col-main .grid-items-section .grid-items-item-main-text a.link-block-target', // Similar Titles
'.header-tags a', // Genre: Artist, Title, Album
'.col-main .grid-items-section .grid-items-item-main-text a.link-block-target', // Tag: Top Artists 2Step
'.col-main .grid-items-section .grid-items-item-main-text a.link-block-target', // Tag: Top Albums 2Step
'.chartlist .chartlist-name a.link-block-target', // Tag: Top Titles
// ----------------------------------------------------------------------------//
'.col-main .grid-items-section .grid-items-item-main-text a.link-block-target', // Tag: Artists
'.album-grid .album-grid-item>a', // Tag: Albums, content: el.find('p').text()
'.chartlist .chartlist-name a.link-block-target', // Tag: Title
'.header-crumb', // Title, Album: Artist
'.primary-album .metadata-display a', // Title: Album
// ----------------------------------------------------------------------------//
'li.tag a', // Title: Genre
'.header-avatar img', // Album: Cover, href: el.attr('src'), content: el.attr('alt')
'.page-content h1' // Error 404
]
}
// Get the cover of an album as a base64 encoded JSON
ScrapeEngine.prototype.getCover = function (album, artist, callback) {
this.getCoverURL(album, artist, function (err, coverURL) {
if (err) {
callback(err, coverURL)
return
}
// Get the the binary of the cover without encoding
got(coverURL, {encoding: null}, function (err, data) {
if (err) {
callback(err, data)
return
}
var base64 = new Buffer(data, 'binary').toString('base64')
callback(err, base64)
})
})
}
// Get the url of an album cover
ScrapeEngine.prototype.getCoverURL = function (album, artist, callback) {
var self = this
this.getURLAlbum(album, artist, function (err, albumURL) {
if (err) {
callback(err, albumURL)
return
}
var url = self.lastfmURL + albumURL
// Get the page of the album
got(url, function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
// Push the url and alt of the img into list
var list = $(self.filter[16]).map(function (i, el) {
el = $(el)
var img = {
src: el.attr('src'),
content: el.attr('alt')
}
console.log(img)
return img
}).get()
callback(err, list[0].src)
})
})
}
// Get the url of an specific album
ScrapeEngine.prototype.getURLAlbum = function (album, artist, callback) {
var self = this
var list = []
// Get the search page with the specified data
got(this.createQueryURL(artist, album), function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
// Push the found result into list
$(self.filter[1]).parent().find('ol.grid-items .grid-items-item a.link-block-target').map(function (i, el) {
el = $(el)
var row = {
href: el.attr('href'),
content: el.text()
}
console.log(row)
list.push(row)
})
callback(err, list[0].href)
})
}
// Get a list of object, which contains similar artist information and the url
ScrapeEngine.prototype.getSimilarArtist = function (artist, callback) {
var self = this
this.getURLArtist(artist, function (err, artistURL) {
if (err) {
callback(err, artistURL)
return
}
var url = self.lastfmURL + artistURL + '/+similar'
console.log(url)
// Get the similar page of a specified artist
got(url, function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
// Push the similar artists into list
var list = $(self.filter[4]).map(function (i, el) {
el = $(el)
var row = {
href: el.attr('href'),
content: el.text()
}
console.log(row)
return row
}).get()
callback(err, list)
})
})
}
// Get the url of a specific artist
ScrapeEngine.prototype.getURLArtist = function (artist, callback) {
var self = this
var list = []
// Get the search page with the specified data
got(this.createQueryURL(artist), function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
// Push the found result into list
$(self.filter[0]).map(function (i, el) {
el = $(el)
var row = {
href: el.attr('href'),
content: el.text()
}
console.log(row)
list.push(row)
})
callback(err, list[0].href)
})
}
// Get the metadata of title
ScrapeEngine.prototype.getMetadata = function (list, result, callback) {
var self = this
// Nothing found
if (list.length === 0) {
return callback(null, result)
}
var url = self.lastfmURL + list[result.length].href
console.log('URL: ' + url)
// Get the page of the title
got(url, function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
var metadata = {}
// Collect all desired metadata
metadata.artist = $(self.filter[13]).text()
metadata.album = $(self.filter[14]).text()
metadata.title = list[result.length].content
metadata.genre = $(self.filter[15]).first().text()
result.push(metadata)
console.log('Metadata: ' + metadata)
// Run again till we iterated through the whole list
if (list.length !== result.length) {
self.getMetadata(list, result, callback)
} else {
callback(err, result)
}
})
}
// Get a list of object, which contains similar title information and the url
ScrapeEngine.prototype.getSimilarTitle = function (title, album, artist, genre, callback) {
// Cleanup request
title = title === '' || !title ? null : title
album = album === '' || !album ? null : album
artist = artist === '' || !artist ? null : artist
genre = genre === '' || !genre ? null : genre
console.log('Getting similar title for...', {title: title, album: album, artist: artist, genre: genre})
// Get similar title by title, artist and album
if (title && album && artist) {
return this.getSimilarTitleByTitle(title, album, artist, callback)
}
// Get similar title by artist and album
if (album && artist) {
return this.getSimilarTitleByAlbum(album, artist, callback)
}
// Get similar title by artist
if (artist) {
return this.getSimilarTitleByArtist(artist, callback)
}
// Get similar title by genre
if (genre) {
return this.getSimilarTitleByGenre(genre, callback)
}
return callback('No valid request data found')
}
ScrapeEngine.prototype.getSimilarTitleByGenre = function (genre, callback) {
var self = this
// Get the tag page
var url = self.lastfmURL + '/tag/' + encodeURI(genre)
console.log('Getting similar title by genre: ' + url)
got(url, function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
// Error 404: If Page not found
if ($('.page-content h1').text() === '404 - Page Not Found') {
callback('Error: 404', html)
return
}
// Push the links of the similar title into list
var list = $(self.filter[9]).map(function (i, el) {
el = $(el)
var row = {
href: el.attr('href'),
content: el.text()
}
console.log(row)
return row
}).get()
self.getMetadata(list, [], callback)
})
}
ScrapeEngine.prototype.getSimilarTitleByArtist = function (artist, callback) {
var self = this
// Get the URL of artist
this.getURLArtist(artist, function (err, artistURL) {
if (err) {
callback(err, artistURL)
return
}
var url = self.lastfmURL + artistURL
console.log('Getting similar title by artist: ' + url)
// Get the artist page
got(url, function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
// Push the links of the top title into list
var list = $(self.filter[9]).map(function (i, el) {
el = $(el)
var row = {
href: el.attr('href'),
content: el.text()
}
console.log(row)
return row
}).get()
// Take the first entry in list as target
url = self.lastfmURL + list[0].href
// Get the page of the specified title
got(url, function (err, html) {
if (err) {
return callback(err, html)
}
var $ = cheerio.load(html)
// Push similar title of the given title into list
var list = $(self.filter[5]).map(function (i, el) {
el = $(el)
var row = {
href: el.attr('href'),
content: el.text()
}
console.log(row)
return row
}).get()
self.getMetadata(list, [], callback)
})
})
})
}
ScrapeEngine.prototype.getSimilarTitleByAlbum = function (album, artist, callback) {
var self = this
this.getURLAlbum(album, artist, function (err, albumURL) {
if (err) {
callback(err, albumURL)
return
}
var url = self.lastfmURL + albumURL
console.log('Getting similar title by album: ' + url)
// Get the page of the album
got(url, function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
// Push the titles of the album into list
var list = $(self.filter[2]).map(function (i, el) {
el = $(el)
var row = {
href: el.attr('href'),
content: el.text()
}
console.log(row)
return row
}).get()
// Take the first entry in list as target
url = self.lastfmURL + list[0].href
// Get the page of the specified title
got(url, function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
// Push similar title of the given title into list
var list = $(self.filter[5]).map(function (i, el) {
el = $(el)
var row = {
href: el.attr('href'),
content: el.text()
}
console.log(row)
return row
}).get()
self.getMetadata(list, [], callback)
})
})
})
}
ScrapeEngine.prototype.getSimilarTitleByTitle = function (title, album, artist, callback) {
var self = this
this.getURLTitle(title, artist, function (err, titleURL) {
if (err) {
callback(err, titleURL)
return
}
var url = self.lastfmURL + titleURL
console.log('Getting similar title by title: ' + url)
// Get the page of the title
got(url, function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
// Push similar title of the given title into list
var list = $(self.filter[5]).map(function (i, el) {
el = $(el)
var row = {
href: el.attr('href'),
content: el.text()
}
console.log(row)
return row
}).get()
console.log('Contents', list)
self.getMetadata(list, [], callback)
})
})
}
// Get the url of a specific title
ScrapeEngine.prototype.getURLTitle = function (title, artist, callback) {
var self = this
var list = []
// Get the search page with the specified data
got(this.createQueryURL(artist, title), function (err, html) {
if (err) {
callback(err, html)
return
}
var $ = cheerio.load(html)
// Push the result into list
$(self.filter[2]).map(function (i, el) {
el = $(el)
var row = {
href: el.attr('href'),
content: el.text()
}
console.log(row)
list.push(row)
})
callback(err, list[0].href)
})
}
// Creates an query url with the passed metadata
ScrapeEngine.prototype.createQueryURL = function (artist, album, title) {
var query = _objectValues(arguments).map(function (x) { return encodeURI(x) })
var result = this.lastfmURL + '/search?q=' + query.join('%20')
console.log('Query url', result)
return result
}
// Get the object values as an array
function _objectValues (object) {
var array = []
for (var i in object) {
array.push(object[i])
}
return array
}