2018-04-01 01:58:49 -05:00
|
|
|
import * as bodyParser from 'body-parser';
|
|
|
|
import * as express from 'express';
|
|
|
|
import { parseRequest, verifySignature } from 'http-signature';
|
|
|
|
import User, { IRemoteAccount } from '../../models/user';
|
|
|
|
import queue from '../../queue';
|
|
|
|
|
|
|
|
const app = express();
|
|
|
|
app.disable('x-powered-by');
|
|
|
|
app.use(bodyParser.json());
|
|
|
|
|
2018-04-01 02:46:33 -05:00
|
|
|
app.post('/@:user/inbox', async (req, res) => {
|
2018-04-01 01:58:49 -05:00
|
|
|
let parsed;
|
|
|
|
|
|
|
|
try {
|
|
|
|
parsed = parseRequest(req);
|
|
|
|
} catch (exception) {
|
|
|
|
return res.sendStatus(401);
|
|
|
|
}
|
|
|
|
|
|
|
|
const user = await User.findOne({
|
|
|
|
host: { $ne: null },
|
2018-04-01 02:04:23 -05:00
|
|
|
'account.publicKey.id': parsed.keyId
|
2018-04-01 01:58:49 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
if (user === null) {
|
|
|
|
return res.sendStatus(401);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!verifySignature(parsed, (user.account as IRemoteAccount).publicKey.publicKeyPem)) {
|
|
|
|
return res.sendStatus(401);
|
|
|
|
}
|
|
|
|
|
|
|
|
queue.create('http', {
|
|
|
|
type: 'performActivityPub',
|
|
|
|
actor: user._id,
|
|
|
|
outbox: req.body,
|
|
|
|
}).save();
|
|
|
|
|
2018-04-01 04:16:47 -05:00
|
|
|
return res.status(202).end();
|
2018-04-01 01:58:49 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
export default app;
|