2023-01-13 05:40:33 +01:00
|
|
|
import Router from "@koa/router";
|
|
|
|
import json from "koa-json-body";
|
|
|
|
import httpSignature from "@peertube/http-signature";
|
|
|
|
|
|
|
|
import { In, IsNull, Not } from "typeorm";
|
|
|
|
import { renderActivity } from "@/remote/activitypub/renderer/index.js";
|
|
|
|
import renderNote from "@/remote/activitypub/renderer/note.js";
|
|
|
|
import renderKey from "@/remote/activitypub/renderer/key.js";
|
|
|
|
import { renderPerson } from "@/remote/activitypub/renderer/person.js";
|
|
|
|
import renderEmoji from "@/remote/activitypub/renderer/emoji.js";
|
|
|
|
import { inbox as processInbox } from "@/queue/index.js";
|
|
|
|
import { isSelfHost, toPuny } from "@/misc/convert-host.js";
|
2023-05-02 05:32:18 +02:00
|
|
|
import {
|
|
|
|
Notes,
|
|
|
|
Users,
|
|
|
|
Emojis,
|
|
|
|
NoteReactions,
|
|
|
|
FollowRequests,
|
|
|
|
} from "@/models/index.js";
|
2023-01-13 05:40:33 +01:00
|
|
|
import type { ILocalUser, User } from "@/models/entities/user.js";
|
|
|
|
import { renderLike } from "@/remote/activitypub/renderer/like.js";
|
|
|
|
import { getUserKeypair } from "@/misc/keypair-store.js";
|
|
|
|
import { checkFetch, hasSignature } from "@/remote/activitypub/check-fetch.js";
|
|
|
|
import { getInstanceActor } from "@/services/instance-actor.js";
|
|
|
|
import { fetchMeta } from "@/misc/fetch-meta.js";
|
|
|
|
import renderFollow from "@/remote/activitypub/renderer/follow.js";
|
|
|
|
import Featured from "./activitypub/featured.js";
|
|
|
|
import Following from "./activitypub/following.js";
|
|
|
|
import Followers from "./activitypub/followers.js";
|
|
|
|
import Outbox, { packActivity } from "./activitypub/outbox.js";
|
2018-04-12 17:51:55 +02:00
|
|
|
|
|
|
|
// Init router
|
|
|
|
const router = new Router();
|
|
|
|
|
|
|
|
//#region Routing
|
|
|
|
|
2019-09-26 22:50:34 +02:00
|
|
|
function inbox(ctx: Router.RouterContext) {
|
2018-04-12 17:51:55 +02:00
|
|
|
let signature;
|
|
|
|
|
|
|
|
try {
|
2023-01-13 05:40:33 +01:00
|
|
|
signature = httpSignature.parseRequest(ctx.req, { headers: [] });
|
2018-04-12 17:51:55 +02:00
|
|
|
} catch (e) {
|
|
|
|
ctx.status = 401;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-06 07:01:43 +01:00
|
|
|
processInbox(ctx.request.body, signature);
|
2018-04-12 17:51:55 +02:00
|
|
|
|
|
|
|
ctx.status = 202;
|
2018-04-23 08:37:27 +02:00
|
|
|
}
|
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
const ACTIVITY_JSON = "application/activity+json; charset=utf-8";
|
|
|
|
const LD_JSON =
|
|
|
|
'application/ld+json; profile="https://www.w3.org/ns/activitystreams"; charset=utf-8';
|
2019-10-04 03:29:28 +02:00
|
|
|
|
2019-09-26 22:50:34 +02:00
|
|
|
function isActivityPubReq(ctx: Router.RouterContext) {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.response.vary("Accept");
|
|
|
|
const accepted = ctx.accepts("html", ACTIVITY_JSON, LD_JSON);
|
|
|
|
return typeof accepted === "string" && !accepted.match(/html/);
|
2018-06-17 10:11:05 +02:00
|
|
|
}
|
|
|
|
|
2019-09-26 22:50:34 +02:00
|
|
|
export function setResponseType(ctx: Router.RouterContext) {
|
2019-10-04 03:29:28 +02:00
|
|
|
const accept = ctx.accepts(ACTIVITY_JSON, LD_JSON);
|
|
|
|
if (accept === LD_JSON) {
|
|
|
|
ctx.response.type = LD_JSON;
|
2018-08-21 06:48:03 +02:00
|
|
|
} else {
|
2019-10-04 03:29:28 +02:00
|
|
|
ctx.response.type = ACTIVITY_JSON;
|
2018-08-21 06:48:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 08:37:27 +02:00
|
|
|
// inbox
|
2023-01-13 05:40:33 +01:00
|
|
|
router.post("/inbox", json(), inbox);
|
|
|
|
router.post("/users/:user/inbox", json(), inbox);
|
2018-04-12 17:51:55 +02:00
|
|
|
|
|
|
|
// note
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/notes/:note", async (ctx, next) => {
|
2018-06-17 10:11:05 +02:00
|
|
|
if (!isActivityPubReq(ctx)) return await next();
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2021-07-20 18:45:41 +02:00
|
|
|
const verify = await checkFetch(ctx.req);
|
2023-01-13 05:40:33 +01:00
|
|
|
if (verify !== 200) {
|
2021-07-20 18:45:41 +02:00
|
|
|
ctx.status = verify;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
const note = await Notes.findOneBy({
|
2019-04-07 14:50:36 +02:00
|
|
|
id: ctx.params.note,
|
2023-01-13 05:40:33 +01:00
|
|
|
visibility: In(["public" as const, "home" as const]),
|
2021-12-09 15:58:30 +01:00
|
|
|
localOnly: false,
|
2022-03-24 17:51:34 +01:00
|
|
|
});
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (note == null) {
|
2018-04-12 17:51:55 +02:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-11-23 21:48:44 +01:00
|
|
|
// redirect if remote
|
2023-01-13 05:40:33 +01:00
|
|
|
if (note.userHost !== null) {
|
2019-04-07 14:50:36 +02:00
|
|
|
if (note.uri == null || isSelfHost(note.userHost)) {
|
2019-03-16 01:54:40 +01:00
|
|
|
ctx.status = 500;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ctx.redirect(note.uri);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 18:29:36 +01:00
|
|
|
ctx.body = renderActivity(await renderNote(note, false));
|
2021-07-20 18:45:41 +02:00
|
|
|
|
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.secureMode || meta.privateMode) {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "private, max-age=0, must-revalidate");
|
2021-07-20 18:45:41 +02:00
|
|
|
} else {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "public, max-age=180");
|
2021-07-20 18:45:41 +02:00
|
|
|
}
|
2018-08-21 06:48:03 +02:00
|
|
|
setResponseType(ctx);
|
2018-04-12 17:51:55 +02:00
|
|
|
});
|
|
|
|
|
2018-09-07 22:24:55 +02:00
|
|
|
// note activity
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/notes/:note/activity", async (ctx) => {
|
2021-07-20 18:45:41 +02:00
|
|
|
const verify = await checkFetch(ctx.req);
|
2023-01-13 05:40:33 +01:00
|
|
|
if (verify !== 200) {
|
2021-07-20 18:45:41 +02:00
|
|
|
ctx.status = verify;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
const note = await Notes.findOneBy({
|
2019-04-07 14:50:36 +02:00
|
|
|
id: ctx.params.note,
|
2022-03-26 07:34:00 +01:00
|
|
|
userHost: IsNull(),
|
2023-01-13 05:40:33 +01:00
|
|
|
visibility: In(["public" as const, "home" as const]),
|
2021-12-09 15:58:30 +01:00
|
|
|
localOnly: false,
|
2018-09-07 22:24:55 +02:00
|
|
|
});
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (note == null) {
|
2018-09-07 22:24:55 +02:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 18:29:36 +01:00
|
|
|
ctx.body = renderActivity(await packActivity(note));
|
2021-07-20 18:45:41 +02:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.secureMode || meta.privateMode) {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "private, max-age=0, must-revalidate");
|
2021-07-20 18:45:41 +02:00
|
|
|
} else {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "public, max-age=180");
|
2021-07-20 18:45:41 +02:00
|
|
|
}
|
2018-09-07 22:24:55 +02:00
|
|
|
setResponseType(ctx);
|
|
|
|
});
|
|
|
|
|
2018-08-14 13:13:32 +02:00
|
|
|
// outbox
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/users/:user/outbox", Outbox);
|
2018-08-12 20:49:17 +02:00
|
|
|
|
|
|
|
// followers
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/users/:user/followers", Followers);
|
2018-08-12 20:49:17 +02:00
|
|
|
|
|
|
|
// following
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/users/:user/following", Following);
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2018-09-18 06:08:27 +02:00
|
|
|
// featured
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/users/:user/collections/featured", Featured);
|
2018-09-18 06:08:27 +02:00
|
|
|
|
2018-04-12 17:51:55 +02:00
|
|
|
// publickey
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/users/:user/publickey", async (ctx) => {
|
2021-07-20 18:45:41 +02:00
|
|
|
const instanceActor = await getInstanceActor();
|
|
|
|
if (ctx.params.user === instanceActor.id) {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.body = renderActivity(
|
|
|
|
renderKey(instanceActor, await getUserKeypair(instanceActor.id)),
|
|
|
|
);
|
|
|
|
ctx.set("Cache-Control", "public, max-age=180");
|
2021-07-20 18:45:41 +02:00
|
|
|
setResponseType(ctx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const verify = await checkFetch(ctx.req);
|
2023-01-13 05:40:33 +01:00
|
|
|
if (verify !== 200) {
|
2021-07-20 18:45:41 +02:00
|
|
|
ctx.status = verify;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const userId = ctx.params.user;
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
const user = await Users.findOneBy({
|
2019-04-07 14:50:36 +02:00
|
|
|
id: userId,
|
2022-03-26 07:34:00 +01:00
|
|
|
host: IsNull(),
|
2018-06-01 17:15:17 +02:00
|
|
|
});
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (user == null) {
|
2018-04-12 17:51:55 +02:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-03-22 07:14:54 +01:00
|
|
|
const keypair = await getUserKeypair(user.id);
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
if (Users.isLocalUser(user)) {
|
|
|
|
ctx.body = renderActivity(renderKey(user, keypair));
|
2021-07-20 18:45:41 +02:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.secureMode || meta.privateMode) {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "private, max-age=0, must-revalidate");
|
2021-07-20 18:45:41 +02:00
|
|
|
} else {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "public, max-age=180");
|
2021-07-20 18:45:41 +02:00
|
|
|
}
|
2018-08-21 06:48:03 +02:00
|
|
|
setResponseType(ctx);
|
2018-04-12 17:51:55 +02:00
|
|
|
} else {
|
|
|
|
ctx.status = 400;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// user
|
2022-03-26 11:33:18 +01:00
|
|
|
async function userInfo(ctx: Router.RouterContext, user: User | null) {
|
2019-04-07 14:50:36 +02:00
|
|
|
if (user == null) {
|
2018-06-17 10:11:05 +02:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 18:29:36 +01:00
|
|
|
ctx.body = renderActivity(await renderPerson(user as ILocalUser));
|
2021-07-20 18:45:41 +02:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.secureMode || meta.privateMode) {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "private, max-age=0, must-revalidate");
|
2021-07-20 18:45:41 +02:00
|
|
|
} else {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "public, max-age=180");
|
2021-07-20 18:45:41 +02:00
|
|
|
}
|
2018-08-21 06:48:03 +02:00
|
|
|
setResponseType(ctx);
|
2018-06-17 10:11:05 +02:00
|
|
|
}
|
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/users/:user", async (ctx, next) => {
|
2019-01-02 10:07:32 +01:00
|
|
|
if (!isActivityPubReq(ctx)) return await next();
|
|
|
|
|
2021-07-20 18:45:41 +02:00
|
|
|
const instanceActor = await getInstanceActor();
|
|
|
|
if (ctx.params.user === instanceActor.id) {
|
|
|
|
await userInfo(ctx, instanceActor);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const verify = await checkFetch(ctx.req);
|
2023-01-13 05:40:33 +01:00
|
|
|
if (verify !== 200) {
|
2021-07-20 18:45:41 +02:00
|
|
|
ctx.status = verify;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const userId = ctx.params.user;
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
const user = await Users.findOneBy({
|
2019-04-07 14:50:36 +02:00
|
|
|
id: userId,
|
2022-03-26 07:34:00 +01:00
|
|
|
host: IsNull(),
|
2021-12-09 15:58:30 +01:00
|
|
|
isSuspended: false,
|
2022-03-24 17:51:34 +01:00
|
|
|
});
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2018-07-19 19:40:37 +02:00
|
|
|
await userInfo(ctx, user);
|
2018-06-17 10:11:05 +02:00
|
|
|
});
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/@:user", async (ctx, next) => {
|
2018-06-17 10:11:05 +02:00
|
|
|
if (!isActivityPubReq(ctx)) return await next();
|
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
if (ctx.params.user === "instance.actor") {
|
2021-07-20 18:45:41 +02:00
|
|
|
const instanceActor = await getInstanceActor();
|
|
|
|
await userInfo(ctx, instanceActor);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const verify = await checkFetch(ctx.req);
|
2023-01-13 05:40:33 +01:00
|
|
|
if (verify !== 200) {
|
2021-07-20 18:45:41 +02:00
|
|
|
ctx.status = verify;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
const user = await Users.findOneBy({
|
2018-06-17 10:11:05 +02:00
|
|
|
usernameLower: ctx.params.user.toLowerCase(),
|
2022-03-26 07:34:00 +01:00
|
|
|
host: IsNull(),
|
2021-12-09 15:58:30 +01:00
|
|
|
isSuspended: false,
|
2019-09-19 22:14:21 +02:00
|
|
|
});
|
2018-06-17 10:11:05 +02:00
|
|
|
|
2018-07-19 19:40:37 +02:00
|
|
|
await userInfo(ctx, user);
|
2018-04-12 17:51:55 +02:00
|
|
|
});
|
2021-07-20 18:45:41 +02:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/actor", async (ctx, next) => {
|
2021-07-20 18:45:41 +02:00
|
|
|
const instanceActor = await getInstanceActor();
|
|
|
|
await userInfo(ctx, instanceActor);
|
|
|
|
});
|
2018-04-12 17:51:55 +02:00
|
|
|
//#endregion
|
|
|
|
|
2018-12-18 20:23:08 +01:00
|
|
|
// emoji
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/emojis/:emoji", async (ctx) => {
|
2021-07-20 18:45:41 +02:00
|
|
|
const verify = await checkFetch(ctx.req);
|
2023-01-13 05:40:33 +01:00
|
|
|
if (verify !== 200) {
|
2021-07-20 18:45:41 +02:00
|
|
|
ctx.status = verify;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
const emoji = await Emojis.findOneBy({
|
|
|
|
host: IsNull(),
|
2021-12-09 15:58:30 +01:00
|
|
|
name: ctx.params.emoji,
|
2018-12-18 20:23:08 +01:00
|
|
|
});
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (emoji == null) {
|
2018-12-18 20:23:08 +01:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 18:29:36 +01:00
|
|
|
ctx.body = renderActivity(await renderEmoji(emoji));
|
2021-07-20 18:45:41 +02:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.secureMode || meta.privateMode) {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "private, max-age=0, must-revalidate");
|
2021-07-20 18:45:41 +02:00
|
|
|
} else {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "public, max-age=180");
|
2021-07-20 18:45:41 +02:00
|
|
|
}
|
2018-12-18 20:23:08 +01:00
|
|
|
setResponseType(ctx);
|
|
|
|
});
|
|
|
|
|
2020-02-06 09:07:37 +01:00
|
|
|
// like
|
2023-01-13 05:40:33 +01:00
|
|
|
router.get("/likes/:like", async (ctx) => {
|
2021-07-20 18:45:41 +02:00
|
|
|
const verify = await checkFetch(ctx.req);
|
2023-01-13 05:40:33 +01:00
|
|
|
if (verify !== 200) {
|
2021-07-20 18:45:41 +02:00
|
|
|
ctx.status = verify;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
const reaction = await NoteReactions.findOneBy({ id: ctx.params.like });
|
2020-02-06 09:07:37 +01:00
|
|
|
|
|
|
|
if (reaction == null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-26 07:34:00 +01:00
|
|
|
const note = await Notes.findOneBy({ id: reaction.noteId });
|
2020-02-06 09:07:37 +01:00
|
|
|
|
|
|
|
if (note == null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.body = renderActivity(await renderLike(reaction, note));
|
2021-07-20 18:45:41 +02:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.secureMode || meta.privateMode) {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "private, max-age=0, must-revalidate");
|
2021-07-20 18:45:41 +02:00
|
|
|
} else {
|
2023-01-13 05:40:33 +01:00
|
|
|
ctx.set("Cache-Control", "public, max-age=180");
|
2021-07-20 18:45:41 +02:00
|
|
|
}
|
2020-02-06 09:07:37 +01:00
|
|
|
setResponseType(ctx);
|
|
|
|
});
|
|
|
|
|
2022-06-04 06:52:42 +02:00
|
|
|
// follow
|
2023-05-02 05:32:18 +02:00
|
|
|
router.get(
|
|
|
|
"/follows/:follower/:followee",
|
|
|
|
async (ctx: Router.RouterContext) => {
|
|
|
|
const verify = await checkFetch(ctx.req);
|
|
|
|
if (verify !== 200) {
|
|
|
|
ctx.status = verify;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// This may be used before the follow is completed, so we do not
|
|
|
|
// check if the following exists.
|
|
|
|
|
|
|
|
const [follower, followee] = await Promise.all([
|
|
|
|
Users.findOneBy({
|
|
|
|
id: ctx.params.follower,
|
|
|
|
host: IsNull(),
|
|
|
|
}),
|
|
|
|
Users.findOneBy({
|
|
|
|
id: ctx.params.followee,
|
|
|
|
host: Not(IsNull()),
|
|
|
|
}),
|
|
|
|
]);
|
|
|
|
|
|
|
|
if (follower == null || followee == null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
2022-06-04 06:52:42 +02:00
|
|
|
|
2023-05-02 05:32:18 +02:00
|
|
|
ctx.body = renderActivity(renderFollow(follower, followee));
|
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.secureMode || meta.privateMode) {
|
|
|
|
ctx.set("Cache-Control", "private, max-age=0, must-revalidate");
|
|
|
|
} else {
|
|
|
|
ctx.set("Cache-Control", "public, max-age=180");
|
|
|
|
}
|
|
|
|
setResponseType(ctx);
|
|
|
|
},
|
|
|
|
);
|
2022-06-04 06:52:42 +02:00
|
|
|
|
2023-04-30 22:26:51 +02:00
|
|
|
// follow request
|
|
|
|
router.get("/follows/:followRequestId", async (ctx: Router.RouterContext) => {
|
|
|
|
const verify = await checkFetch(ctx.req);
|
|
|
|
if (verify !== 200) {
|
|
|
|
ctx.status = verify;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const followRequest = await FollowRequests.findOneBy({
|
|
|
|
id: ctx.params.followRequestId,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (followRequest == null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const [follower, followee] = await Promise.all([
|
|
|
|
Users.findOneBy({
|
|
|
|
id: followRequest.followerId,
|
|
|
|
host: IsNull(),
|
|
|
|
}),
|
|
|
|
Users.findOneBy({
|
|
|
|
id: followRequest.followeeId,
|
|
|
|
host: Not(IsNull()),
|
|
|
|
}),
|
|
|
|
]);
|
|
|
|
|
|
|
|
if (follower == null || followee == null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.secureMode || meta.privateMode) {
|
|
|
|
ctx.set("Cache-Control", "private, max-age=0, must-revalidate");
|
|
|
|
} else {
|
|
|
|
ctx.set("Cache-Control", "public, max-age=180");
|
|
|
|
}
|
|
|
|
ctx.body = renderActivity(renderFollow(follower, followee));
|
|
|
|
setResponseType(ctx);
|
|
|
|
});
|
|
|
|
|
2018-04-12 17:51:55 +02:00
|
|
|
export default router;
|