chore: scrobbling
This commit is contained in:
parent
7d947521f7
commit
72b33002f0
1 changed files with 2 additions and 4 deletions
|
@ -100,7 +100,7 @@ export default async (request) => {
|
||||||
const artistObj = {
|
const artistObj = {
|
||||||
mbid,
|
mbid,
|
||||||
genre,
|
genre,
|
||||||
image: `https://cdn.coryd.dev/artists/${encodeURIComponent(sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase())}.jpg`
|
image: `https://cdn.coryd.dev/artists/${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}.jpg`
|
||||||
}
|
}
|
||||||
artistInfo = artistObj
|
artistInfo = artistObj
|
||||||
await artists.setJSON(artistKey, artistObj)
|
await artists.setJSON(artistKey, artistObj)
|
||||||
|
@ -108,14 +108,12 @@ export default async (request) => {
|
||||||
|
|
||||||
// if there is no album blob, populate one
|
// if there is no album blob, populate one
|
||||||
if (!albumInfo) {
|
if (!albumInfo) {
|
||||||
console.log(`https://ws.audioscrobbler.com/2.0/?method=album.getinfo&api_key=${MUSIC_KEY}&artist=${encodeURIComponent(sanitizeMediaString(artist).replace(/\s+/g, '+').toLowerCase())}&album=${encodeURIComponent(sanitizeMediaString(album).replace(/\s+/g, '+').toLowerCase())}&format=json`)
|
|
||||||
const albumRes = await fetch(
|
const albumRes = await fetch(
|
||||||
`https://ws.audioscrobbler.com/2.0/?method=album.getinfo&api_key=${MUSIC_KEY}&artist=${encodeURIComponent(sanitizeMediaString(artist).replace(/\s+/g, '+').toLowerCase())}&album=${encodeURIComponent(sanitizeMediaString(album).replace(/\s+/g, '+').toLowerCase())}&format=json`,
|
`https://ws.audioscrobbler.com/2.0/?method=album.getinfo&api_key=${MUSIC_KEY}&artist=${sanitizeMediaString(artist).replace(/\s+/g, '+').toLowerCase()}&album=${sanitizeMediaString(album).replace(/\s+/g, '+').toLowerCase()}&format=json`,
|
||||||
{
|
{
|
||||||
type: "json",
|
type: "json",
|
||||||
}
|
}
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
console.log(data)
|
|
||||||
if (data.ok) return data.json()
|
if (data.ok) return data.json()
|
||||||
throw new Error('Something went wrong with the Last.fm endpoint.');
|
throw new Error('Something went wrong with the Last.fm endpoint.');
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|
Reference in a new issue