2019-03-19 04:34:29 -04:00
|
|
|
import { NextFunction, Request, Response } from 'express'
|
2020-01-29 09:17:42 -05:00
|
|
|
import { ActivityDelete, ActivityPubSignature } from '../../shared'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { logger } from '../helpers/logger'
|
2018-10-19 05:41:19 -04:00
|
|
|
import { isHTTPSignatureVerified, isJsonLDSignatureVerified, parseHTTPSignature } from '../helpers/peertube-crypto'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { ACCEPT_HEADERS, ACTIVITY_PUB, HTTP_SIGNATURE } from '../initializers/constants'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { getOrCreateActorAndServerAndModel } from '../lib/activitypub'
|
2018-10-19 05:41:19 -04:00
|
|
|
import { loadActorUrlOrGetFromWebfinger } from '../helpers/webfinger'
|
2020-01-29 09:17:42 -05:00
|
|
|
import { isActorDeleteActivityValid } from '@server/helpers/custom-validators/activitypub/actor'
|
2020-01-31 10:56:52 -05:00
|
|
|
import { getAPId } from '@server/helpers/activitypub'
|
2017-11-09 11:51:58 -05:00
|
|
|
|
|
|
|
async function checkSignature (req: Request, res: Response, next: NextFunction) {
|
2018-10-19 05:41:19 -04:00
|
|
|
try {
|
|
|
|
const httpSignatureChecked = await checkHttpSignature(req, res)
|
|
|
|
if (httpSignatureChecked !== true) return
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
const actor = res.locals.signature.actor
|
2017-12-19 04:34:56 -05:00
|
|
|
|
2018-10-19 05:41:19 -04:00
|
|
|
// Forwarded activity
|
|
|
|
const bodyActor = req.body.actor
|
2020-01-31 10:56:52 -05:00
|
|
|
const bodyActorId = getAPId(bodyActor)
|
2018-10-19 05:41:19 -04:00
|
|
|
if (bodyActorId && bodyActorId !== actor.url) {
|
|
|
|
const jsonLDSignatureChecked = await checkJsonLDSignature(req, res)
|
|
|
|
if (jsonLDSignatureChecked !== true) return
|
|
|
|
}
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2018-10-19 05:41:19 -04:00
|
|
|
return next()
|
2017-12-14 11:38:41 -05:00
|
|
|
} catch (err) {
|
2020-01-29 09:17:42 -05:00
|
|
|
const activity: ActivityDelete = req.body
|
|
|
|
if (isActorDeleteActivityValid(activity) && activity.object === activity.actor) {
|
|
|
|
logger.debug('Handling signature error on actor delete activity', { err })
|
|
|
|
return res.sendStatus(204)
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.warn('Error in ActivityPub signature checker.', { err })
|
2017-12-14 11:38:41 -05:00
|
|
|
return res.sendStatus(403)
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-19 04:34:29 -04:00
|
|
|
function executeIfActivityPub (req: Request, res: Response, next: NextFunction) {
|
|
|
|
const accepted = req.accepts(ACCEPT_HEADERS)
|
2020-02-28 10:03:39 -05:00
|
|
|
if (accepted === false || ACTIVITY_PUB.POTENTIAL_ACCEPT_HEADERS.includes(accepted) === false) {
|
2019-03-19 04:34:29 -04:00
|
|
|
// Bypass this route
|
|
|
|
return next('route')
|
|
|
|
}
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2019-03-19 04:34:29 -04:00
|
|
|
logger.debug('ActivityPub request for %s.', req.url)
|
2017-11-29 05:34:44 -05:00
|
|
|
|
2019-03-19 04:34:29 -04:00
|
|
|
return next()
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
checkSignature,
|
2018-10-23 05:38:48 -04:00
|
|
|
executeIfActivityPub,
|
|
|
|
checkHttpSignature
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
2018-10-19 05:41:19 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function checkHttpSignature (req: Request, res: Response) {
|
2020-01-07 09:24:27 -05:00
|
|
|
// FIXME: compatibility with http-signature < v1.3
|
2018-10-19 05:41:19 -04:00
|
|
|
const sig = req.headers[HTTP_SIGNATURE.HEADER_NAME] as string
|
2020-01-07 09:24:27 -05:00
|
|
|
if (sig && sig.startsWith('Signature ') === true) req.headers[HTTP_SIGNATURE.HEADER_NAME] = sig.replace(/^Signature /, '')
|
2018-10-19 05:41:19 -04:00
|
|
|
|
2019-10-25 08:53:39 -04:00
|
|
|
const parsed = parseHTTPSignature(req, HTTP_SIGNATURE.CLOCK_SKEW_SECONDS)
|
2018-10-19 05:41:19 -04:00
|
|
|
|
|
|
|
const keyId = parsed.keyId
|
|
|
|
if (!keyId) {
|
|
|
|
res.sendStatus(403)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.debug('Checking HTTP signature of actor %s...', keyId)
|
|
|
|
|
|
|
|
let [ actorUrl ] = keyId.split('#')
|
|
|
|
if (actorUrl.startsWith('acct:')) {
|
|
|
|
actorUrl = await loadActorUrlOrGetFromWebfinger(actorUrl.replace(/^acct:/, ''))
|
|
|
|
}
|
|
|
|
|
|
|
|
const actor = await getOrCreateActorAndServerAndModel(actorUrl)
|
|
|
|
|
|
|
|
const verified = isHTTPSignatureVerified(parsed, actor)
|
|
|
|
if (verified !== true) {
|
2019-04-25 09:19:53 -04:00
|
|
|
logger.warn('Signature from %s is invalid', actorUrl, { parsed })
|
|
|
|
|
2018-10-19 05:41:19 -04:00
|
|
|
res.sendStatus(403)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.signature = { actor }
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
async function checkJsonLDSignature (req: Request, res: Response) {
|
|
|
|
const signatureObject: ActivityPubSignature = req.body.signature
|
|
|
|
|
2018-10-23 05:38:48 -04:00
|
|
|
if (!signatureObject || !signatureObject.creator) {
|
2018-10-19 05:41:19 -04:00
|
|
|
res.sendStatus(403)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
const [ creator ] = signatureObject.creator.split('#')
|
|
|
|
|
|
|
|
logger.debug('Checking JsonLD signature of actor %s...', creator)
|
|
|
|
|
|
|
|
const actor = await getOrCreateActorAndServerAndModel(creator)
|
|
|
|
const verified = await isJsonLDSignatureVerified(actor, req.body)
|
|
|
|
|
|
|
|
if (verified !== true) {
|
2019-08-29 10:15:41 -04:00
|
|
|
logger.warn('Signature not verified.', req.body)
|
|
|
|
|
2018-10-19 05:41:19 -04:00
|
|
|
res.sendStatus(403)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.signature = { actor }
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|