From df9dcde2352c96205f71e1ec31117c86713956c6 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 30 Mar 2024 16:59:52 -0700 Subject: [PATCH] chore: scrobbling --- api/scrobble.js | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/api/scrobble.js b/api/scrobble.js index 7d3f6190..dc873883 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -56,11 +56,13 @@ export default async (request) => { const timestamp = DateTime.now() const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase() const albumKey = `${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(album).replace(/\s+/g, '-').toLowerCase()}` - let artistInfo = await artists.get(artistKey, { type: 'json'}) // get the artist blob - let albumInfo = await albums.get(albumKey, { type: 'json'}) // get the album blob + const artistsMap = await artists.get('artists-map', { type: 'json' }) + const albumsMap = await albums.get('albums-map', { type: 'json' }) + let artistInfo = {} + let albumInfo = {} // if there is no artist blob, populate one - if (!artistInfo) { + if (!artistsMap[artist]) { const artistRes = await fetch( `https://ws.audioscrobbler.com/2.0/?method=artist.getInfo&api_key=${MUSIC_KEY}&artist=${sanitizeMediaString(artist).replace(/\s+/g, '+').toLowerCase()}&format=json`, { @@ -106,11 +108,12 @@ export default async (request) => { image: `https://cdn.coryd.dev/artists/${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}.jpg` } artistInfo = artistObj - await artists.setJSON(artistKey, artistObj) + artistsMap[artist] = artistObj + await artists.setJSON('artists-map', artistsMap) } // if there is no album blob, populate one - if (!albumInfo) { + if (!albumsMap[album]) { const albumRes = await fetch( `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`, { @@ -129,7 +132,8 @@ export default async (request) => { image: `https://cdn.coryd.dev/albums/${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(album.replace(/[:\/\\,'']+/g , '').replace(/\s+/g, '-').toLowerCase())}.jpg` } - await albums.setJSON(albumKey, albumObj) + albumsMap[album] = albumObj + await albums.setJSON('albums-map', albumsMap) } // scrobble logic