2017-11-17 09:20:42 -05:00
|
|
|
import { eachSeries } from 'async'
|
|
|
|
import { NextFunction, Request, RequestHandler, Response } from 'express'
|
2017-11-09 11:51:58 -05:00
|
|
|
import { ActivityPubSignature } from '../../shared'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { logger } from '../helpers/logger'
|
|
|
|
import { isSignatureVerified } from '../helpers/peertube-crypto'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { ACCEPT_HEADERS, ACTIVITY_PUB } from '../initializers'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { getOrCreateActorAndServerAndModel } from '../lib/activitypub'
|
|
|
|
import { ActorModel } from '../models/activitypub/actor'
|
2017-11-09 11:51:58 -05:00
|
|
|
|
|
|
|
async function checkSignature (req: Request, res: Response, next: NextFunction) {
|
|
|
|
const signatureObject: ActivityPubSignature = req.body.signature
|
|
|
|
|
2017-12-19 04:34:56 -05:00
|
|
|
const [ creator ] = signatureObject.creator.split('#')
|
|
|
|
|
|
|
|
logger.debug('Checking signature of actor %s...', creator)
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
let actor: ActorModel
|
|
|
|
try {
|
2017-12-19 04:34:56 -05:00
|
|
|
actor = await getOrCreateActorAndServerAndModel(creator)
|
2017-12-14 11:38:41 -05:00
|
|
|
} catch (err) {
|
2018-03-26 09:54:13 -04:00
|
|
|
logger.error('Cannot create remote actor and check signature.', { err })
|
2017-12-14 11:38:41 -05:00
|
|
|
return res.sendStatus(403)
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
const verified = await isSignatureVerified(actor, req.body)
|
2017-11-09 11:51:58 -05:00
|
|
|
if (verified === false) return res.sendStatus(403)
|
|
|
|
|
2017-11-14 11:31:26 -05:00
|
|
|
res.locals.signature = {
|
2017-12-14 11:38:41 -05:00
|
|
|
actor
|
2017-11-14 11:31:26 -05:00
|
|
|
}
|
2017-11-09 11:51:58 -05:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2017-11-14 11:31:26 -05:00
|
|
|
function executeIfActivityPub (fun: RequestHandler | RequestHandler[]) {
|
2017-11-09 11:51:58 -05:00
|
|
|
return (req: Request, res: Response, next: NextFunction) => {
|
2017-11-30 07:37:11 -05:00
|
|
|
const accepted = req.accepts(ACCEPT_HEADERS)
|
|
|
|
if (accepted === false || ACTIVITY_PUB.POTENTIAL_ACCEPT_HEADERS.indexOf(accepted) === -1) {
|
2017-11-09 11:51:58 -05:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2017-11-29 05:34:44 -05:00
|
|
|
logger.debug('ActivityPub request for %s.', req.url)
|
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
if (Array.isArray(fun) === true) {
|
2017-11-14 11:31:26 -05:00
|
|
|
return eachSeries(fun as RequestHandler[], (f, cb) => {
|
|
|
|
f(req, res, cb)
|
|
|
|
}, next)
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
2017-11-14 11:31:26 -05:00
|
|
|
return (fun as RequestHandler)(req, res, next)
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
checkSignature,
|
|
|
|
executeIfActivityPub
|
|
|
|
}
|