From c2f0b4dce922e421f12f8024b2921917664d3cec Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 29 Mar 2024 12:51:47 -0700 Subject: [PATCH] chore: scrobbling --- api/scrobble.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/api/scrobble.js b/api/scrobble.js index 6ccee46b..d0d6cf2c 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -1,10 +1,21 @@ import { getStore } from '@netlify/blobs' +import { DateTime } from 'luxon' const sanitizeMediaString = (string) => { const normalizedStr = string.normalize('NFD'); return normalizedStr.replace(/[\u0300-\u036f]/g, '').replace(/\.{3}/g, ''); }; +const weekStop = () => { + const currentDate = DateTime.now() + let nextSunday = currentDate.plus({ days: (7 - currentDate.weekday) % 7 }) + nextSunday = nextSunday.set({ hour: 0, minute: 0, second: 0, millisecond: 0 }) + console.log(nextSunday.toMillis()); + return nextSunday.toMillis() +} + +weekStop() + export default async (request, context) => { const ACCOUNT_ID_PLEX = Netlify.env.get("ACCOUNT_ID_PLEX"); const MUSIC_KEY = Netlify.env.get("API_KEY_LASTFM"); @@ -26,7 +37,6 @@ export default async (request, context) => { { headers: { "Content-Type": "application/json" } } ) - if (payload?.event === 'media.scrobble') { const artist = payload['Metadata']['grandparentTitle'] const album = payload['Metadata']['parentTitle'] @@ -80,7 +90,6 @@ export default async (request, context) => { genre, image: `https://cdn.coryd.dev/artists/${encodeURIComponent(sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase())}.jpg` } - console.log(artistData) await artists.setJSON(artistKey, JSON.stringify(artistData)) } }