misskey/src/server/activitypub.ts

170 lines
4.0 KiB
TypeScript
Raw Normal View History

2018-04-17 13:17:55 +00:00
import * as mongo from 'mongodb';
2018-04-12 15:51:55 +00:00
import * as Router from 'koa-router';
2018-04-15 04:20:52 +00:00
const json = require('koa-json-body');
2018-04-15 03:51:05 +00:00
const httpSignature = require('http-signature');
2018-04-12 15:51:55 +00:00
2018-07-25 23:11:47 +00:00
import { createHttpJob } from '../queue';
2018-04-13 05:39:08 +00:00
import pack from '../remote/activitypub/renderer';
2018-04-12 15:51:55 +00:00
import Note from '../models/note';
2018-06-17 08:11:05 +00:00
import User, { isLocalUser, ILocalUser, IUser } from '../models/user';
2018-04-12 15:51:55 +00:00
import renderNote from '../remote/activitypub/renderer/note';
import renderKey from '../remote/activitypub/renderer/key';
import renderPerson from '../remote/activitypub/renderer/person';
import Outbox, { packActivity } from './activitypub/outbox';
import Followers from './activitypub/followers';
import Following from './activitypub/following';
2018-09-18 04:08:27 +00:00
import Featured from './activitypub/featured';
2018-04-12 15:51:55 +00:00
// Init router
const router = new Router();
//#region Routing
2018-06-17 08:21:16 +00:00
function inbox(ctx: Router.IRouterContext) {
2018-04-12 15:51:55 +00:00
let signature;
2018-09-01 14:12:51 +00:00
ctx.req.headers.authorization = `Signature ${ctx.req.headers.signature}`;
2018-04-12 15:51:55 +00:00
try {
signature = httpSignature.parseRequest(ctx.req, { 'headers': [] });
2018-04-12 15:51:55 +00:00
} catch (e) {
ctx.status = 401;
return;
}
2018-07-25 23:11:47 +00:00
createHttpJob({
2018-04-12 15:51:55 +00:00
type: 'processInbox',
activity: ctx.request.body,
signature
2018-07-25 23:11:47 +00:00
});
2018-04-12 15:51:55 +00:00
ctx.status = 202;
2018-04-23 06:37:27 +00:00
}
2018-06-17 08:11:05 +00:00
function isActivityPubReq(ctx: Router.IRouterContext) {
2018-08-21 04:48:03 +00:00
ctx.response.vary('Accept');
2018-06-17 08:11:05 +00: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 04:48:03 +00: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 06:37:27 +00:00
// inbox
router.post('/inbox', json(), inbox);
router.post('/users/:user/inbox', json(), inbox);
2018-04-12 15:51:55 +00:00
// note
router.get('/notes/:note', async (ctx, next) => {
2018-06-17 08:11:05 +00:00
if (!isActivityPubReq(ctx)) return await next();
2018-04-12 15:51:55 +00:00
const note = await Note.findOne({
_id: new mongo.ObjectID(ctx.params.note),
2018-10-19 00:19:55 +00:00
visibility: { $in: ['public', 'home'] }
2018-04-12 15:51:55 +00:00
});
if (note === null) {
ctx.status = 404;
return;
}
ctx.body = pack(await renderNote(note, false));
2018-09-18 22:17:19 +00:00
ctx.set('Cache-Control', 'public, max-age=180');
2018-08-21 04:48:03 +00:00
setResponseType(ctx);
2018-04-12 15:51:55 +00:00
});
// note activity
router.get('/notes/:note/activity', async ctx => {
const note = await Note.findOne({
_id: new mongo.ObjectID(ctx.params.note),
visibility: { $in: ['public', 'home'] }
});
if (note === null) {
ctx.status = 404;
return;
}
ctx.body = pack(await packActivity(note));
2018-09-18 22:17:19 +00:00
ctx.set('Cache-Control', 'public, max-age=180');
setResponseType(ctx);
});
// outbox
router.get('/users/:user/outbox', Outbox);
2018-08-12 18:49:17 +00:00
// followers
router.get('/users/:user/followers', Followers);
2018-08-12 18:49:17 +00:00
// following
router.get('/users/:user/following', Following);
2018-04-12 15:51:55 +00:00
2018-09-18 04:08:27 +00:00
// featured
router.get('/users/:user/collections/featured', Featured);
2018-04-12 15:51:55 +00:00
// publickey
router.get('/users/:user/publickey', async ctx => {
2018-04-17 13:17:55 +00:00
const userId = new mongo.ObjectID(ctx.params.user);
2018-04-12 15:51:55 +00:00
2018-06-01 15:15:17 +00:00
const user = await User.findOne({
_id: userId,
host: null
});
2018-04-12 15:51:55 +00:00
if (user === null) {
ctx.status = 404;
return;
}
if (isLocalUser(user)) {
2018-04-13 05:39:08 +00:00
ctx.body = pack(renderKey(user));
2018-09-18 22:17:19 +00:00
ctx.set('Cache-Control', 'public, max-age=180');
2018-08-21 04:48:03 +00:00
setResponseType(ctx);
2018-04-12 15:51:55 +00:00
} else {
ctx.status = 400;
}
});
// user
2018-07-19 17:40:37 +00:00
async function userInfo(ctx: Router.IRouterContext, user: IUser) {
2018-06-17 08:11:05 +00:00
if (user === null) {
ctx.status = 404;
return;
}
2018-07-19 17:40:37 +00:00
ctx.body = pack(await renderPerson(user as ILocalUser));
2018-09-18 22:17:19 +00:00
ctx.set('Cache-Control', 'public, max-age=180');
2018-08-21 04:48:03 +00:00
setResponseType(ctx);
2018-06-17 08:11:05 +00:00
}
2018-04-12 15:51:55 +00:00
router.get('/users/:user', async ctx => {
2018-04-17 13:17:55 +00:00
const userId = new mongo.ObjectID(ctx.params.user);
2018-04-12 15:51:55 +00:00
2018-06-01 15:15:17 +00:00
const user = await User.findOne({
_id: userId,
host: null
});
2018-04-12 15:51:55 +00:00
2018-07-19 17:40:37 +00:00
await userInfo(ctx, user);
2018-06-17 08:11:05 +00:00
});
2018-04-12 15:51:55 +00:00
2018-06-17 08:11:05 +00: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 17:40:37 +00:00
await userInfo(ctx, user);
2018-04-12 15:51:55 +00:00
});
//#endregion
export default router;