aboutsummaryrefslogtreecommitdiffhomepage
path: root/middlewares/misc.js
blob: cc4e2e8a43b8af9eb73b08cd2cafca33dc8b480b (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
57
58
59
60
61
62
63
64
65
;(function () {
  'use strict'

  var fs = require('fs')
  var ursa = require('ursa')

  var logger = require('../helpers/logger')
  var Pods = require('../models/pods')
  var utils = require('../helpers/utils')

  var miscMiddleware = {
    cache: cache,
    decryptBody: decryptBody
  }

  function cache (cache) {
    return function (req, res, next) {
      // If we want explicitly a cache
      // Or if we don't specify if we want a cache or no and we are in production
      if (cache === true || (cache !== false && process.env.NODE_ENV === 'production')) {
        res.setHeader('Cache-Control', 'public')
      } else {
        res.setHeader('Cache-Control', 'no-cache, no-store, max-age=0, must-revalidate')
      }

      next()
    }
  }

  function decryptBody (req, res, next) {
    var url = req.body.signature.url
    Pods.findByUrl(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)

      var crt = ursa.createPublicKey(pod.publicKey)
      var signature_ok = crt.hashAndVerify('sha256', new Buffer(req.body.signature.url).toString('hex'), req.body.signature.signature, 'hex')

      if (signature_ok === true) {
        var myKey = ursa.createPrivateKey(fs.readFileSync(utils.getCertDir() + 'peertube.key.pem'))
        var decryptedKey = myKey.decrypt(req.body.key, 'hex', 'utf8')
        req.body.data = JSON.parse(utils.symetricDecrypt(req.body.data, decryptedKey))
        delete req.body.key
      } else {
        logger.error('Signature is not okay in decryptBody for %s.', req.body.signature.url)
        return res.sendStatus(403)
      }

      next()
    })
  }

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

  module.exports = miscMiddleware
})()