unpkg/server/actions/removeFromBlacklist.js

29 lines
705 B
JavaScript
Raw Normal View History

2017-11-25 21:25:01 +00:00
const BlacklistAPI = require("../BlacklistAPI")
2017-11-11 20:18:13 +00:00
function removeFromBlacklist(req, res) {
const packageName = req.packageName
2017-11-11 20:18:13 +00:00
BlacklistAPI.removePackage(packageName).then(
removed => {
if (removed) {
const userId = req.user.jti
2017-11-25 21:25:01 +00:00
console.log(`Package "${packageName}" was removed from the blacklist by ${userId}`)
2017-11-11 20:18:13 +00:00
}
res.send({
ok: true,
2017-11-25 21:25:01 +00:00
message: `Package "${packageName}" was ${removed ? "removed from" : "not in"} the blacklist`
2017-11-11 20:18:13 +00:00
})
},
error => {
console.error(error)
2017-11-11 20:18:13 +00:00
res.status(500).send({
error: `Unable to remove "${packageName}" from the blacklist`
})
}
)
}
module.exports = removeFromBlacklist