Ghost/core/server/web/shared/middleware/brute.js
Hannah Wolfe 4f9b72ff43
Renamed middlewares to middleware consistently
- This is a minor bugbare, but it will affect some configuration I'm about to do for c8
- I've been wanting to do it for ages, middleware is plural all on it's own so it's an odd affectation in our codebase
- This also only exists in 2 places, everywhere else we use "middleware"
- Sadly it did result in a lot of churn as I did a full find and replace, but consistency is king!
2021-11-16 15:51:47 +00:00

114 lines
3.1 KiB
JavaScript

const url = require('url');
const spamPrevention = require('./api/spam-prevention');
/**
* We set ignoreIP to false, because we tell brute-knex to use `req.ip`.
* We can use `req.ip`, because express trust proxy option is enabled.
*/
module.exports = {
/**
* block per route per ip
*/
globalBlock(req, res, next) {
return spamPrevention.globalBlock().getMiddleware({
ignoreIP: false,
key: function (_req, _res, _next) {
_next(url.parse(_req.url).pathname);
}
})(req, res, next);
},
/**
* block per route per ip
*/
globalReset(req, res, next) {
return spamPrevention.globalReset().getMiddleware({
ignoreIP: false,
key(_req, _res, _next) {
_next(url.parse(_req.url).pathname);
}
})(req, res, next);
},
/**
* block per user
* username === email!
*/
userLogin(req, res, next) {
return spamPrevention.userLogin().getMiddleware({
ignoreIP: false,
key(_req, _res, _next) {
if (_req.body.username) {
return _next(`${_req.body.username}login`);
}
if (_req.body.authorizationCode) {
return _next(`${_req.body.authorizationCode}login`);
}
if (_req.body.refresh_token) {
return _next(`${_req.body.refresh_token}login`);
}
return _next();
}
})(req, res, next);
},
/**
* block per user
*/
userReset(req, res, next) {
return spamPrevention.userReset().getMiddleware({
ignoreIP: false,
key(_req, _res, _next) {
_next(`${_req.body.username}reset`);
}
})(req, res, next);
},
/**
* block per ip
*/
privateBlog(req, res, next) {
return spamPrevention.privateBlog().getMiddleware({
ignoreIP: false,
key(_req, _res, _next) {
_next('privateblog');
}
})(req, res, next);
},
/*
* protect content api from brute force
*/
contentApiKey(req, res, next) {
return spamPrevention.contentApiKey().getMiddleware({
ignoreIP: false
})(req, res, function (err, ...rest) {
if (!err) {
// Reset any blocks if the request is authorized
// This ensures that the count only goes up for
// unauthorized requests.
res.on('finish', function () {
if (res.statusCode < 400) {
req.brute.reset();
}
});
}
return next(err, ...rest);
});
},
/**
*/
membersAuth(req, res, next) {
return spamPrevention.userLogin().getMiddleware({
ignoreIP: false,
key(_req, _res, _next) {
if (_req.body.email) {
return _next(`${_req.body.email}login`);
}
return _next();
}
})(req, res, next);
}
};