2017-06-10 22:15:25 +02:00
|
|
|
import 'express-validator'
|
|
|
|
import * as express from 'express'
|
|
|
|
|
2017-05-22 20:58:25 +02:00
|
|
|
import { database as db } from '../initializers'
|
|
|
|
import {
|
|
|
|
logger,
|
|
|
|
checkSignature as peertubeCryptoCheckSignature
|
|
|
|
} from '../helpers'
|
2017-07-10 19:43:21 +02:00
|
|
|
import { PodSignature } from '../../shared'
|
2016-06-30 22:39:08 +02:00
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function checkSignature (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-07-10 19:43:21 +02:00
|
|
|
const signatureObject: PodSignature = req.body.signature
|
|
|
|
const host = signatureObject.host
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
db.Pod.loadByHost(host)
|
|
|
|
.then(pod => {
|
|
|
|
if (pod === null) {
|
|
|
|
logger.error('Unknown pod %s.', host)
|
|
|
|
return res.sendStatus(403)
|
|
|
|
}
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
logger.debug('Checking signature from %s.', host)
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
let signatureShouldBe
|
|
|
|
// 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
|
|
|
|
if (req.body.data) {
|
|
|
|
signatureShouldBe = req.body.data
|
|
|
|
} else {
|
|
|
|
signatureShouldBe = host
|
|
|
|
}
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2017-07-10 19:43:21 +02:00
|
|
|
const signatureOk = peertubeCryptoCheckSignature(pod.publicKey, signatureShouldBe, signatureObject.signature)
|
2017-01-04 22:23:07 +01:00
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
if (signatureOk === true) {
|
|
|
|
res.locals.secure = {
|
|
|
|
pod
|
|
|
|
}
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
return next()
|
2016-12-29 18:02:03 +01:00
|
|
|
}
|
|
|
|
|
2017-07-10 19:43:21 +02:00
|
|
|
logger.error('Signature is not okay in body for %s.', signatureObject.host)
|
2017-07-05 13:26:25 +02:00
|
|
|
return res.sendStatus(403)
|
|
|
|
})
|
|
|
|
.catch(err => {
|
2017-07-10 19:43:21 +02:00
|
|
|
logger.error('Cannot get signed host in body.', { error: err.stack, signature: signatureObject.signature })
|
2017-07-05 13:26:25 +02:00
|
|
|
return res.sendStatus(500)
|
|
|
|
})
|
2016-10-01 09:09:07 +02:00
|
|
|
}
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
checkSignature
|
|
|
|
}
|