Add nodeinfo
This commit is contained in:
parent
223fb8493f
commit
1b993b89b1
17
static/functions/.well-known/nodeinfo.js
Normal file
17
static/functions/.well-known/nodeinfo.js
Normal 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",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
45
static/functions/api/activitypub/nodeinfo.js
Normal file
45
static/functions/api/activitypub/nodeinfo.js
Normal 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",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user