sharkey/src/server/activitypub/post.ts

37 lines
908 B
TypeScript
Raw Normal View History

2018-04-01 18:12:51 +09:00
import * as express from 'express';
2018-04-02 04:15:27 +09:00
import context from '../../remote/activitypub/renderer/context';
import render from '../../remote/activitypub/renderer/note';
2018-04-01 18:12:51 +09:00
import Post from '../../models/post';
import User from '../../models/user';
const app = express();
app.disable('x-powered-by');
2018-04-03 01:22:23 +09:00
app.get('/posts/:post', async (req, res, next) => {
2018-04-01 18:12:51 +09:00
const accepted = req.accepts(['html', 'application/activity+json', 'application/ld+json']);
2018-04-01 18:20:17 +09:00
if (!(['application/activity+json', 'application/ld+json'] as any[]).includes(accepted)) {
2018-04-01 18:12:51 +09:00
return next();
}
2018-04-03 01:22:23 +09:00
const post = await Post.findOne({
_id: req.params.post
2018-04-01 18:12:51 +09:00
});
2018-04-03 01:22:23 +09:00
if (post === null) {
2018-04-01 18:12:51 +09:00
return res.sendStatus(404);
}
2018-04-03 01:22:23 +09:00
const user = await User.findOne({
_id: post.userId
2018-04-01 18:12:51 +09:00
});
2018-04-03 01:22:23 +09:00
if (user === null) {
2018-04-01 18:12:51 +09:00
return res.sendStatus(404);
}
2018-04-01 19:18:36 +09:00
const rendered = await render(user, post);
rendered['@context'] = context;
2018-04-01 18:12:51 +09:00
2018-04-01 19:18:36 +09:00
res.json(rendered);
2018-04-01 18:12:51 +09:00
});
export default app;