From 65fcc3119c334b75dd13bcfdebf186afdc580a8f Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 15 May 2017 22:22:03 +0200 Subject: First typescript iteration --- server/middlewares/secure.js | 52 -------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 server/middlewares/secure.js (limited to 'server/middlewares/secure.js') diff --git a/server/middlewares/secure.js b/server/middlewares/secure.js deleted file mode 100644 index 7c5c72508..000000000 --- a/server/middlewares/secure.js +++ /dev/null @@ -1,52 +0,0 @@ -'use strict' - -const db = require('../initializers/database') -const logger = require('../helpers/logger') -const peertubeCrypto = require('../helpers/peertube-crypto') - -const secureMiddleware = { - checkSignature -} - -function checkSignature (req, res, next) { - const host = req.body.signature.host - db.Pod.loadByHost(host, function (err, pod) { - if (err) { - logger.error('Cannot get signed host in body.', { error: err }) - return res.sendStatus(500) - } - - if (pod === null) { - logger.error('Unknown pod %s.', host) - return res.sendStatus(403) - } - - logger.debug('Checking signature from %s.', host) - - 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 - } - - const signatureOk = peertubeCrypto.checkSignature(pod.publicKey, signatureShouldBe, req.body.signature.signature) - - if (signatureOk === true) { - res.locals.secure = { - pod - } - - return next() - } - - logger.error('Signature is not okay in body for %s.', req.body.signature.host) - return res.sendStatus(403) - }) -} - -// --------------------------------------------------------------------------- - -module.exports = secureMiddleware -- cgit v1.2.3