2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
|
|
|
|
2016-12-11 21:50:51 +01:00
|
|
|
const db = require('../initializers/database')
|
2016-03-16 22:29:27 +01:00
|
|
|
const logger = require('../helpers/logger')
|
2016-07-01 16:22:36 +02:00
|
|
|
const peertubeCrypto = require('../helpers/peertube-crypto')
|
2016-06-30 22:39:08 +02:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const secureMiddleware = {
|
2016-11-27 18:25:35 +01:00
|
|
|
checkSignature
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
|
|
|
|
2016-10-01 09:09:07 +02:00
|
|
|
function checkSignature (req, res, next) {
|
2016-11-14 20:03:04 +01:00
|
|
|
const host = req.body.signature.host
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Pod.loadByHost(host, function (err, pod) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) {
|
2016-11-27 18:25:35 +01:00
|
|
|
logger.error('Cannot get signed host in body.', { error: err })
|
2016-02-07 11:23:23 +01:00
|
|
|
return res.sendStatus(500)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pod === null) {
|
2016-11-14 20:03:04 +01:00
|
|
|
logger.error('Unknown pod %s.', host)
|
2016-02-07 11:23:23 +01:00
|
|
|
return res.sendStatus(403)
|
|
|
|
}
|
|
|
|
|
2016-11-27 18:25:35 +01:00
|
|
|
logger.debug('Checking signature from %s.', host)
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
const signatureOk = peertubeCrypto.checkSignature(pod.publicKey, host, 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()
|
|
|
|
}
|
|
|
|
|
2016-11-27 18:25:35 +01:00
|
|
|
logger.error('Signature is not okay in body for %s.', req.body.signature.host)
|
2016-10-01 09:09:07 +02:00
|
|
|
return res.sendStatus(403)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = secureMiddleware
|