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.
16 lines
644 B
16 lines
644 B
const _ = require('lodash'); |
|
const Debug = require('../../helper/debug'); |
|
const debugLog = new Debug('controller:predicates:is_only_non_admin_layers'); |
|
const stackTraceLine = require('../../helper/stackTraceLine'); |
|
|
|
// return true IFF req.clean.layers is empty OR there are non-venue/address/street layers |
|
module.exports = (req, res) => { |
|
const is_only_non_admin_layers = !_.isEmpty(_.get(req, 'clean.layers', [])) && |
|
_.isEmpty(_.difference(req.clean.layers, ['venue', 'address', 'street'])); |
|
|
|
debugLog.push(req, () => ({ |
|
reply: is_only_non_admin_layers, |
|
stack_trace: stackTraceLine() |
|
})); |
|
return is_only_non_admin_layers; |
|
};
|
|
|