2017-05-22 20:58:25 +02:00
|
|
|
import { database as db } from '../initializers'
|
|
|
|
import {
|
|
|
|
logger,
|
|
|
|
checkSignature as peertubeCryptoCheckSignature
|
|
|
|
} from '../helpers'
|
2016-06-30 22:39:08 +02: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
|
|
|
|
2017-01-04 22:23:07 +01:00
|
|
|
let signatureShouldBe
|
2017-05-05 17:35:58 +02:00
|
|
|
// If there is data in the body the sender used it for its signature
|
|
|
|
// If there is no data we just use its host as signature
|
2017-01-04 22:23:07 +01:00
|
|
|
if (req.body.data) {
|
|
|
|
signatureShouldBe = req.body.data
|
|
|
|
} else {
|
|
|
|
signatureShouldBe = host
|
|
|
|
}
|
|
|
|
|
2017-05-22 20:58:25 +02:00
|
|
|
const signatureOk = peertubeCryptoCheckSignature(pod.publicKey, signatureShouldBe, req.body.signature.signature)
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
if (signatureOk === true) {
|
2016-12-29 18:02:03 +01:00
|
|
|
res.locals.secure = {
|
|
|
|
pod
|
|
|
|
}
|
|
|
|
|
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
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
checkSignature
|
|
|
|
}
|