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

62 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-11-14 16:31:26 +00:00
import { isSignatureVerified, logger } from '../helpers'
2017-11-17 14:20:42 +00:00
import { database as db } from '../initializers'
import { ACTIVITY_PUB } from '../initializers/constants'
2017-11-21 12:43:29 +00:00
import { fetchRemoteAccount, saveAccountAndServerIfNotExist } from '../lib/activitypub/account'
2017-11-09 16:51:58 +00: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-21 12:43:29 +00:00
account = await fetchRemoteAccount(signatureObject.creator)
2017-11-09 16:51:58 +00:00
2017-11-21 12:43:29 +00:00
if (!account) {
2017-11-09 16:51:58 +00:00
return res.sendStatus(403)
}
2017-11-21 12:43:29 +00:00
// Save our new account and its server in database
await saveAccountAndServerIfNotExist(account)
2017-11-09 16:51:58 +00:00
}
const verified = await isSignatureVerified(account, req.body)
if (verified === false) return res.sendStatus(403)
2017-11-14 16:31:26 +00:00
res.locals.signature = {
account
}
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:15:25 +00:00
if (!req.accepts(ACTIVITY_PUB.POTENTIAL_ACCEPT_HEADERS)) {
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
}