aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/secure.js
blob: fa000c6f077b74b0dc418d5f5950ccee3160a300 (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
56
'use strict'

const logger = require('../helpers/logger')
const mongoose = require('mongoose')
const peertubeCrypto = require('../helpers/peertube-crypto')

const Pod = mongoose.model('Pod')

const secureMiddleware = {
  decryptBody: decryptBody
}

function decryptBody (req, res, next) {
  const url = req.body.signature.url
  Pod.loadByUrl(url, function (err, pod) {
    if (err) {
      logger.error('Cannot get signed url in decryptBody.', { error: err })
      return res.sendStatus(500)
    }

    if (pod === null) {
      logger.error('Unknown pod %s.', url)
      return res.sendStatus(403)
    }

    logger.debug('Decrypting body from %s.', url)

    const signatureOk = peertubeCrypto.checkSignature(pod.publicKey, url, req.body.signature.signature)

    if (signatureOk === true) {
      peertubeCrypto.decrypt(req.body.key, req.body.data, function (err, decrypted) {
        if (err) {
          logger.error('Cannot decrypt data.', { error: err })
          return res.sendStatus(500)
        }

        try {
          req.body.data = JSON.parse(decrypted)
          delete req.body.key
        } catch (err) {
          logger.error('Error in JSON.parse', { error: err })
          return res.sendStatus(500)
        }

        next()
      })
    } else {
      logger.error('Signature is not okay in decryptBody for %s.', req.body.signature.url)
      return res.sendStatus(403)
    }
  })
}

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

module.exports = secureMiddleware