chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-29 16:15:25 -07:00
parent 2205fa168d
commit 1f1f0e0c62
No known key found for this signature in database

View file

@ -111,6 +111,10 @@ export default async (request) => {
}
const scrobbleData = await scrobbles.get(`${weekStop()}`, { type: 'json'})
const windowData = await scrobbles.get('window', { type: 'json'})
console.log('### SCROBBLE START')
console.log(scrobbleData);
console.log('### WINDOW START')
console.log(windowData);
await scrobbles.setJSON('now-playing', {...trackScrobbleData, ...{ url: `https://musicbrainz.org/artist/${artistInfo?.['mbid']}`}})
let scrobbleUpdate = scrobbleData
let windowUpdate = windowData;
@ -119,6 +123,10 @@ export default async (request) => {
if (windowData?.['data']) windowUpdate['data'].push(trackScrobbleData)
if (!windowData?.['data']) windowUpdate = { data: [trackScrobbleData] }
windowUpdate = { data: filterOldScrobbles(windowUpdate.data) }
console.log('### SCROBBLE SET')
console.log(scrobbleUpdate);
console.log('### WINDOW SET')
console.log(windowUpdate);
await scrobbles.setJSON(`${weekStop()}`, scrobbleUpdate)
await scrobbles.setJSON('window', windowUpdate)
}