feat: programmatically import to listenbrainz at build time
This commit is contained in:
parent
ae4f4ca908
commit
30db8f01cd
6 changed files with 101 additions and 7 deletions
3
.env
3
.env
|
@ -5,4 +5,5 @@ API_KEY_MOVIEDB=
|
|||
API_KEY_WEBMENTIONS_CORYD_DEV=
|
||||
API_TOKEN_READWISE=
|
||||
SECRET_FEED_ALBUM_RELEASES=
|
||||
COOKIE_STORYGRAPH=
|
||||
COOKIE_STORYGRAPH=
|
||||
LISTENBRAINZ_TOKEN=
|
2
cache/jsonfeed-to-mastodon-timestamp.json
vendored
2
cache/jsonfeed-to-mastodon-timestamp.json
vendored
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"timestamp": 1701713023766
|
||||
"timestamp": 1701792207042
|
||||
}
|
22
cache/jsonfeed-to-mastodon.json
vendored
22
cache/jsonfeed-to-mastodon.json
vendored
|
@ -7727,5 +7727,27 @@
|
|||
"https://social.lol/users/cory/statuses/111523464717831639"
|
||||
],
|
||||
"lastTootTimestamp": 1701713023762
|
||||
},
|
||||
"https://blog.j11y.io/2023-11-22_multifaceted/": {
|
||||
"id": "aHR0cHM6Ly9ibG9nLmoxMXkuaW8vMjAyMy0xMS0yMl9tdWx0aWZhY2V0ZWQv",
|
||||
"title": "🔗: Multifaceted: the linguistic echo chambers of LLMs",
|
||||
"url": "https://blog.j11y.io/2023-11-22_multifaceted/",
|
||||
"content_text": "🔗: Multifaceted: the linguistic echo chambers of LLMs #Tech https://blog.j11y.io/2023-11-22_multifaceted/",
|
||||
"date_published": "Sat, 02 Dec 2023 20:10:10 +0000",
|
||||
"toots": [
|
||||
"https://social.lol/users/cory/statuses/111526295846580343"
|
||||
],
|
||||
"lastTootTimestamp": 1701756223316
|
||||
},
|
||||
"https://trakt.tv/movies/star-trek-the-motion-picture-1979": {
|
||||
"id": "aHR0cHM6Ly90cmFrdC50di9tb3ZpZXMvc3Rhci10cmVrLXRoZS1tb3Rpb24tcGljdHVyZS0xOTc5",
|
||||
"title": "🎥: Star Trek: The Motion Picture",
|
||||
"url": "https://trakt.tv/movies/star-trek-the-motion-picture-1979",
|
||||
"content_text": "🎥: Star Trek: The Motion Picture #Movies #Watching #Trakt https://trakt.tv/movies/star-trek-the-motion-picture-1979",
|
||||
"date_published": "Tue, 05 Dec 2023 14:38:21 +0000",
|
||||
"toots": [
|
||||
"https://social.lol/users/cory/statuses/111528654072746497"
|
||||
],
|
||||
"lastTootTimestamp": 1701792207038
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "2.2.4",
|
||||
"version": "2.3.0",
|
||||
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
|
||||
"main": "index.html",
|
||||
"scripts": {
|
||||
|
|
65
src/_data/tracks.js
Normal file
65
src/_data/tracks.js
Normal file
|
@ -0,0 +1,65 @@
|
|||
const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||
const mbidPatches = require('./json/mbid-patches.json')
|
||||
|
||||
const mbidMap = (artist) => {
|
||||
return mbidPatches[artist.toLowerCase()] || ''
|
||||
}
|
||||
|
||||
module.exports = async function () {
|
||||
const MUSIC_KEY = process.env.API_KEY_LASTFM
|
||||
const LISTENBRAINZ_TOKEN = process.env.LISTENBRAINZ_TOKEN
|
||||
const url = `https://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=coryd_&api_key=${MUSIC_KEY}&format=json&limit=200`
|
||||
const res = EleventyFetch(url, {
|
||||
duration: '1h',
|
||||
type: 'json',
|
||||
}).catch()
|
||||
const data = await res
|
||||
const submission = data['recenttracks']['track'].map((track) => {
|
||||
let artistMbid = track['artist']['mbid']['mbid']
|
||||
|
||||
// mbid mismatches
|
||||
if (mbidMap(track['artist']['#text']) !== '') artistMbid = mbidMap(track['artist']['#text'])
|
||||
|
||||
return {
|
||||
track_metadata: {
|
||||
track_name: track['name'],
|
||||
artist_name: track['artist']['#text'],
|
||||
release_name: track['album']['#text'],
|
||||
additional_info: {
|
||||
submission_client: 'coryd.dev last.fm importer',
|
||||
lastfm_track_mbid: track['mbid'],
|
||||
lastfm_release_mbid: track['album']['mbid'],
|
||||
lastfm_artist_mbid: artistMbid,
|
||||
},
|
||||
},
|
||||
listened_at: track['date']['uts'],
|
||||
}
|
||||
})
|
||||
|
||||
await fetch('https://api.listenbrainz.org/1/submit-listens', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
Authorization: `Token ${LISTENBRAINZ_TOKEN}`,
|
||||
},
|
||||
body: JSON.stringify({
|
||||
listen_type: 'import',
|
||||
payload: submission,
|
||||
}),
|
||||
})
|
||||
|
||||
await fetch('https://api.listenbrainz.org/1/latest-import', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
Authorization: `Token ${LISTENBRAINZ_TOKEN}`,
|
||||
},
|
||||
body: JSON.stringify({
|
||||
service: 'lastfm',
|
||||
ts: submission[0]['listened_at'],
|
||||
}),
|
||||
})
|
||||
return {
|
||||
listenbrainz_submission: submission,
|
||||
}
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
! tailwindcss v3.3.5 | MIT License | https://tailwindcss.com
|
||||
! tailwindcss v3.3.6 | MIT License | https://tailwindcss.com
|
||||
*/
|
||||
|
||||
/*
|
||||
|
@ -121,8 +121,10 @@ strong {
|
|||
}
|
||||
|
||||
/*
|
||||
1. Use the user's configured `mono` font family by default.
|
||||
2. Correct the odd `em` font sizing in all browsers.
|
||||
1. Use the user's configured `mono` font-family by default.
|
||||
2. Use the user's configured `mono` font-feature-settings by default.
|
||||
3. Use the user's configured `mono` font-variation-settings by default.
|
||||
4. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
|
@ -131,8 +133,12 @@ samp,
|
|||
pre {
|
||||
font-family: ml, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
/* 1 */
|
||||
font-size: 1em;
|
||||
font-feature-settings: normal;
|
||||
/* 2 */
|
||||
font-variation-settings: normal;
|
||||
/* 3 */
|
||||
font-size: 1em;
|
||||
/* 4 */
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Reference in a new issue