2017-11-14 17:31:26 +01:00
|
|
|
import { NextFunction, Request, Response, RequestHandler } from 'express'
|
2017-11-09 17:51:58 +01:00
|
|
|
import { ActivityPubSignature } from '../../shared'
|
2017-11-14 17:31:26 +01:00
|
|
|
import { isSignatureVerified, logger } from '../helpers'
|
2017-11-15 11:00:25 +01:00
|
|
|
import { fetchRemoteAccountAndCreateServer } from '../helpers/activitypub'
|
2017-11-14 17:31:26 +01:00
|
|
|
import { database as db, ACTIVITY_PUB_ACCEPT_HEADER } from '../initializers'
|
|
|
|
import { each, eachSeries, waterfall } from 'async'
|
2017-11-09 17:51:58 +01:00
|
|
|
|
|
|
|
async function checkSignature (req: Request, res: Response, next: NextFunction) {
|
|
|
|
const signatureObject: ActivityPubSignature = req.body.signature
|
|
|
|
|
|
|
|
logger.debug('Checking signature of account %s...', signatureObject.creator)
|
|
|
|
|
|
|
|
let account = await db.Account.loadByUrl(signatureObject.creator)
|
|
|
|
|
|
|
|
// We don't have this account in our database, fetch it on remote
|
|
|
|
if (!account) {
|
2017-11-15 11:00:25 +01:00
|
|
|
const accountResult = await fetchRemoteAccountAndCreateServer(signatureObject.creator)
|
2017-11-09 17:51:58 +01:00
|
|
|
|
2017-11-14 17:31:26 +01:00
|
|
|
if (!accountResult) {
|
2017-11-09 17:51:58 +01:00
|
|
|
return res.sendStatus(403)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save our new account in database
|
2017-11-14 17:31:26 +01:00
|
|
|
account = accountResult.account
|
2017-11-09 17:51:58 +01:00
|
|
|
await account.save()
|
|
|
|
}
|
|
|
|
|
|
|
|
const verified = await isSignatureVerified(account, req.body)
|
|
|
|
if (verified === false) return res.sendStatus(403)
|
|
|
|
|
2017-11-14 17:31:26 +01:00
|
|
|
res.locals.signature = {
|
|
|
|
account
|
|
|
|
}
|
2017-11-09 17:51:58 +01:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2017-11-14 17:31:26 +01:00
|
|
|
function executeIfActivityPub (fun: RequestHandler | RequestHandler[]) {
|
2017-11-09 17:51:58 +01:00
|
|
|
return (req: Request, res: Response, next: NextFunction) => {
|
2017-11-14 17:31:26 +01:00
|
|
|
if (req.header('Accept') !== ACTIVITY_PUB_ACCEPT_HEADER) {
|
2017-11-09 17:51:58 +01:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Array.isArray(fun) === true) {
|
2017-11-14 17:31:26 +01:00
|
|
|
return eachSeries(fun as RequestHandler[], (f, cb) => {
|
|
|
|
f(req, res, cb)
|
|
|
|
}, next)
|
2017-11-09 17:51:58 +01:00
|
|
|
}
|
|
|
|
|
2017-11-14 17:31:26 +01:00
|
|
|
return (fun as RequestHandler)(req, res, next)
|
2017-11-09 17:51:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
checkSignature,
|
|
|
|
executeIfActivityPub
|
|
|
|
}
|