fix: album links
This commit is contained in:
parent
dc93652d74
commit
5b656cdbf1
2 changed files with 3 additions and 4 deletions
|
@ -51,7 +51,7 @@ module.exports = async function () {
|
||||||
while (CURRENT_PAGE < PAGES && hasNextPage) {
|
while (CURRENT_PAGE < PAGES && hasNextPage) {
|
||||||
const URL = `https://api.music.apple.com/v1/me/recent/played/tracks?limit=${PAGE_SIZE}&offset=${
|
const URL = `https://api.music.apple.com/v1/me/recent/played/tracks?limit=${PAGE_SIZE}&offset=${
|
||||||
PAGE_SIZE * CURRENT_PAGE
|
PAGE_SIZE * CURRENT_PAGE
|
||||||
}&extend=album`
|
}&include[songs]=albums&extend=artistUrl`
|
||||||
const tracks = await fetch(URL, {
|
const tracks = await fetch(URL, {
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
|
@ -65,7 +65,6 @@ module.exports = async function () {
|
||||||
if (tracks.data.length) res = [...res, ...tracks.data]
|
if (tracks.data.length) res = [...res, ...tracks.data]
|
||||||
CURRENT_PAGE++
|
CURRENT_PAGE++
|
||||||
}
|
}
|
||||||
|
|
||||||
res.forEach((track) => {
|
res.forEach((track) => {
|
||||||
if (!response.artists[track.attributes['artistName']]) {
|
if (!response.artists[track.attributes['artistName']]) {
|
||||||
response.artists[track.attributes['artistName']] = {
|
response.artists[track.attributes['artistName']] = {
|
||||||
|
@ -81,7 +80,7 @@ module.exports = async function () {
|
||||||
name: track.attributes['albumName'],
|
name: track.attributes['albumName'],
|
||||||
artist: track.attributes['artistName'],
|
artist: track.attributes['artistName'],
|
||||||
art: track.attributes.artwork.url.replace('{w}', '300').replace('{h}', '300'),
|
art: track.attributes.artwork.url.replace('{w}', '300').replace('{h}', '300'),
|
||||||
url: track.attributes.url,
|
url: `https://song.link/${track['relationships'].albums.data.pop().attributes.url}`,
|
||||||
plays: 1,
|
plays: 1,
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
</h2>
|
</h2>
|
||||||
<div class="grid grid-cols-2 gap-2 md:grid-cols-4 not-prose">
|
<div class="grid grid-cols-2 gap-2 md:grid-cols-4 not-prose">
|
||||||
{% for album in music.albums %}
|
{% for album in music.albums %}
|
||||||
<a href="https://song.link/{{ album.url }}" title="{{album.name | escape}} by {{ album.artist | escape }}">
|
<a href="{{ album.url }}" title="{{album.name | escape}} by {{ album.artist | escape }}">
|
||||||
<div class="relative block h-full">
|
<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-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">
|
<div class="absolute left-1 bottom-2 drop-shadow-md">
|
||||||
|
|
Reference in a new issue