2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const logger = require('../helpers/logger')
|
2016-06-30 22:39:08 +02:00
|
|
|
const mongoose = require('mongoose')
|
2016-07-01 16:22:36 +02:00
|
|
|
const peertubeCrypto = require('../helpers/peertube-crypto')
|
2016-06-30 22:39:08 +02:00
|
|
|
|
|
|
|
const Pod = mongoose.model('Pod')
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const secureMiddleware = {
|
2016-10-02 12:19:02 +02:00
|
|
|
checkSignature,
|
|
|
|
decryptBody
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
|
|
|
|
2016-10-01 09:09:07 +02:00
|
|
|
function checkSignature (req, res, next) {
|
2016-03-16 22:29:27 +01:00
|
|
|
const url = req.body.signature.url
|
2016-06-30 22:39:08 +02:00
|
|
|
Pod.loadByUrl(url, function (err, pod) {
|
2016-02-07 11:23:23 +01:00
|
|
|
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)
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
const signatureOk = peertubeCrypto.checkSignature(pod.publicKey, url, req.body.signature.signature)
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
if (signatureOk === true) {
|
2016-10-01 09:09:07 +02:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.error('Signature is not okay in decryptBody for %s.', req.body.signature.url)
|
|
|
|
return res.sendStatus(403)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function decryptBody (req, res, next) {
|
|
|
|
peertubeCrypto.decrypt(req.body.key, req.body.data, function (err, decrypted) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot decrypt data.', { error: err })
|
|
|
|
return res.sendStatus(500)
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2016-10-01 09:09:07 +02:00
|
|
|
|
|
|
|
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()
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = secureMiddleware
|