Compare commits
No commits in common. "67a78c2de28f2885c31e89595f07546d2b40dd1d" and "96ac5a6f31ef02b9158d0678f0017eff1c148100" have entirely different histories.
67a78c2de2
...
96ac5a6f31
34
index.js
34
index.js
|
@ -15,30 +15,18 @@ require('dotenv').config();
|
|||
|
||||
|
||||
async function getSpotifyPlaylist(playListUrl){
|
||||
const spotifyPlaylistPageContent = await fetch(playListUrl, {
|
||||
headers: {
|
||||
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:80.0) Gecko/20100101 Firefox/80.0',
|
||||
}
|
||||
})
|
||||
const spotifyPlaylistPageContent = await fetch(playListUrl)
|
||||
.then(res => res.text())
|
||||
|
||||
const $ = Cheerio.load(spotifyPlaylistPageContent);
|
||||
|
||||
let config;
|
||||
$('script#config').each(function(i, elem){
|
||||
config = JSON.parse($(this).html());
|
||||
});
|
||||
debug('config=%O', config);
|
||||
|
||||
const playlistSpotifyId = /\/playlist\/([^\/]+)\/?$/.exec(playListUrl)[1];
|
||||
|
||||
const playlist = await fetch(`https://api.spotify.com/v1/playlists/${playlistSpotifyId}?type=track%2Cepisode`, {
|
||||
headers: {
|
||||
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:80.0) Gecko/20100101 Firefox/80.0',
|
||||
Authorization: `Bearer ${config.accessToken}`
|
||||
let playlist;
|
||||
$('script').each(function(i, elem){
|
||||
const content = $(this).html();
|
||||
if(/Spotify.Entity/.test(content)){
|
||||
playlist = vm.runInNewContext(content);
|
||||
}
|
||||
}).then(res => res.json());
|
||||
|
||||
});
|
||||
return playlist;
|
||||
}
|
||||
|
||||
|
@ -67,7 +55,7 @@ async function searchOnVkMusic(query){
|
|||
}
|
||||
|
||||
async function searchOnMyFreeMp3(query){
|
||||
const url = new URL('https://myfreemp3cc.com/api/search.php?callback=jQuery666');
|
||||
const url = new URL('https://myfreemp3cc.com/api/search.php?callback=callback');
|
||||
|
||||
return await fetch(url, {
|
||||
method: 'POST',
|
||||
|
@ -77,11 +65,7 @@ async function searchOnMyFreeMp3(query){
|
|||
}),
|
||||
})
|
||||
.then(res => res.text())
|
||||
.then(page => {
|
||||
debug('page=%O', page);
|
||||
return page;
|
||||
})
|
||||
.then(jsonp => vm.runInNewContext(jsonp, { jQuery666: (payload) => payload.response }))
|
||||
.then(jsonp => vm.runInNewContext(jsonp, { callback: (payload) => payload.response }))
|
||||
.then(items => _.filter(items, item => !_.isString(item)));
|
||||
}
|
||||
|
||||
|
|
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vk-music-dl",
|
||||
"version": "1.0.7",
|
||||
"version": "1.0.6",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vk-music-dl",
|
||||
"version": "1.0.7",
|
||||
"version": "1.0.6",
|
||||
"description": "Download Spotify playlist as mp3 from VKontakte",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in New Issue
Block a user