File size: 1,297 Bytes
b58c6cb |
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 |
import { makeRequest } from '../utils.js'
async function search(query) {
const { body: data } = await makeRequest(`https://genius.com/api/search/multi?q=${encodeURIComponent(query)}`, {
method: 'GET'
})
if (data.response.sections[1].hits.length === 0) return null
return data.response.sections[1].hits[0].result.path
}
async function loadLyrics(decodedTrack, language) {
const searchResult = await search(`${decodedTrack.title} ${decodedTrack.author}`)
if (!searchResult) return null
const { body: data } = await makeRequest(`https://genius.com${searchResult}`, {
method: 'GET'
})
const trackInfo = JSON.parse(data.match(/JSON.parse\('(.*)'\);/)[1].replace(/\\(.)/g, '$1'))
const lyricsEvents = []
trackInfo.songPage.lyricsData.body.children[0].children.forEach((text) => {
if (typeof text === 'object') {
if (!text.children) return;
text.children.forEach((child) => {
if (typeof child !== 'string') return;
lyricsEvents.push({
text: child
})
})
return;
}
lyricsEvents.push({
text
})
})
return {
loadType: 'lyricsSingle',
data: {
name: 'original',
synced: false,
data: lyricsEvents,
rtl: false
}
}
}
export default {
loadLyrics
} |