From: Ruben Beltran del Rio Date: Sun, 21 Jan 2024 13:56:39 +0000 (+0000) Subject: Make some of the values more generic X-Git-Url: https://git.r.bdr.sh/rbdr/pinboard-linkblog-updater/commitdiff_plain/9d9552d186c136c8252a5a5b1abc972279624061 Make some of the values more generic --- diff --git a/index.js b/index.js index f8df008..518cc79 100644 --- a/index.js +++ b/index.js @@ -10,7 +10,10 @@ const internals = { apiToken: process.env.PINBOARD_TOKEN, blogUrl: process.env.BLOG_URL, archiveUrl: process.env.ARCHIVE_URL, + blogPublicUrl: process.env.BLOG_PUBLIC_URL, + archivePublicUrl: process.env.ARCHIVE_PUBLIC_URL, tootToken: process.env.TOOT_TOKEN, + mastodonDomain: process.env.MASTODON_DOMAIN, date: (new Date()).toISOString().split('T')[0], @@ -45,9 +48,9 @@ const internals = { const body = new FormData(); body.set( 'status', - `New post: ${title}\n\nAvailable on:\n\n♊️ the gemini archive gemini://gemini.unlimited.pizza/gemlog/\n\n or, the ephemeral blog 🌐: https://www.unlimited.pizza/gemlog` + `New post: ${title}\n\nAvailable on:\n\n♊️ the gemini archive ${internals.archivePublicUrl}\n\n or, the ephemeral blog 🌐: ${internals.blogPublicUrl}` ); - return fetch('https://friendship.quest/api/v1/statuses', { + return fetch(`https://${internals.mastodonDomain}/api/v1/statuses`, { method: 'post', headers: { Authorization: `Bearer ${internals.tootToken}`,