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 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 = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !isObject( params.focus ) ){
|
|
|
|
params.focus = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !isObject( params.focus.point ) ){
|
|
|
|
params.focus.point = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
geo_common.sanitize_coord( 'lat', clean, params['focus.point.lat'], latlon_is_required );
|
|
|
|
geo_common.sanitize_coord( 'lon', clean, params['focus.point.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 };
|
|
|
|
};
|