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.
26 lines
515 B
26 lines
515 B
9 years ago
|
|
||
|
function sanitize( req, sanitizers, cb ){
|
||
|
|
||
|
// init an object to store clean
|
||
|
// (sanitized) input parameters
|
||
|
req.clean = {};
|
||
|
|
||
|
// source of input parameters
|
||
|
// (in this case from the GET querystring params)
|
||
|
var params = req.query || {};
|
||
|
|
||
|
for (var s in sanitizers) {
|
||
|
var sanity = sanitizers[s]( params, req.clean );
|
||
|
|
||
|
// errors
|
||
|
if( sanity.errors.length ){
|
||
|
return cb( sanity.errors[0] );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return cb( undefined, req.clean );
|
||
|
|
||
|
}
|
||
|
|
||
|
// export function
|
||
|
module.exports = sanitize;
|