chore: scrobbling
This commit is contained in:
parent
faec7fb428
commit
c2f0b4dce9
1 changed files with 11 additions and 2 deletions
|
@ -1,10 +1,21 @@
|
||||||
import { getStore } from '@netlify/blobs'
|
import { getStore } from '@netlify/blobs'
|
||||||
|
import { DateTime } from 'luxon'
|
||||||
|
|
||||||
const sanitizeMediaString = (string) => {
|
const sanitizeMediaString = (string) => {
|
||||||
const normalizedStr = string.normalize('NFD');
|
const normalizedStr = string.normalize('NFD');
|
||||||
return normalizedStr.replace(/[\u0300-\u036f]/g, '').replace(/\.{3}/g, '');
|
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) => {
|
export default async (request, context) => {
|
||||||
const ACCOUNT_ID_PLEX = Netlify.env.get("ACCOUNT_ID_PLEX");
|
const ACCOUNT_ID_PLEX = Netlify.env.get("ACCOUNT_ID_PLEX");
|
||||||
const MUSIC_KEY = Netlify.env.get("API_KEY_LASTFM");
|
const MUSIC_KEY = Netlify.env.get("API_KEY_LASTFM");
|
||||||
|
@ -26,7 +37,6 @@ export default async (request, context) => {
|
||||||
{ headers: { "Content-Type": "application/json" } }
|
{ headers: { "Content-Type": "application/json" } }
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
if (payload?.event === 'media.scrobble') {
|
if (payload?.event === 'media.scrobble') {
|
||||||
const artist = payload['Metadata']['grandparentTitle']
|
const artist = payload['Metadata']['grandparentTitle']
|
||||||
const album = payload['Metadata']['parentTitle']
|
const album = payload['Metadata']['parentTitle']
|
||||||
|
@ -80,7 +90,6 @@ export default async (request, context) => {
|
||||||
genre,
|
genre,
|
||||||
image: `https://cdn.coryd.dev/artists/${encodeURIComponent(sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase())}.jpg`
|
image: `https://cdn.coryd.dev/artists/${encodeURIComponent(sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase())}.jpg`
|
||||||
}
|
}
|
||||||
console.log(artistData)
|
|
||||||
await artists.setJSON(artistKey, JSON.stringify(artistData))
|
await artists.setJSON(artistKey, JSON.stringify(artistData))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue