2018-12-15 17:44:59 +01:00
|
|
|
import { ObjectID } from 'mongodb';
|
2018-04-12 17:51:55 +02:00
|
|
|
import * as Router from 'koa-router';
|
2019-02-01 13:08:58 +01:00
|
|
|
import * as json from 'koa-json-body';
|
2019-02-01 11:59:12 +01:00
|
|
|
import * as httpSignature from 'http-signature';
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2018-07-26 01:11:47 +02:00
|
|
|
import { createHttpJob } from '../queue';
|
2019-01-30 18:29:36 +01:00
|
|
|
import { renderActivity } from '../remote/activitypub/renderer';
|
2018-04-12 17:51:55 +02:00
|
|
|
import Note from '../models/note';
|
2018-06-17 10:11:05 +02:00
|
|
|
import User, { isLocalUser, ILocalUser, IUser } from '../models/user';
|
2018-12-18 20:23:08 +01:00
|
|
|
import Emoji from '../models/emoji';
|
2018-04-12 17:51:55 +02:00
|
|
|
import renderNote from '../remote/activitypub/renderer/note';
|
|
|
|
import renderKey from '../remote/activitypub/renderer/key';
|
|
|
|
import renderPerson from '../remote/activitypub/renderer/person';
|
2018-12-18 20:23:08 +01:00
|
|
|
import renderEmoji from '../remote/activitypub/renderer/emoji';
|
2018-09-07 22:24:55 +02:00
|
|
|
import Outbox, { packActivity } from './activitypub/outbox';
|
2018-08-14 13:13:32 +02:00
|
|
|
import Followers from './activitypub/followers';
|
|
|
|
import Following from './activitypub/following';
|
2018-09-18 06:08:27 +02:00
|
|
|
import Featured from './activitypub/featured';
|
2019-01-21 05:27:19 +01:00
|
|
|
import renderQuestion from '../remote/activitypub/renderer/question';
|
2018-04-12 17:51:55 +02:00
|
|
|
|
|
|
|
// Init router
|
|
|
|
const router = new Router();
|
|
|
|
|
|
|
|
//#region Routing
|
|
|
|
|
2018-06-17 10:21:16 +02:00
|
|
|
function inbox(ctx: Router.IRouterContext) {
|
2018-04-12 17:51:55 +02:00
|
|
|
let signature;
|
|
|
|
|
2018-09-01 16:12:51 +02:00
|
|
|
ctx.req.headers.authorization = `Signature ${ctx.req.headers.signature}`;
|
2018-04-12 17:51:55 +02:00
|
|
|
|
|
|
|
try {
|
2018-08-25 06:40:12 +02:00
|
|
|
signature = httpSignature.parseRequest(ctx.req, { 'headers': [] });
|
2018-04-12 17:51:55 +02:00
|
|
|
} catch (e) {
|
|
|
|
ctx.status = 401;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-26 01:11:47 +02:00
|
|
|
createHttpJob({
|
2018-04-12 17:51:55 +02:00
|
|
|
type: 'processInbox',
|
|
|
|
activity: ctx.request.body,
|
|
|
|
signature
|
2018-07-26 01:11:47 +02:00
|
|
|
});
|
2018-04-12 17:51:55 +02:00
|
|
|
|
|
|
|
ctx.status = 202;
|
2018-04-23 08:37:27 +02:00
|
|
|
}
|
|
|
|
|
2018-06-17 10:11:05 +02:00
|
|
|
function isActivityPubReq(ctx: Router.IRouterContext) {
|
2018-08-21 06:48:03 +02:00
|
|
|
ctx.response.vary('Accept');
|
2018-06-17 10:11:05 +02:00
|
|
|
const accepted = ctx.accepts('html', 'application/activity+json', 'application/ld+json');
|
|
|
|
return ['application/activity+json', 'application/ld+json'].includes(accepted as string);
|
|
|
|
}
|
|
|
|
|
2018-08-21 06:48:03 +02:00
|
|
|
export function setResponseType(ctx: Router.IRouterContext) {
|
|
|
|
const accpet = ctx.accepts('application/activity+json', 'application/ld+json');
|
|
|
|
if (accpet === 'application/ld+json') {
|
|
|
|
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 08:37:27 +02:00
|
|
|
// inbox
|
|
|
|
router.post('/inbox', json(), inbox);
|
|
|
|
router.post('/users/:user/inbox', json(), inbox);
|
2018-04-12 17:51:55 +02:00
|
|
|
|
|
|
|
// note
|
|
|
|
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
|
|
|
|
2018-12-15 17:44:59 +01:00
|
|
|
if (!ObjectID.isValid(ctx.params.note)) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-12 17:51:55 +02:00
|
|
|
const note = await Note.findOne({
|
2018-12-15 17:44:59 +01:00
|
|
|
_id: new ObjectID(ctx.params.note),
|
2018-11-15 21:47:29 +01:00
|
|
|
visibility: { $in: ['public', 'home'] },
|
|
|
|
localOnly: { $ne: true }
|
2018-04-12 17:51:55 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (note === null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 18:29:36 +01:00
|
|
|
ctx.body = renderActivity(await renderNote(note, false));
|
2019-01-02 10:07:32 +01:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
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
|
|
|
|
router.get('/notes/:note/activity', async ctx => {
|
2018-12-15 17:44:59 +01:00
|
|
|
if (!ObjectID.isValid(ctx.params.note)) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-07 22:24:55 +02:00
|
|
|
const note = await Note.findOne({
|
2018-12-15 17:44:59 +01:00
|
|
|
_id: new ObjectID(ctx.params.note),
|
2018-11-15 21:47:29 +01:00
|
|
|
visibility: { $in: ['public', 'home'] },
|
|
|
|
localOnly: { $ne: true }
|
2018-09-07 22:24:55 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (note === null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 18:29:36 +01:00
|
|
|
ctx.body = renderActivity(await packActivity(note));
|
2018-09-19 00:17:19 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
2018-09-07 22:24:55 +02:00
|
|
|
setResponseType(ctx);
|
|
|
|
});
|
|
|
|
|
2019-01-21 05:27:19 +01:00
|
|
|
// question
|
|
|
|
router.get('/questions/:question', async (ctx, next) => {
|
|
|
|
if (!ObjectID.isValid(ctx.params.question)) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const poll = await Note.findOne({
|
|
|
|
_id: new ObjectID(ctx.params.question),
|
|
|
|
visibility: { $in: ['public', 'home'] },
|
|
|
|
localOnly: { $ne: true },
|
|
|
|
poll: {
|
|
|
|
$exists: true,
|
|
|
|
$ne: null
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (poll === null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const user = await User.findOne({
|
|
|
|
_id: poll.userId
|
|
|
|
});
|
|
|
|
|
2019-01-30 18:29:36 +01:00
|
|
|
ctx.body = renderActivity(await renderQuestion(user as ILocalUser, poll));
|
2019-01-21 05:27:19 +01:00
|
|
|
setResponseType(ctx);
|
|
|
|
});
|
|
|
|
|
2018-08-14 13:13:32 +02:00
|
|
|
// outbox
|
|
|
|
router.get('/users/:user/outbox', Outbox);
|
2018-08-12 20:49:17 +02:00
|
|
|
|
|
|
|
// followers
|
2018-08-14 13:13:32 +02:00
|
|
|
router.get('/users/:user/followers', Followers);
|
2018-08-12 20:49:17 +02:00
|
|
|
|
|
|
|
// following
|
2018-08-14 13:13:32 +02:00
|
|
|
router.get('/users/:user/following', Following);
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2018-09-18 06:08:27 +02:00
|
|
|
// featured
|
|
|
|
router.get('/users/:user/collections/featured', Featured);
|
|
|
|
|
2018-04-12 17:51:55 +02:00
|
|
|
// publickey
|
|
|
|
router.get('/users/:user/publickey', async ctx => {
|
2018-12-15 17:44:59 +01:00
|
|
|
if (!ObjectID.isValid(ctx.params.user)) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const userId = new ObjectID(ctx.params.user);
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2018-06-01 17:15:17 +02:00
|
|
|
const user = await User.findOne({
|
|
|
|
_id: userId,
|
|
|
|
host: null
|
|
|
|
});
|
2018-04-12 17:51:55 +02:00
|
|
|
|
|
|
|
if (user === null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isLocalUser(user)) {
|
2019-01-30 18:29:36 +01:00
|
|
|
ctx.body = renderActivity(renderKey(user));
|
2018-09-19 00:17:19 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
2018-08-21 06:48:03 +02:00
|
|
|
setResponseType(ctx);
|
2018-04-12 17:51:55 +02:00
|
|
|
} else {
|
|
|
|
ctx.status = 400;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// user
|
2018-07-19 19:40:37 +02:00
|
|
|
async function userInfo(ctx: Router.IRouterContext, user: IUser) {
|
2018-06-17 10:11:05 +02:00
|
|
|
if (user === null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 18:29:36 +01:00
|
|
|
ctx.body = renderActivity(await renderPerson(user as ILocalUser));
|
2018-09-19 00:17:19 +02:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
2018-08-21 06:48:03 +02:00
|
|
|
setResponseType(ctx);
|
2018-06-17 10:11:05 +02:00
|
|
|
}
|
|
|
|
|
2019-01-02 10:07:32 +01:00
|
|
|
router.get('/users/:user', async (ctx, next) => {
|
|
|
|
if (!isActivityPubReq(ctx)) return await next();
|
|
|
|
|
2018-12-15 17:44:59 +01:00
|
|
|
if (!ObjectID.isValid(ctx.params.user)) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const userId = new ObjectID(ctx.params.user);
|
2018-04-12 17:51:55 +02:00
|
|
|
|
2018-06-01 17:15:17 +02:00
|
|
|
const user = await User.findOne({
|
|
|
|
_id: userId,
|
|
|
|
host: null
|
|
|
|
});
|
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
|
|
|
|
2018-06-17 10:11:05 +02:00
|
|
|
router.get('/@:user', async (ctx, next) => {
|
|
|
|
if (!isActivityPubReq(ctx)) return await next();
|
|
|
|
|
|
|
|
const user = await User.findOne({
|
|
|
|
usernameLower: ctx.params.user.toLowerCase(),
|
|
|
|
host: null
|
|
|
|
});
|
|
|
|
|
2018-07-19 19:40:37 +02:00
|
|
|
await userInfo(ctx, user);
|
2018-04-12 17:51:55 +02:00
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
2018-12-18 20:23:08 +01:00
|
|
|
// emoji
|
|
|
|
router.get('/emojis/:emoji', async ctx => {
|
|
|
|
const emoji = await Emoji.findOne({
|
|
|
|
host: null,
|
|
|
|
name: ctx.params.emoji
|
|
|
|
});
|
|
|
|
|
|
|
|
if (emoji === null) {
|
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 18:29:36 +01:00
|
|
|
ctx.body = renderActivity(await renderEmoji(emoji));
|
2018-12-18 20:23:08 +01:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
|
|
|
setResponseType(ctx);
|
|
|
|
});
|
|
|
|
|
2018-04-12 17:51:55 +02:00
|
|
|
export default router;
|