diff --git a/package.json b/package.json index 99b1b4cf..69d54683 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "6.2.9", + "version": "6.3.9", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": { diff --git a/src/_data/albums.js b/src/_data/albums.js index 24fac93d..7076dceb 100644 --- a/src/_data/albums.js +++ b/src/_data/albums.js @@ -1,7 +1,11 @@ import EleventyFetch from '@11ty/eleventy-fetch' +const removeAccents = (inputStr) => { + const normalizedStr = inputStr.normalize('NFD'); + return normalizedStr.replace(/[\u0300-\u036f]/g, ''); +}; + export default async function () { - const ALBUM_DENYLIST = ['no-love-deep-web', 'unremittance', 'celebratory-beheading'] const MUSIC_KEY = process.env.API_KEY_LASTFM const url = `https://ws.audioscrobbler.com/2.0/?method=user.gettopalbums&user=coryd_&api_key=${MUSIC_KEY}&limit=8&format=json&period=7day` const formatAlbumData = (albums) => albums.map((album) => { @@ -10,12 +14,8 @@ export default async function () { artist: album['artist']['name'], plays: album['playcount'], rank: album['@attr']['rank'], - image: !ALBUM_DENYLIST.includes(album['name'].replace(/\s+/g, '-').toLowerCase()) - ? album['image'][album['image'].length - 1]['#text'].replace( - 'https://lastfm.freetls.fastly.net', - 'https://cd-albums.b-cdn.net' - ) - : `https://cdn.coryd.dev/albums/${album['name'].replace(/\s+/g, '-').toLowerCase()}.jpg`, + image: `https://cdn.coryd.dev/albums/${removeAccents(album['artist']['name']).replace(/\s+/g, '-').toLowerCase()}-${removeAccents(album['name'].replace(/[:\/\\,'']+/g +, '').replace(/\s+/g, '-').toLowerCase())}.jpg`, url: album['mbid'] ? `https://musicbrainz.org/album/${album['mbid']}` : `https://musicbrainz.org/taglookup/index?tag-lookup.artist=${album['artist'][ diff --git a/src/_data/artists.js b/src/_data/artists.js index 6a560d14..f3f9159a 100644 --- a/src/_data/artists.js +++ b/src/_data/artists.js @@ -23,9 +23,7 @@ export default async function () { title: artist['name'], plays: artist['playcount'], rank: artist['@attr']['rank'], - image: `https://cdn.coryd.dev/artists/${removeAccents(artist['name']) - .replace(/\s+/g, '-') - .toLowerCase()}.jpg`, + image: `https://cdn.coryd.dev/artists/${removeAccents(artist['name']).replace(/\s+/g, '-').toLowerCase()}.jpg`, url: mbid ? `https://musicbrainz.org/artist/${mbid}` : `https://musicbrainz.org/search?query=${artist['name'].replace(