From 223fb8493f0bec2189719065b5e38cd812431810 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 13 Apr 2024 16:59:26 -0400 Subject: [PATCH] More metadata --- .../functions/api/activitypub/users/evan.js | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/static/functions/api/activitypub/users/evan.js b/static/functions/api/activitypub/users/evan.js index ccff985..7b0625d 100644 --- a/static/functions/api/activitypub/users/evan.js +++ b/static/functions/api/activitypub/users/evan.js @@ -1,24 +1,39 @@ export function onRequest(context) { return new Response( JSON.stringify({ - "@context": ["https://www.w3.org/ns/activitystreams","https://w3id.org/security/v1" ], + "@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": "", + "summary": "I make things", "icon": [ "https://ewpratten.com/images/pfp/2022/460x460.webp" ], + "attachment": [ + { + "name": "Website", + "type": "PropertyValue", + "value": "ewpratten.com" + } + ], "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: {