Rename server => modules

This commit is contained in:
Michael Jackson
2018-07-31 10:13:26 -07:00
parent 135da0fdc5
commit bef8b2ebee
104 changed files with 13 additions and 13 deletions

View File

@ -0,0 +1,26 @@
const BlacklistAPI = require("../BlacklistAPI");
function checkBlacklist(req, res, next) {
BlacklistAPI.includesPackage(req.packageName).then(
blacklisted => {
// Disallow packages that have been blacklisted.
if (blacklisted) {
res
.status(403)
.type("text")
.send(`Package "${req.packageName}" is blacklisted`);
} else {
next();
}
},
error => {
console.error(error);
res.status(500).send({
error: "Unable to fetch the blacklist"
});
}
);
}
module.exports = checkBlacklist;