2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
const db = require('../initializers/database')
|
2016-03-16 17:29:27 -04:00
|
|
|
const logger = require('../helpers/logger')
|
2016-07-01 10:22:36 -04:00
|
|
|
const peertubeCrypto = require('../helpers/peertube-crypto')
|
2016-06-30 16:39:08 -04:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const secureMiddleware = {
|
2016-11-27 12:25:35 -05:00
|
|
|
checkSignature
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
2016-10-01 03:09:07 -04:00
|
|
|
function checkSignature (req, res, next) {
|
2016-11-14 14:03:04 -05:00
|
|
|
const host = req.body.signature.host
|
2016-12-11 15:50:51 -05:00
|
|
|
db.Pod.loadByHost(host, function (err, pod) {
|
2016-02-07 05:23:23 -05:00
|
|
|
if (err) {
|
2016-11-27 12:25:35 -05:00
|
|
|
logger.error('Cannot get signed host in body.', { error: err })
|
2016-02-07 05:23:23 -05:00
|
|
|
return res.sendStatus(500)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pod === null) {
|
2016-11-14 14:03:04 -05:00
|
|
|
logger.error('Unknown pod %s.', host)
|
2016-02-07 05:23:23 -05:00
|
|
|
return res.sendStatus(403)
|
|
|
|
}
|
|
|
|
|
2016-11-27 12:25:35 -05:00
|
|
|
logger.debug('Checking signature from %s.', host)
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2017-01-04 16:23:07 -05:00
|
|
|
let signatureShouldBe
|
|
|
|
if (req.body.data) {
|
|
|
|
signatureShouldBe = req.body.data
|
|
|
|
} else {
|
|
|
|
signatureShouldBe = host
|
|
|
|
}
|
|
|
|
|
|
|
|
const signatureOk = peertubeCrypto.checkSignature(pod.publicKey, signatureShouldBe, req.body.signature.signature)
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
if (signatureOk === true) {
|
2016-12-29 12:02:03 -05:00
|
|
|
res.locals.secure = {
|
|
|
|
pod
|
|
|
|
}
|
|
|
|
|
2016-10-01 03:09:07 -04:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2016-11-27 12:25:35 -05:00
|
|
|
logger.error('Signature is not okay in body for %s.', req.body.signature.host)
|
2016-10-01 03:09:07 -04:00
|
|
|
return res.sendStatus(403)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = secureMiddleware
|