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.
44 lines
1.2 KiB
44 lines
1.2 KiB
var _ = require( 'lodash' ); |
|
var type_mapping = require( '../helper/type_mapping' ); |
|
|
|
/* |
|
* This sanitizer depends on clean.layers and clean.sources |
|
* so it has to be run after those sanitizers have been run |
|
*/ |
|
function _sanitize( raw, clean ){ |
|
var messages = { errors: [], warnings: [] }; |
|
|
|
var possible_errors = []; |
|
var at_least_one_valid_combination = false; |
|
|
|
if (clean.layers && clean.sources) { |
|
clean.sources.forEach(function(source) { |
|
var layers_for_source = type_mapping.layers_by_source[source]; |
|
clean.layers.forEach(function(layer) { |
|
if (_.includes(layers_for_source, layer)) { |
|
at_least_one_valid_combination = true; |
|
} else { |
|
var message = 'You have specified both the `sources` and `layers` ' + |
|
'parameters in a combination that will return no results: the ' + |
|
source + ' source has nothing in the ' + layer + ' layer'; |
|
possible_errors.push(message); |
|
} |
|
}); |
|
}); |
|
|
|
if (!at_least_one_valid_combination) { |
|
messages.errors = possible_errors; |
|
} |
|
} |
|
|
|
return messages; |
|
} |
|
|
|
function _expected(){ |
|
return [{ 'name': 'sources' }, { 'name': 'layers' }]; |
|
} |
|
|
|
module.exports = () => ({ |
|
sanitize: _sanitize, |
|
expected: _expected |
|
});
|
|
|