From 8edecf908d2d9f078e36dba1f43448c17cef9cfa Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 9 Oct 2023 16:00:47 -0700 Subject: [PATCH] fix: internalize aliasing dependencies --- netlify/edge-functions/now-playing.js | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/netlify/edge-functions/now-playing.js b/netlify/edge-functions/now-playing.js index e1d270e2..310e7919 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -1,4 +1,29 @@ -const { aliasArtist } = require('../../src/utils/media') +const artistAliases = { + "aliases": [ + { + "artist": "Aesop Rock", + "aliases": ["Aesop Rock & Homeboy Sandman", "Aesop Rock & Blockhead"] + }, + { + "artist": "Fen", + "aliases": ["Sleepwalker & Fen"] + }, + { + "artist": "Osees", + "aliases": ["OCS", "The Ohsees", "Thee Oh Sees", "Thee Oh See's"] + }, + { + "artist": "Tom Waits", + "aliases": ["Tom Waits & Crystal Gayle", "Crystal Gayle"] + } + ] +} + +const aliasArtist = (artist) => { + const aliased = artistAliases.aliases.find((alias) => alias.aliases.includes(artist)) + if (aliased) artist = aliased.artist + return artist +} export default async () => { // eslint-disable-next-line no-undef