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
845 B
26 lines
845 B
|
|
var geo_common = require ('./_geo_common'); |
|
var LAT_LON_IS_REQUIRED = true, |
|
CIRCLE_IS_REQUIRED = false, |
|
CIRCLE_MUST_BE_COMPLETE = false; |
|
|
|
// validate inputs, convert types and apply defaults |
|
module.exports = function sanitize( raw, clean ){ |
|
|
|
// error & warning messages |
|
var messages = { errors: [], warnings: [] }; |
|
|
|
try { |
|
geo_common.sanitize_coord( 'lat', clean, raw['point.lat'], LAT_LON_IS_REQUIRED ); |
|
geo_common.sanitize_coord( 'lon', clean, raw['point.lon'], LAT_LON_IS_REQUIRED ); |
|
|
|
// boundary.circle.* is not mandatory, and only specifying radius is fine, |
|
// as point.lat/lon will be used to fill those values by default |
|
geo_common.sanitize_boundary_circle( clean, raw, CIRCLE_IS_REQUIRED, CIRCLE_MUST_BE_COMPLETE); |
|
} |
|
catch (err) { |
|
messages.errors.push( err.message ); |
|
} |
|
|
|
return messages; |
|
};
|
|
|