feat: more reliable images (hopefully)
This commit is contained in:
parent
d7981e9d4a
commit
7a15f47a8c
3 changed files with 9 additions and 11 deletions
|
@ -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": {
|
||||
|
|
|
@ -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'][
|
||||
|
|
|
@ -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(
|
||||
|
|
Reference in a new issue