chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-29 15:12:34 -07:00
parent e3f0ae9783
commit d3f7ac8533
No known key found for this signature in database

View file

@ -101,7 +101,8 @@ export default async (request) => {
// scrobble logic // scrobble logic
artistInfo = await artists.get(artistKey, { type: 'json'}) artistInfo = await artists.get(artistKey, { type: 'json'})
console.log(artistInfo?.['mbid']) console.log(artistInfo)
console.log(typeof artistInfo)
const artistUrl = `https://musicbrainz.org/artist/${artistInfo?.['mbid']}` const artistUrl = `https://musicbrainz.org/artist/${artistInfo?.['mbid']}`
const trackScrobbleData = { const trackScrobbleData = {
track, track,
@ -126,8 +127,9 @@ export default async (request) => {
if (!scrobbleUpdate['data']) scrobbleUpdate = { data: [trackScrobbleData] } if (!scrobbleUpdate['data']) scrobbleUpdate = { data: [trackScrobbleData] }
if (windowData['data']) windowUpdate['data'].push(trackScrobbleData) if (windowData['data']) windowUpdate['data'].push(trackScrobbleData)
if (!windowData['data']) windowUpdate = { data: [trackScrobbleData] } if (!windowData['data']) windowUpdate = { data: [trackScrobbleData] }
windowUpdate = { data: filterOldScrobbles(windowUpdate.data) }
await scrobbles.setJSON(`${weekStop()}`, JSON.stringify(scrobbleUpdate)) await scrobbles.setJSON(`${weekStop()}`, JSON.stringify(scrobbleUpdate))
await scrobbles.setJSON('window', JSON.stringify(filterOldScrobbles(windowUpdate.data))) await scrobbles.setJSON('window', JSON.stringify(windowUpdate))
} }
return new Response(JSON.stringify({ return new Response(JSON.stringify({