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 query_parser = require('../helper/query_parser');
|
|
|
|
|
|
|
|
// validate inputs, convert types and apply defaults
|
|
|
|
function sanitize( req ){
|
|
|
|
req.clean = req.clean || {};
|
|
|
|
var params= req.query;
|
|
|
|
|
|
|
|
// ensure the input params are a valid object
|
|
|
|
if( !isObject( params ) ){
|
|
|
|
params = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
// input text
|
|
|
|
if('string' !== typeof params.input || !params.input.length){
|
|
|
|
return {
|
|
|
|
'error': true,
|
|
|
|
'message': 'invalid param \'input\': text length, must be >0'
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
req.clean.input = params.input;
|
|
|
|
|
|
|
|
req.clean.parsed_input = query_parser(params.input);
|
|
|
|
|
|
|
|
return { 'error': false };
|
|
|
|
}
|
|
|
|
|
|
|
|
// export function
|
|
|
|
module.exports = sanitize;
|