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.
24 lines
545 B
24 lines
545 B
9 years ago
|
|
||
|
var _ = require('lodash'),
|
||
|
check = require('check-types');
|
||
|
|
||
|
// validate inputs
|
||
|
function sanitize( raw, clean ){
|
||
|
// error & warning messages
|
||
|
var messages = { errors: [], warnings: [] };
|
||
|
|
||
|
Object.keys(raw).forEach(function(key) {
|
||
|
if (_.isArray(raw[key])) {
|
||
|
messages.errors.push('\'' + key + '\' parameter can only have one value');
|
||
|
} else if (_.isObject(raw[key])) {
|
||
|
messages.errors.push('\'' + key + '\' parameter must be a scalar');
|
||
|
}
|
||
|
|
||
|
});
|
||
|
|
||
|
return messages;
|
||
|
}
|
||
|
|
||
|
// export function
|
||
|
module.exports = sanitize;
|