You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
var sanitizeAll = require('../sanitiser/sanitizeAll'),
|
|
|
|
sanitizers = {
|
|
|
|
id: require('../sanitiser/_id'),
|
|
|
|
private: require('../sanitiser/_flag_bool')('private', false)
|
|
|
|
};
|
|
|
|
|
|
|
|
var sanitize = function(req, cb) { sanitizeAll(req, sanitizers, cb); };
|
|
|
|
|
|
|
|
// export sanitize for testing
|
|
|
|
module.exports.sanitize = sanitize;
|
|
|
|
module.exports.sanitiser_list = sanitizers;
|
|
|
|
|
|
|
|
// middleware
|
|
|
|
module.exports.middleware = function( req, res, next ){
|
|
|
|
sanitize( req, function( err, clean ){
|
|
|
|
if( err ){
|
|
|
|
res.status(400); // 400 Bad Request
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
};
|