chore: debug
This commit is contained in:
parent
21dc886e5f
commit
cc13b6e2e7
1 changed files with 58 additions and 4 deletions
|
@ -1,11 +1,21 @@
|
|||
import { getStore } from '@netlify/blobs'
|
||||
|
||||
const sanitizeMediaString = (string) => {
|
||||
const normalizedStr = string.normalize('NFD');
|
||||
return normalizedStr.replace(/[\u0300-\u036f]/g, '').replace(/\.{3}/g, '');
|
||||
};
|
||||
|
||||
export default async (request, context) => {
|
||||
const ACCOUNT_ID_PLEX = Netlify.env.get("ACCOUNT_ID_PLEX");
|
||||
const MUSIC_KEY = Netlify.env.get("API_KEY_LASTFM");
|
||||
const params = new URL(request['url']).searchParams
|
||||
const id = params.get('id')
|
||||
const data = await request.formData()
|
||||
const payload = data.get('payload')
|
||||
const artist = payload['Metadata']['grandparentTitle']
|
||||
const album = payload['Metadata']['parentTitle']
|
||||
const track = payload['Metadata']['title']
|
||||
const artists = getStore('artists')
|
||||
|
||||
const debug = getStore('debug')
|
||||
await debug.setJSON('debug', JSON.stringify(payload))
|
||||
|
@ -22,11 +32,55 @@ export default async (request, context) => {
|
|||
{ headers: { "Content-Type": "application/json" } }
|
||||
)
|
||||
|
||||
|
||||
if (payload?.event === 'media.scrobble') {
|
||||
console.log('scrobble')
|
||||
console.log(data)
|
||||
console.log(payload)
|
||||
console.log(typeof payload)
|
||||
const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()
|
||||
const artistInfo = await artists.getJSON(artistKey)
|
||||
if (!artistInfo) {
|
||||
const trackRes = await fetch(
|
||||
`https://ws.audioscrobbler.com/2.0/?method=track.getInfo&api_key=${MUSIC_KEY}&artist=${artist}&track=${track}&format=json`,
|
||||
{
|
||||
type: "json",
|
||||
}
|
||||
).then((data) => {
|
||||
if (data.ok) return data.json()
|
||||
throw new Error('Something went wrong with the Last.fm endpoint.');
|
||||
}).catch(err => {
|
||||
console.log(err);
|
||||
return {}
|
||||
});
|
||||
const mbidRes = await fetch("https://coryd.dev/api/mbids", {
|
||||
type: "json",
|
||||
}).then((data) => {
|
||||
if (data.ok) return data.json()
|
||||
throw new Error('Something went wrong with the mbid endpoint.');
|
||||
}).catch(err => {
|
||||
console.log(err);
|
||||
return {}
|
||||
});
|
||||
const mbid = trackRes['track']['artist']['mbid']
|
||||
const mbidMap = () => mbidRes[track["artist"]["#text"].toLowerCase()] || "";
|
||||
|
||||
// mbid mismatches
|
||||
if (mbidMap() !== "") mbid = mbidMap();
|
||||
|
||||
const genreUrl = `https://musicbrainz.org/ws/2/artist/${mbid}?inc=aliases+genres&fmt=json`;
|
||||
const genreRes = await fetch(genreUrl, {
|
||||
type: "json",
|
||||
}).then((data) => {
|
||||
if (data.ok) return data.json()
|
||||
throw new Error('Something went wrong with the MusicBrainz endpoint.');
|
||||
}).catch(err => {
|
||||
console.log(err);
|
||||
return {}
|
||||
});
|
||||
genre = genreRes['genres'].sort((a, b) => b.count - a.count)[0]?.["name"] || "";
|
||||
const artistData = {
|
||||
mbid,
|
||||
genre
|
||||
}
|
||||
await artists.setJSON(artistKey, JSON.stringify(artistData))
|
||||
}
|
||||
}
|
||||
|
||||
return new Response(JSON.stringify({
|
||||
|
|
Reference in a new issue