feat: rss to mastodon on build

This commit is contained in:
Cory Dransfeldt 2024-09-17 16:19:46 -07:00
parent f67d68a0a4
commit bfbeba9916
No known key found for this signature in database
2 changed files with 15 additions and 11 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.15.2", "version": "24.16.0",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -7,7 +7,12 @@ export default {
}, },
async fetch(request, env, ctx) { async fetch(request, env, ctx) {
return Response.redirect('https://coryd.dev/feeds', 301) if (request.method !== 'POST') return new Response('Method Not Allowed', { status: 405 })
if (request.headers.get('x-webhook-token') !== env.WEBHOOK_SECRET) return new Response('Unauthorized', { status: 401 })
await handleScheduledEvent(env)
return new Response('Worker triggered by successful build.', { status: 200 })
} }
} }
@ -25,20 +30,19 @@ async function handleScheduledEvent(env) {
if (existingPost) continue if (existingPost) continue
const plainTextDescription = convert(item.description, { const plainTextDescription = convert(item.description, { wordwrap: 130 })
wordwrap: 150,
})
const content = `${item.title}\n\n${plainTextDescription}\n\n${item.link}` const content = `${item.title}\n\n${plainTextDescription}\n\n${item.link}`
await postToMastodon(mastodonApiUrl, accessToken, content) await postToMastodon(mastodonApiUrl, accessToken, content)
const timestamp = new Date().toISOString() const timestamp = new Date().toISOString()
await env.RSS_TO_MASTODON_NAMESPACE.put(item.link, timestamp) await env.RSS_TO_MASTODON_NAMESPACE.put(item.link, timestamp)
console.log(`Posted and stored URL: ${item.link}`) console.log(`Posted stored URL: ${item.link}`)
} }
console.log('RSS feed processed successfully') console.log('RSS processed successfully')
} catch (error) { } catch (error) {
console.error('Error in scheduled event:', error) console.error('Error in scheduled event:', error)
} }
@ -68,9 +72,9 @@ async function postToMastodon(apiUrl, accessToken, content) {
method: 'POST', method: 'POST',
headers: { headers: {
'Authorization': `Bearer ${accessToken}`, 'Authorization': `Bearer ${accessToken}`,
'Content-Type': 'application/json' 'Content-Type': 'application/json',
}, },
body: JSON.stringify({ status: content }) body: JSON.stringify({ status: content }),
}) })
if (!response.ok) { if (!response.ok) {
@ -78,5 +82,5 @@ async function postToMastodon(apiUrl, accessToken, content) {
throw new Error(`Error posting to Mastodon: ${response.statusText} - ${errorText}`) throw new Error(`Error posting to Mastodon: ${response.statusText} - ${errorText}`)
} }
console.log('Posted to Mastodon successfully!') console.log('Posted to Mastodon successfully.')
} }