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.
31 lines
734 B
31 lines
734 B
9 years ago
|
var isObject = require('is-object');
|
||
|
var geo_common = require ('./_geo_common');
|
||
|
|
||
|
// validate inputs, convert types and apply defaults
|
||
|
module.exports = function sanitize( req ){
|
||
|
var clean = req.clean || {};
|
||
|
var params = req.query;
|
||
|
var latlon_is_required = false;
|
||
|
|
||
|
// ensure the input params are a valid object
|
||
|
if( !isObject( params ) ){
|
||
|
params = {};
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
geo_common.sanitize_coord( 'lat', clean, params.lat, latlon_is_required );
|
||
|
geo_common.sanitize_coord( 'lon', clean, params.lon, latlon_is_required );
|
||
|
geo_common.sanitize_bbox(clean, params.bbox);
|
||
|
}
|
||
|
catch (err) {
|
||
|
return {
|
||
|
'error': true,
|
||
|
'message': err.message
|
||
|
};
|
||
|
}
|
||
|
|
||
|
req.clean = clean;
|
||
|
|
||
|
return { 'error': false };
|
||
|
};
|