forked from shadowfacts/shadowfacts.net
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
|
import express, { Router } from "express";
|
||
|
import { promises as fs } from "fs";
|
||
|
|
||
|
const domain = process.env.DOMAIN;
|
||
|
|
||
|
export default async function actor(): Promise<Router> {
|
||
|
const router = Router();
|
||
|
|
||
|
const pubKeyPem = (await fs.readFile(process.env.PUB_KEY_PEM!)).toString();
|
||
|
const actorObj = {
|
||
|
"@context": [
|
||
|
"https://www.w3.org/ns/activitystreams",
|
||
|
"https://w3id.org/security/v1"
|
||
|
],
|
||
|
"type": "Person",
|
||
|
"id": `https://${domain}/ap/actor`,
|
||
|
"preferredUsername": "shadowfacts",
|
||
|
"name": "shadowfacts' blog",
|
||
|
"icon": {
|
||
|
"type": "Image",
|
||
|
"mediaType": "image/png",
|
||
|
"url": `https://${domain}/shadowfacts.png`
|
||
|
},
|
||
|
"inbox": `https://${domain}/ap/inbox`,
|
||
|
"followers": `https://${domain}/ap/actor/followers`,
|
||
|
"publicKey": {
|
||
|
"id": `https://${domain}/ap/actor#main-key`,
|
||
|
"owner": `https://${domain}/ap/actor`,
|
||
|
"publicKeyPem": pubKeyPem
|
||
|
}
|
||
|
};
|
||
|
|
||
|
router.get("/ap/actor", (req, res) => {
|
||
|
if (req.accepts("application/activity+json")) {
|
||
|
res.type("application/activity+json");
|
||
|
res.json(actorObj);
|
||
|
res.end();
|
||
|
} else {
|
||
|
res.redirect("/");
|
||
|
}
|
||
|
});
|
||
|
|
||
|
return router;
|
||
|
}
|