feat: direct artist + album links
This commit is contained in:
parent
af001512fe
commit
df32b17b43
4 changed files with 8 additions and 5 deletions
|
@ -11,6 +11,7 @@ module.exports = {
|
|||
mdToHtml: (content) => {
|
||||
return marked.parse(content)
|
||||
},
|
||||
dashLower: (string) => string.replace(/\s+/g, '-').toLowerCase(),
|
||||
getPostImage: (image) => {
|
||||
if (image && image !== '') return image
|
||||
return '/assets/img/social-card.webp'
|
||||
|
@ -40,7 +41,8 @@ module.exports = {
|
|||
}
|
||||
|
||||
const filtered =
|
||||
webmentions.filter((entry) => entry['wm-target'] === `https://coryd.dev${url}`)
|
||||
webmentions
|
||||
.filter((entry) => entry['wm-target'] === `https://coryd.dev${url}`)
|
||||
.filter((entry) => allowedTypes.includes(entry['wm-property'])) || []
|
||||
|
||||
filtered.forEach((m) => {
|
||||
|
|
|
@ -10,7 +10,7 @@ const aliasArtists = (array) => {
|
|||
}
|
||||
|
||||
const sanitizeAlbums = (array) => {
|
||||
const denyList = /(\[|\()(Deluxe Edition|Special Edition|Remastered)(\]|\))/i;
|
||||
const denyList = /(\[|\()(Deluxe Edition|Special Edition|Remastered)(\]|\))/i
|
||||
array.forEach((a) => {
|
||||
a.name = a.name.replace(denyList, '')
|
||||
})
|
||||
|
@ -51,7 +51,7 @@ module.exports = async function () {
|
|||
while (CURRENT_PAGE < PAGES && hasNextPage) {
|
||||
const URL = `https://api.music.apple.com/v1/me/recent/played/tracks?limit=${PAGE_SIZE}&offset=${
|
||||
PAGE_SIZE * CURRENT_PAGE
|
||||
}`
|
||||
}&extend=album`
|
||||
const tracks = await fetch(URL, {
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
|
@ -81,6 +81,7 @@ module.exports = async function () {
|
|||
name: track.attributes['albumName'],
|
||||
artist: track.attributes['artistName'],
|
||||
art: track.attributes.artwork.url.replace('{w}', '300').replace('{h}', '300'),
|
||||
url: track.attributes.url,
|
||||
plays: 1,
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
</h2>
|
||||
<div class="grid grid-cols-2 gap-2 md:grid-cols-4 not-prose">
|
||||
{% for album in music.albums %}
|
||||
<a href="https://rateyourmusic.com/search?searchtype=l&searchterm={{album.name | escape}}%20{{ album.artist | escape }}" title="{{album.name | escape}} by {{ album.artist | escape }}">
|
||||
<a href="https://song.link/{{ album.url }}" title="{{album.name | escape}} by {{ album.artist | escape }}">
|
||||
<div class="relative block h-full">
|
||||
<div class="absolute left-0 top-0 h-full w-full rounded-lg border border-purple-600 hover:border-purple-500 bg-cover-gradient dark:border-purple-400 dark:hover:border-purple-500"></div>
|
||||
<div class="absolute left-1 bottom-2 drop-shadow-md">
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
</h2>
|
||||
<div class="grid grid-cols-2 gap-2 md:grid-cols-4 not-prose">
|
||||
{% for artist in music.artists %}
|
||||
<a href="https://rateyourmusic.com/search?searchterm={{ artist.artist | escape }}" title="{{artist.artist | escape}}">
|
||||
<a href="https://rateyourmusic.com/artist/{{ artist.artist | dashLower }}" title="{{artist.artist | escape}}">
|
||||
<div class="relative block">
|
||||
<div class="absolute left-0 top-0 h-full w-full rounded-lg border border-purple-600 hover:border-purple-500 bg-cover-gradient dark:border-purple-400 dark:hover:border-purple-500"></div>
|
||||
<div class="absolute left-1 bottom-2 drop-shadow-md">
|
||||
|
|
Reference in a new issue