2019-09-26 15:50:34 -05:00
|
|
|
import * as Router from '@koa/router';
|
2019-02-01 06:08:58 -06:00
|
|
|
import * as json from 'koa-json-body';
|
2019-02-01 04:59:12 -06:00
|
|
|
import * as httpSignature from 'http-signature';
|
2018-04-12 10:51:55 -05:00
|
|
|
|
2019-01-30 11:29:36 -06:00
|
|
|
import { renderActivity } from '../remote/activitypub/renderer';
|
2018-04-12 10:51:55 -05:00
|
|
|
import renderNote from '../remote/activitypub/renderer/note';
|
|
|
|
import renderKey from '../remote/activitypub/renderer/key';
|
2019-04-07 07:50:36 -05:00
|
|
|
import { renderPerson } from '../remote/activitypub/renderer/person';
|
2018-12-18 13:23:08 -06:00
|
|
|
import renderEmoji from '../remote/activitypub/renderer/emoji';
|
2018-09-07 15:24:55 -05:00
|
|
|
import Outbox, { packActivity } from './activitypub/outbox';
|
2018-08-14 06:13:32 -05:00
|
|
|
import Followers from './activitypub/followers';
|
|
|
|
import Following from './activitypub/following';
|
2018-09-17 23:08:27 -05:00
|
|
|
import Featured from './activitypub/featured';
|
2019-03-07 08:07:21 -06:00
|
|
|
import { inbox as processInbox } from '../queue';
|
2019-03-15 19:54:40 -05:00
|
|
|
import { isSelfHost } from '../misc/convert-host';
|
2019-07-19 14:09:33 -05:00
|
|
|
import { Notes, Users, Emojis, UserKeypairs } from '../models';
|
2019-04-07 07:50:36 -05:00
|
|
|
import { ILocalUser, User } from '../models/entities/user';
|
|
|
|
import { In } from 'typeorm';
|
2019-04-12 11:43:22 -05:00
|
|
|
import { ensure } from '../prelude/ensure';
|
2018-04-12 10:51:55 -05:00
|
|
|
|
|
|
|
// Init router
|
|
|
|
const router = new Router();
|
|
|
|
|
|
|
|
//#region Routing
|
|
|
|
|
2019-09-26 15:50:34 -05:00
|
|
|
function inbox(ctx: Router.RouterContext) {
|
2018-04-12 10:51:55 -05:00
|
|
|
let signature;
|
|
|
|
|
2018-09-01 09:12:51 -05:00
|
|
|
ctx.req.headers.authorization = `Signature ${ctx.req.headers.signature}`;
|
2018-04-12 10:51:55 -05:00
|
|
|
|
|
|
|
try {
|
2018-08-24 23:40:12 -05:00
|
|
|
signature = httpSignature.parseRequest(ctx.req, { 'headers': [] });
|
2018-04-12 10:51:55 -05:00
|
|
|
} catch (e) {
|
|
|
|
ctx.status = 401;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-06 00:01:43 -06:00
|
|
|
processInbox(ctx.request.body, signature);
|
2018-04-12 10:51:55 -05:00
|
|
|
|
|
|
|
ctx.status = 202;
|
2018-04-23 01:37:27 -05:00
|
|
|
}
|
|
|
|
|
2019-09-26 15:50:34 -05:00
|
|
|
function isActivityPubReq(ctx: Router.RouterContext) {
|
2018-08-20 23:48:03 -05:00
|
|
|
ctx.response.vary('Accept');
|
2018-06-17 03:11:05 -05:00
|
|
|
const accepted = ctx.accepts('html', 'application/activity+json', 'application/ld+json');
|
|
|
|
return ['application/activity+json', 'application/ld+json'].includes(accepted as string);
|
|
|
|
}
|
|
|
|
|
2019-09-26 15:50:34 -05:00
|
|
|
export function setResponseType(ctx: Router.RouterContext) {
|
2019-09-30 05:00:17 -05:00
|
|
|
const accept = ctx.accepts('application/activity+json', 'application/ld+json');
|
|
|
|
if (accept === 'application/ld+json') {
|
2018-08-20 23:48:03 -05:00
|
|
|
ctx.response.type = 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"; charset=utf-8';
|
|
|
|
} else {
|
|
|
|
ctx.response.type = 'application/activity+json; charset=utf-8';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 01:37:27 -05:00
|
|
|
// inbox
|
|
|
|
router.post('/inbox', json(), inbox);
|
|
|
|
router.post('/users/:user/inbox', json(), inbox);
|
2018-04-12 10:51:55 -05:00
|
|
|
|
|
|
|
// note
|
|
|
|
router.get('/notes/:note', async (ctx, next) => {
|
2018-06-17 03:11:05 -05:00
|
|
|
if (!isActivityPubReq(ctx)) return await next();
|
2018-04-12 10:51:55 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
const note = await Notes.findOne({
|
|
|
|
id: ctx.params.note,
|
|
|
|
visibility: In(['public', 'home']),
|
|
|
|
localOnly: false
|
2018-04-12 10:51:55 -05:00
|
|
|
});
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
if (note == null) {
|
2018-04-12 10:51:55 -05:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-15 19:54:40 -05:00
|
|
|
// リモートだったらリダイレクト
|
2019-04-07 07:50:36 -05:00
|
|
|
if (note.userHost != null) {
|
|
|
|
if (note.uri == null || isSelfHost(note.userHost)) {
|
2019-03-15 19:54:40 -05:00
|
|
|
ctx.status = 500;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ctx.redirect(note.uri);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 11:29:36 -06:00
|
|
|
ctx.body = renderActivity(await renderNote(note, false));
|
2019-01-02 03:07:32 -06:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
2018-08-20 23:48:03 -05:00
|
|
|
setResponseType(ctx);
|
2018-04-12 10:51:55 -05:00
|
|
|
});
|
|
|
|
|
2018-09-07 15:24:55 -05:00
|
|
|
// note activity
|
|
|
|
router.get('/notes/:note/activity', async ctx => {
|
2019-04-07 07:50:36 -05:00
|
|
|
const note = await Notes.findOne({
|
|
|
|
id: ctx.params.note,
|
|
|
|
userHost: null,
|
|
|
|
visibility: In(['public', 'home']),
|
|
|
|
localOnly: false
|
2018-09-07 15:24:55 -05:00
|
|
|
});
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
if (note == null) {
|
2018-09-07 15:24:55 -05:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 11:29:36 -06:00
|
|
|
ctx.body = renderActivity(await packActivity(note));
|
2018-09-18 17:17:19 -05:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
2018-09-07 15:24:55 -05:00
|
|
|
setResponseType(ctx);
|
|
|
|
});
|
|
|
|
|
2018-08-14 06:13:32 -05:00
|
|
|
// outbox
|
|
|
|
router.get('/users/:user/outbox', Outbox);
|
2018-08-12 13:49:17 -05:00
|
|
|
|
|
|
|
// followers
|
2018-08-14 06:13:32 -05:00
|
|
|
router.get('/users/:user/followers', Followers);
|
2018-08-12 13:49:17 -05:00
|
|
|
|
|
|
|
// following
|
2018-08-14 06:13:32 -05:00
|
|
|
router.get('/users/:user/following', Following);
|
2018-04-12 10:51:55 -05:00
|
|
|
|
2018-09-17 23:08:27 -05:00
|
|
|
// featured
|
|
|
|
router.get('/users/:user/collections/featured', Featured);
|
|
|
|
|
2018-04-12 10:51:55 -05:00
|
|
|
// publickey
|
|
|
|
router.get('/users/:user/publickey', async ctx => {
|
2019-04-07 07:50:36 -05:00
|
|
|
const userId = ctx.params.user;
|
2018-04-12 10:51:55 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
const user = await Users.findOne({
|
|
|
|
id: userId,
|
2018-06-01 10:15:17 -05:00
|
|
|
host: null
|
|
|
|
});
|
2018-04-12 10:51:55 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
if (user == null) {
|
2018-04-12 10:51:55 -05:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-12 11:43:22 -05:00
|
|
|
const keypair = await UserKeypairs.findOne(user.id).then(ensure);
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
if (Users.isLocalUser(user)) {
|
|
|
|
ctx.body = renderActivity(renderKey(user, keypair));
|
2018-09-18 17:17:19 -05:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
2018-08-20 23:48:03 -05:00
|
|
|
setResponseType(ctx);
|
2018-04-12 10:51:55 -05:00
|
|
|
} else {
|
|
|
|
ctx.status = 400;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// user
|
2019-09-26 15:50:34 -05:00
|
|
|
async function userInfo(ctx: Router.RouterContext, user: User | undefined) {
|
2019-04-07 07:50:36 -05:00
|
|
|
if (user == null) {
|
2018-06-17 03:11:05 -05:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 11:29:36 -06:00
|
|
|
ctx.body = renderActivity(await renderPerson(user as ILocalUser));
|
2018-09-18 17:17:19 -05:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
2018-08-20 23:48:03 -05:00
|
|
|
setResponseType(ctx);
|
2018-06-17 03:11:05 -05:00
|
|
|
}
|
|
|
|
|
2019-01-02 03:07:32 -06:00
|
|
|
router.get('/users/:user', async (ctx, next) => {
|
|
|
|
if (!isActivityPubReq(ctx)) return await next();
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
const userId = ctx.params.user;
|
2018-04-12 10:51:55 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
const user = await Users.findOne({
|
|
|
|
id: userId,
|
2018-06-01 10:15:17 -05:00
|
|
|
host: null
|
2019-09-19 15:14:21 -05:00
|
|
|
});
|
2018-04-12 10:51:55 -05:00
|
|
|
|
2018-07-19 12:40:37 -05:00
|
|
|
await userInfo(ctx, user);
|
2018-06-17 03:11:05 -05:00
|
|
|
});
|
2018-04-12 10:51:55 -05:00
|
|
|
|
2018-06-17 03:11:05 -05:00
|
|
|
router.get('/@:user', async (ctx, next) => {
|
|
|
|
if (!isActivityPubReq(ctx)) return await next();
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
const user = await Users.findOne({
|
2018-06-17 03:11:05 -05:00
|
|
|
usernameLower: ctx.params.user.toLowerCase(),
|
|
|
|
host: null
|
2019-09-19 15:14:21 -05:00
|
|
|
});
|
2018-06-17 03:11:05 -05:00
|
|
|
|
2018-07-19 12:40:37 -05:00
|
|
|
await userInfo(ctx, user);
|
2018-04-12 10:51:55 -05:00
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
2018-12-18 13:23:08 -06:00
|
|
|
// emoji
|
|
|
|
router.get('/emojis/:emoji', async ctx => {
|
2019-04-07 07:50:36 -05:00
|
|
|
const emoji = await Emojis.findOne({
|
2018-12-18 13:23:08 -06:00
|
|
|
host: null,
|
|
|
|
name: ctx.params.emoji
|
|
|
|
});
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
if (emoji == null) {
|
2018-12-18 13:23:08 -06:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 11:29:36 -06:00
|
|
|
ctx.body = renderActivity(await renderEmoji(emoji));
|
2018-12-18 13:23:08 -06:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
|
|
|
setResponseType(ctx);
|
|
|
|
});
|
|
|
|
|
2018-04-12 10:51:55 -05:00
|
|
|
export default router;
|