feat: link checkins
This commit is contained in:
parent
24b50ef89d
commit
76e8327fe7
2 changed files with 23 additions and 8 deletions
|
@ -54,30 +54,45 @@ export default async () => {
|
|||
if (traktRes['type'] === 'episode') {
|
||||
return Response.json({
|
||||
text: `📺 ${traktRes['show']['title']} • ${traktRes['episode']['title']}`,
|
||||
html: `📺 <a href="https://trakt.tv/shows/${traktRes['show']['ids']['slug']}">${traktRes['show']['title']}</a> • <a href="https://trakt.tv/shows/${traktRes['show']['ids']['slug']}">${traktRes['episode']['title']}</a>`,
|
||||
})
|
||||
}
|
||||
|
||||
if (traktRes['type'] === 'movie') {
|
||||
return Response.json({
|
||||
text: `🎥 ${traktRes['movie']['title']}`,
|
||||
html: `🎥 <a href="https://trakt.tv/movies/${traktRes['movie']['ids']['slug']}">${traktRes['movie']['title']}</a>`,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
const trackRes = await fetch('https://api.music.apple.com/v1/me/recent/played/tracks?limit=1', {
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
Authorization: `Bearer ${API_APPLE_MUSIC_DEVELOPER_TOKEN}`,
|
||||
'music-user-token': `${API_APPLE_MUSIC_USER_TOKEN}`,
|
||||
},
|
||||
})
|
||||
const trackRes = await fetch(
|
||||
'https://api.music.apple.com/v1/me/recent/played/tracks?limit=1&extend=artistUrl',
|
||||
{
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
Authorization: `Bearer ${API_APPLE_MUSIC_DEVELOPER_TOKEN}`,
|
||||
'music-user-token': `${API_APPLE_MUSIC_USER_TOKEN}`,
|
||||
},
|
||||
}
|
||||
)
|
||||
.then((data) => data.json())
|
||||
.catch()
|
||||
const track = trackRes.data?.[0]['attributes']
|
||||
const trackUrl = track['url']
|
||||
? track['url']
|
||||
: `https://musicbrainz.org/taglookup/index?tag-lookup.artist=${track['artistName'].replace(
|
||||
/\s+/g,
|
||||
'+'
|
||||
)}&tag-lookup.track=${track['name'].replace(/\s+/g, '+')}`
|
||||
const artist = aliasArtist(track['artistName'])
|
||||
const artistUrl = track['artistUrl']
|
||||
? track['artistUrl']
|
||||
: `https://musicbrainz.org/search?query=${track['artistName'].replace(/\s+/g, '+')}&type=artist`
|
||||
|
||||
return Response.json({
|
||||
text: `🎧 ${track['name']} by ${artist}`,
|
||||
html: `🎧 <a href="${trackUrl}">${track['name']}</a> by <a href="${artistUrl}">${artist}</a>`,
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
const populateNowPlaying = (data) => {
|
||||
loading.style.display = 'none'
|
||||
content.innerText = data.text
|
||||
content.innerHTML = data.html
|
||||
content.classList.remove('hidden')
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue