mirror of https://github.com/pelias/api.git
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.
23 lines
542 B
23 lines
542 B
10 years ago
|
|
||
|
var logger = require('../src/logger'),
|
||
|
_sanitize = require('../sanitiser/_sanitize'),
|
||
|
sanitiser = {
|
||
|
latlonzoom: require('../sanitiser/_latlonzoom')
|
||
|
};
|
||
|
|
||
|
var sanitize = function(req, cb) { _sanitize(req, sanitiser, cb); }
|
||
|
|
||
|
// export sanitize for testing
|
||
|
module.exports.sanitize = sanitize;
|
||
|
|
||
|
// middleware
|
||
|
module.exports.middleware = function( req, res, next ){
|
||
|
sanitize( req, function( err, clean ){
|
||
|
if( err ){
|
||
|
res.status(400); // 400 Bad Request
|
||
|
return next(err);
|
||
|
}
|
||
|
req.clean = clean;
|
||
|
next();
|
||
|
});
|
||
|
};
|