From 1e3d9ed5a716affc01185154018c36e902de0dd6 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 3 Dec 2023 08:56:34 -0800 Subject: [PATCH] chore: additional mbid patching --- netlify/edge-functions/now-playing.js | 29 +++++++++++++++++---------- src/_data/artists.js | 26 ++++++++++++++++++++++-- 2 files changed, 42 insertions(+), 13 deletions(-) diff --git a/netlify/edge-functions/now-playing.js b/netlify/edge-functions/now-playing.js index 5d3ca307..5e1205df 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -41,6 +41,23 @@ const emojiMap = (genre, artist) => { return DEFAULT } +const mbidMap = (artist) => { + const map = { + afi: '1c3919b2-43ca-4a4a-935d-9d50135ec0ef', + 'carpe noctem': 'aa349181-1cb9-4340-bb3f-82eefba3e697', + cruciamentum: '9a783663-db0c-4237-a3a9-afe72d055ddc', + 'edge of sanity': '82d1972f-f815-480d-ba78-9873b799bdd1', + fumes: 'a5139ca1-f4f3-4bea-ae4c-ae4e2efd857d', + ghastly: '70f969df-7fc1-421e-afad-678c0bbd1aea', + krallice: 'b4e4b359-76a3-447e-be1d-80a24887134e', + osees: '194272cc-dcc8-4640-a4a6-66da7d250d5c', + panopticon: 'd9b1f00a-31a7-4f64-9f29-8481e7be8911', + 'pigment vehicle': 'c421f86c-991c-4b2d-9058-516375903deb', + worm: '6313658e-cd68-4c81-9778-17ce3825748e', + } + return map[artist.toLowerCase()] || '' +} + export default async () => { // eslint-disable-next-line no-undef const TV_KEY = Netlify.env.get('API_KEY_TRAKT') @@ -132,17 +149,7 @@ export default async () => { let genre = '' // mbid mismatches - if (artist === 'AFI') mbid = '1c3919b2-43ca-4a4a-935d-9d50135ec0ef' - if (artist === 'Carpe Noctem') mbid = 'aa349181-1cb9-4340-bb3f-82eefba3e697' - if (artist === 'Cruciamentum') mbid = '9a783663-db0c-4237-a3a9-afe72d055ddc' - if (artist === 'Edge of Sanity') mbid = '82d1972f-f815-480d-ba78-9873b799bdd1' - if (artist === 'Fumes') mbid = 'a5139ca1-f4f3-4bea-ae4c-ae4e2efd857d' - if (artist === 'Ghastly') mbid = '70f969df-7fc1-421e-afad-678c0bbd1aea' - if (artist === 'Krallice') mbid = 'b4e4b359-76a3-447e-be1d-80a24887134e' - if (artist === 'Osees') mbid = '194272cc-dcc8-4640-a4a6-66da7d250d5c' - if (artist === 'Panopticon') mbid = 'd9b1f00a-31a7-4f64-9f29-8481e7be8911' - if (artist === 'Pigment Vehicle') mbid = 'c421f86c-991c-4b2d-9058-516375903deb' - if (artist === 'Worm') mbid = '6313658e-cd68-4c81-9778-17ce3825748e' + if (mbidMap(artist) !== '') mbid = mbidMap(artist) const artistUrl = mbid ? `https://musicbrainz.org/artist/${mbid}` diff --git a/src/_data/artists.js b/src/_data/artists.js index dbf92777..d1a9c8e6 100644 --- a/src/_data/artists.js +++ b/src/_data/artists.js @@ -1,5 +1,22 @@ const EleventyFetch = require('@11ty/eleventy-fetch') +const mbidMap = (artist) => { + const map = { + afi: '1c3919b2-43ca-4a4a-935d-9d50135ec0ef', + 'carpe noctem': 'aa349181-1cb9-4340-bb3f-82eefba3e697', + cruciamentum: '9a783663-db0c-4237-a3a9-afe72d055ddc', + 'edge of sanity': '82d1972f-f815-480d-ba78-9873b799bdd1', + fumes: 'a5139ca1-f4f3-4bea-ae4c-ae4e2efd857d', + ghastly: '70f969df-7fc1-421e-afad-678c0bbd1aea', + krallice: 'b4e4b359-76a3-447e-be1d-80a24887134e', + osees: '194272cc-dcc8-4640-a4a6-66da7d250d5c', + panopticon: 'd9b1f00a-31a7-4f64-9f29-8481e7be8911', + 'pigment vehicle': 'c421f86c-991c-4b2d-9058-516375903deb', + worm: '6313658e-cd68-4c81-9778-17ce3825748e', + } + return map[artist.toLowerCase()] || '' +} + module.exports = async function () { const MUSIC_KEY = process.env.API_KEY_LASTFM const url = `https://ws.audioscrobbler.com/2.0/?method=user.gettopartists&user=coryd_&api_key=${MUSIC_KEY}&limit=8&format=json&period=7day` @@ -9,6 +26,11 @@ module.exports = async function () { }).catch() const data = await res return data['topartists']['artist'].map((artist) => { + let mbid = artist['mbid'] + + // mbid mismatches + if (mbidMap(artist['name']) !== '') mbid = mbidMap(artist['name']) + return { title: artist['name'], plays: artist['playcount'], @@ -16,8 +38,8 @@ module.exports = async function () { image: `https://cdn.coryd.dev/artists/${artist['name'].replace(/\s+/g, '-').toLowerCase()}.jpg` || 'https://cdn.coryd.dev/artists/missing-artist.jpg', - url: artist['mbid'] - ? `https://musicbrainz.org/artist/${artist['mbid']}` + url: mbid + ? `https://musicbrainz.org/artist/${mbid}` : `https://musicbrainz.org/search?query=${artist['name'].replace(/\s+/g, '+')}&type=artist`, type: 'artist', }