1
0
Fork 0
peertube/middlewares/misc.js

65 lines
2 KiB
JavaScript
Raw Normal View History

2015-11-07 12:40:13 -05:00
;(function () {
'use strict'
var fs = require('fs')
2016-01-31 05:23:52 -05:00
var ursa = require('ursa')
2015-11-07 12:40:13 -05:00
2016-01-30 11:05:22 -05:00
var logger = require('../helpers/logger')
var PodsDB = require('../initializers/database').PodsDB
2016-01-31 05:23:52 -05:00
var utils = require('../helpers/utils')
2015-11-07 12:40:13 -05:00
2016-01-31 05:23:52 -05:00
var miscMiddleware = {
cache: cache,
decryptBody: decryptBody
}
2015-11-07 12:40:13 -05:00
2016-01-31 05:23:52 -05:00
function cache (cache) {
2015-11-07 12:40:13 -05:00
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()
}
}
2016-01-31 05:23:52 -05:00
function decryptBody (req, res, next) {
2015-11-07 12:40:13 -05:00
PodsDB.findOne({ url: req.body.signature.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.', req.body.signature.url)
return res.sendStatus(403)
2015-11-07 12:40:13 -05:00
}
2015-12-06 15:36:57 -05:00
logger.debug('Decrypting body from %s.', req.body.signature.url)
2015-11-07 12:40:13 -05:00
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) {
2016-01-31 05:23:52 -05:00
var myKey = ursa.createPrivateKey(fs.readFileSync(utils.getCertDir() + 'peertube.key.pem'))
2015-11-07 12:40:13 -05:00
var decryptedKey = myKey.decrypt(req.body.key, 'hex', 'utf8')
req.body.data = JSON.parse(utils.symetricDecrypt(req.body.data, decryptedKey))
2015-12-06 15:36:57 -05:00
delete req.body.key
2015-11-07 12:40:13 -05:00
} else {
logger.error('Signature is not okay in decryptBody for %s.', req.body.signature.url)
return res.sendStatus(403)
2015-11-07 12:40:13 -05:00
}
next()
})
}
2016-01-31 05:23:52 -05:00
// ---------------------------------------------------------------------------
module.exports = miscMiddleware
2015-11-07 12:40:13 -05:00
})()