chore: scrobbling
This commit is contained in:
parent
1f1f0e0c62
commit
bb7fd5a6a6
1 changed files with 7 additions and 9 deletions
|
@ -13,11 +13,13 @@ const weekStop = () => {
|
||||||
return nextSunday.toMillis()
|
return nextSunday.toMillis()
|
||||||
}
|
}
|
||||||
|
|
||||||
const twoWeeksAgo = DateTime.now().minus({ weeks: 2 });
|
const filterOldScrobbles = (scrobbles) => {
|
||||||
const filterOldScrobbles = (scrobbles) => scrobbles.filter(scrobble => {
|
const twoWeeksAgo = DateTime.now().minus({ weeks: 2 });
|
||||||
let timestamp = DateTime.fromISO(scrobble.timestamp)
|
return scrobbles.filter(obj => {
|
||||||
return timestamp.diff(twoWeeksAgo).as('weeks') <= -2
|
const timestamp = DateTime.fromISO(obj.timestamp);
|
||||||
});
|
return timestamp >= twoWeeksAgo;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
export default async (request) => {
|
export default async (request) => {
|
||||||
const ACCOUNT_ID_PLEX = Netlify.env.get("ACCOUNT_ID_PLEX");
|
const ACCOUNT_ID_PLEX = Netlify.env.get("ACCOUNT_ID_PLEX");
|
||||||
|
@ -123,10 +125,6 @@ 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) }
|
||||||
console.log('### SCROBBLE SET')
|
|
||||||
console.log(scrobbleUpdate);
|
|
||||||
console.log('### WINDOW SET')
|
|
||||||
console.log(windowUpdate);
|
|
||||||
await scrobbles.setJSON(`${weekStop()}`, scrobbleUpdate)
|
await scrobbles.setJSON(`${weekStop()}`, scrobbleUpdate)
|
||||||
await scrobbles.setJSON('window', windowUpdate)
|
await scrobbles.setJSON('window', windowUpdate)
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue