aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/secure.ts
blob: 5dd809f15971237c2de54725df24e2db9503a65a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import 'express-validator'
import * as express from 'express'

import { database as db } from '../initializers'
import {
  logger,
  checkSignature as peertubeCryptoCheckSignature
} from '../helpers'
import { PodSignature } from '../../shared'

async function checkSignature (req: express.Request, res: express.Response, next: express.NextFunction) {
  const signatureObject: PodSignature = req.body.signature
  const host = signatureObject.host

  try {
    const pod = await db.Pod.loadByHost(host)
    if (pod === null) {
      logger.error('Unknown pod %s.', host)
      return res.sendStatus(403)
    }

    logger.debug('Checking signature from %s.', host)

    let signatureShouldBe
    // If there is data in the body the sender used it for its signature
    // If there is no data we just use its host as signature
    if (req.body.data) {
      signatureShouldBe = req.body.data
    } else {
      signatureShouldBe = host
    }

    const signatureOk = peertubeCryptoCheckSignature(pod.publicKey, signatureShouldBe, signatureObject.signature)

    if (signatureOk === true) {
      res.locals.secure = {
        pod
      }

      return next()
    }

    logger.error('Signature is not okay in body for %s.', signatureObject.host)
    return res.sendStatus(403)
  } catch (err) {
    logger.error('Cannot get signed host in body.', { error: err.stack, signature: signatureObject.signature })
    return res.sendStatus(500)
  }
}

// ---------------------------------------------------------------------------

export {
  checkSignature
}