diff --git a/static/functions/.well-known/nodeinfo.js b/static/functions/.well-known/nodeinfo.js new file mode 100644 index 0000000..bb7d173 --- /dev/null +++ b/static/functions/.well-known/nodeinfo.js @@ -0,0 +1,17 @@ +export function onRequest(context) { + return new Response( + JSON.stringify({ + "links": [ + { + "href": "https://ewpratten.com/api/activitypub/nodeinfo", + "rel": "http://nodeinfo.diaspora.software/ns/schema/2.0" + } + ] + }), + { + headers: { + "Content-Type": "application/jrd+json", + }, + } + ) +} \ No newline at end of file diff --git a/static/functions/api/activitypub/nodeinfo.js b/static/functions/api/activitypub/nodeinfo.js new file mode 100644 index 0000000..ced0865 --- /dev/null +++ b/static/functions/api/activitypub/nodeinfo.js @@ -0,0 +1,45 @@ +const RSS_ITEM_PATTERN = /\s+([^<]+)<\/title>\s+<pubDate>([^<]+)<\/pubDate>\s+<author>([^<]+)<\/author>\s+<link>([^<]+)<\/link>\s+<guid>([^<]+)<\/guid>\s+<description[^>]+>([^<]+)<\/description>\s+<\/item>/gm; + +export async function onRequest(context) { + + // Request our own RSS feed + let rss_feed = await fetch("https://ewpratten.com/feed.xml"); + + // Parse the RSS feed + let rss_data = await rss_feed.text(); + let items = rss_data.matchAll(RSS_ITEM_PATTERN); + + // Generate the outbox content + return new Response( + JSON.stringify({ + "metadata": {}, + "openRegistrations": false, + "protocols": [ + "activitypub" + ], + "services": { + "inbound": [], + "outbound": [] + }, + "software": { + "name": "Cloudflare Workers", + "version": "0.0.0" + }, + "usage": { + "localPosts": items.length, + "users": { + "activeHalfyear": 1, + "activeMonth": 1, + "total": 1 + } + }, + "version": "2.0" + } + ), + { + headers: { + "Content-Type": "application/json", + }, + } + ) +} \ No newline at end of file