.
This commit is contained in:
parent
f819bff59a
commit
ca8f991389
2
.gitignore
vendored
2
.gitignore
vendored
@ -9,7 +9,7 @@ Cargo.lock
|
|||||||
# These are backup files generated by rustfmt
|
# These are backup files generated by rustfmt
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
|
|
||||||
/public/
|
/sites/*/public/
|
||||||
|
|
||||||
/node_modules/
|
/node_modules/
|
||||||
|
|
||||||
|
3
package-lock.json
generated
3
package-lock.json
generated
@ -5,7 +5,7 @@
|
|||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"wrangler": "2.21.1"
|
"wrangler": "^2.21.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@cloudflare/kv-asset-handler": {
|
"node_modules/@cloudflare/kv-asset-handler": {
|
||||||
@ -1524,6 +1524,7 @@
|
|||||||
"resolved": "https://registry.npmjs.org/wrangler/-/wrangler-2.21.1.tgz",
|
"resolved": "https://registry.npmjs.org/wrangler/-/wrangler-2.21.1.tgz",
|
||||||
"integrity": "sha512-gPLqLHUvIR1TVLc2fARtIJ4UNVpTTMbxXKCZyLqGuLmbYPFQhvNKlct2eyfAYuYaTOr8g7VxswMn2mFab1Gu5A==",
|
"integrity": "sha512-gPLqLHUvIR1TVLc2fARtIJ4UNVpTTMbxXKCZyLqGuLmbYPFQhvNKlct2eyfAYuYaTOr8g7VxswMn2mFab1Gu5A==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"license": "MIT OR Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cloudflare/kv-asset-handler": "^0.2.0",
|
"@cloudflare/kv-asset-handler": "^0.2.0",
|
||||||
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
|
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"wrangler": "2.21.1"
|
"wrangler": "^2.21.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"wrangler": "wrangler"
|
"wrangler": "wrangler"
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
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",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
@ -1,20 +0,0 @@
|
|||||||
export function onRequest(context) {
|
|
||||||
return new Response(
|
|
||||||
JSON.stringify({
|
|
||||||
"subject": "acct:evan@ewpratten.com",
|
|
||||||
"aliases": [],
|
|
||||||
"links": [
|
|
||||||
{
|
|
||||||
"rel": "self",
|
|
||||||
"type": "application/activity+json",
|
|
||||||
"href": "https://ewpratten.com/api/activitypub/users/evan"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}),
|
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/jrd+json",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
@ -1,45 +0,0 @@
|
|||||||
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",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
@ -1,46 +0,0 @@
|
|||||||
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({
|
|
||||||
"@context": "https://www.w3.org/ns/activitystreams",
|
|
||||||
"id": "https://ewpratten.com/api/activitypub/outbox",
|
|
||||||
"summary": "Evan Pratten",
|
|
||||||
"type": "OrderedCollection",
|
|
||||||
"totalItems": items.length,
|
|
||||||
"orderedItems": Array.from(items).map((item) => {
|
|
||||||
return {
|
|
||||||
"@context": "https://www.w3.org/ns/activitystreams",
|
|
||||||
"id": item[5] + "-create",
|
|
||||||
"type": "Create",
|
|
||||||
"actor": "https://ewpratten.com/api/activitypub/users/evan",
|
|
||||||
"object": {
|
|
||||||
"id": item[5],
|
|
||||||
"type": "Note",
|
|
||||||
"content": item[1],
|
|
||||||
"url": item[4],
|
|
||||||
"attributedTo": "https://ewpratten.com/api/activitypub/users/evan",
|
|
||||||
"to": [
|
|
||||||
"https://www.w3.org/ns/activitystreams#Public"
|
|
||||||
],
|
|
||||||
"published": item[2],
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}),
|
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/activity+json",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
export function onRequest(context) {
|
|
||||||
return new Response(
|
|
||||||
JSON.stringify({
|
|
||||||
"@context": [
|
|
||||||
"https://www.w3.org/ns/activitystreams",
|
|
||||||
"https://w3id.org/security/v1",
|
|
||||||
{
|
|
||||||
"@language": "en"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type": "Person",
|
|
||||||
"manuallyApprovesFollowers": true,
|
|
||||||
"discoverable": true,
|
|
||||||
"id": "https://ewpratten.com/api/activitypub/users/evan",
|
|
||||||
"outbox": "https://ewpratten.com/api/activitypub/inbox",
|
|
||||||
"outbox": "https://ewpratten.com/api/activitypub/outbox",
|
|
||||||
"preferredUsername": "evan",
|
|
||||||
"name": "Evan Pratten",
|
|
||||||
"summary": "I make things",
|
|
||||||
"icon": [
|
|
||||||
"https://ewpratten.com/images/pfp/2022/460x460.webp"
|
|
||||||
],
|
|
||||||
"attachment": [
|
|
||||||
{
|
|
||||||
"name": "Website",
|
|
||||||
"type": "PropertyValue",
|
|
||||||
"value": "<a href=\"https://ewpratten.com\" rel=\"me nofollow noopener noreferrer\" target=\"_blank\">ewpratten.com</a>"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"publicKey": {
|
|
||||||
"@type": "Key",
|
|
||||||
"id": "https://ewpratten.com/api/activitypub/users/evan#main-key",
|
|
||||||
"owner": "https://ewpratten.com/api/activitypub/users/evan",
|
|
||||||
"publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJwe4jxrpiDx0vzqnoc+3Mja7X\nz73/NxfDqG9Mu+k6Vs87N/+kV4BbsbJ/vtdYAg58+iMDmyRw48CzaXkPDgiCh3RZ\nFc/8GniBSEucjt/QEiAitV48aykqWyXtln0hAmQrjoEeE9DRxS3eyF7FVE2GhkTz\n1YqBabOMpHA1uGOp7QIDAQAB\n-----END PUBLIC KEY-----"
|
|
||||||
},
|
|
||||||
"url": "https://ewpratten.com",
|
|
||||||
}),
|
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/activity+json",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user