chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-30 13:46:35 -07:00
parent c6f9ec7ced
commit 146e8d942a
No known key found for this signature in database

View file

@ -11,19 +11,17 @@ const sanitizeMediaString = (string) => {
.replace(/[\(\)\[\]\{\}]/g, '') .replace(/[\(\)\[\]\{\}]/g, '')
} }
const weekStop = () => { const weekKey = () => {
const currentDate = DateTime.now() const currentDate = DateTime.now();
let nextSunday = currentDate.plus({ days: (7 - currentDate.weekday) % 7 }) return `${currentDate.year}-${currentDate.weekNumber}`
nextSunday = nextSunday.set({ hour: 0, minute: 0, second: 0, millisecond: 0 })
return nextSunday.toMillis()
} }
const filterOldScrobbles = (scrobbles) => { const filterOldScrobbles = (scrobbles) => {
const twoWeeksAgo = DateTime.now().minus({ weeks: 2 }); const twoWeeksAgo = DateTime.now().minus({ weeks: 2 });
return scrobbles.filter(scrobble => { return scrobbles.filter(scrobble => {
const timestamp = DateTime.fromISO(scrobble.timestamp); const timestamp = DateTime.fromISO(scrobble.timestamp);
return timestamp >= twoWeeksAgo; return timestamp >= twoWeeksAgo;
}); });
} }
export default async (request) => { export default async (request) => {
@ -142,7 +140,7 @@ export default async (request) => {
trackNumber, trackNumber,
timestamp timestamp
} }
const scrobbleData = await scrobbles.get(`${weekStop()}`, { type: 'json'}) const scrobbleData = await scrobbles.get(`${weekKey()}`, { type: 'json'})
const windowData = await scrobbles.get('window', { type: 'json'}) const windowData = await scrobbles.get('window', { type: 'json'})
await scrobbles.setJSON('now-playing', {...trackScrobbleData, ...{ url: `https://musicbrainz.org/artist/${artistInfo?.['mbid']}`}}) await scrobbles.setJSON('now-playing', {...trackScrobbleData, ...{ url: `https://musicbrainz.org/artist/${artistInfo?.['mbid']}`}})
let scrobbleUpdate = scrobbleData let scrobbleUpdate = scrobbleData
@ -152,7 +150,7 @@ export default async (request) => {
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) } windowUpdate = { data: filterOldScrobbles(windowUpdate.data) }
await scrobbles.setJSON(`${weekStop()}`, scrobbleUpdate) await scrobbles.setJSON(`${weekKey()}`, scrobbleUpdate)
await scrobbles.setJSON('window', windowUpdate) await scrobbles.setJSON('window', windowUpdate)
} }