1
0
Fork 0
peertube/server/middlewares/activitypub.ts

60 lines
1.8 KiB
TypeScript
Raw Normal View History

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