chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-29 12:51:47 -07:00
parent faec7fb428
commit c2f0b4dce9
No known key found for this signature in database

View file

@ -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))
}
}