1

Add nodeinfo

This commit is contained in:
Evan Pratten 2024-04-15 10:59:03 -04:00
parent 223fb8493f
commit 1b993b89b1
2 changed files with 62 additions and 0 deletions

View File

@ -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",
},
}
)
}

View File

@ -0,0 +1,45 @@
const RSS_ITEM_PATTERN = /<item>\s+<title>([^<]+)<\/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",
},
}
)
}