Don't expose constants directly in initializers/
[oweals/peertube.git] / server / middlewares / activitypub.ts
1 import { NextFunction, Request, Response } from 'express'
2 import { ActivityPubSignature } from '../../shared'
3 import { logger } from '../helpers/logger'
4 import { isHTTPSignatureVerified, isJsonLDSignatureVerified, parseHTTPSignature } from '../helpers/peertube-crypto'
5 import { ACCEPT_HEADERS, ACTIVITY_PUB, HTTP_SIGNATURE } from '../initializers/constants'
6 import { getOrCreateActorAndServerAndModel } from '../lib/activitypub'
7 import { loadActorUrlOrGetFromWebfinger } from '../helpers/webfinger'
8
9 async function checkSignature (req: Request, res: Response, next: NextFunction) {
10   try {
11     const httpSignatureChecked = await checkHttpSignature(req, res)
12     if (httpSignatureChecked !== true) return
13
14     const actor = res.locals.signature.actor
15
16     // Forwarded activity
17     const bodyActor = req.body.actor
18     const bodyActorId = bodyActor && bodyActor.id ? bodyActor.id : bodyActor
19     if (bodyActorId && bodyActorId !== actor.url) {
20       const jsonLDSignatureChecked = await checkJsonLDSignature(req, res)
21       if (jsonLDSignatureChecked !== true) return
22     }
23
24     return next()
25   } catch (err) {
26     logger.error('Error in ActivityPub signature checker.', err)
27     return res.sendStatus(403)
28   }
29 }
30
31 function executeIfActivityPub (req: Request, res: Response, next: NextFunction) {
32   const accepted = req.accepts(ACCEPT_HEADERS)
33   if (accepted === false || ACTIVITY_PUB.POTENTIAL_ACCEPT_HEADERS.indexOf(accepted) === -1) {
34     // Bypass this route
35     return next('route')
36   }
37
38   logger.debug('ActivityPub request for %s.', req.url)
39
40   return next()
41 }
42
43 // ---------------------------------------------------------------------------
44
45 export {
46   checkSignature,
47   executeIfActivityPub,
48   checkHttpSignature
49 }
50
51 // ---------------------------------------------------------------------------
52
53 async function checkHttpSignature (req: Request, res: Response) {
54   // FIXME: mastodon does not include the Signature scheme
55   const sig = req.headers[HTTP_SIGNATURE.HEADER_NAME] as string
56   if (sig && sig.startsWith('Signature ') === false) req.headers[HTTP_SIGNATURE.HEADER_NAME] = 'Signature ' + sig
57
58   const parsed = parseHTTPSignature(req)
59
60   const keyId = parsed.keyId
61   if (!keyId) {
62     res.sendStatus(403)
63     return false
64   }
65
66   logger.debug('Checking HTTP signature of actor %s...', keyId)
67
68   let [ actorUrl ] = keyId.split('#')
69   if (actorUrl.startsWith('acct:')) {
70     actorUrl = await loadActorUrlOrGetFromWebfinger(actorUrl.replace(/^acct:/, ''))
71   }
72
73   const actor = await getOrCreateActorAndServerAndModel(actorUrl)
74
75   const verified = isHTTPSignatureVerified(parsed, actor)
76   if (verified !== true) {
77     res.sendStatus(403)
78     return false
79   }
80
81   res.locals.signature = { actor }
82
83   return true
84 }
85
86 async function checkJsonLDSignature (req: Request, res: Response) {
87   const signatureObject: ActivityPubSignature = req.body.signature
88
89   if (!signatureObject || !signatureObject.creator) {
90     res.sendStatus(403)
91     return false
92   }
93
94   const [ creator ] = signatureObject.creator.split('#')
95
96   logger.debug('Checking JsonLD signature of actor %s...', creator)
97
98   const actor = await getOrCreateActorAndServerAndModel(creator)
99   const verified = await isJsonLDSignatureVerified(actor, req.body)
100
101   if (verified !== true) {
102     res.sendStatus(403)
103     return false
104   }
105
106   res.locals.signature = { actor }
107
108   return true
109 }