mirror of https://github.com/pelias/api.git
Peter Johnson
9 years ago
9 changed files with 216 additions and 57 deletions
@ -0,0 +1,31 @@
|
||||
var isObject = require('is-object'); |
||||
var isTruthy = require('./_truthy'); |
||||
|
||||
// validate inputs, convert types and apply defaults
|
||||
function sanitize( req, default_value ){ |
||||
|
||||
req.clean = req.clean || {}; |
||||
var params= req.query; |
||||
|
||||
if (default_value === undefined) { |
||||
default_value = true; |
||||
} |
||||
|
||||
default_value = !!default_value; |
||||
|
||||
// ensure the input params are a valid object
|
||||
if( !isObject( params ) ){ |
||||
params = {}; |
||||
} |
||||
|
||||
if (params.private === undefined) { |
||||
req.clean.private = default_value; |
||||
} else { |
||||
req.clean.private = isTruthy(params.private); |
||||
} |
||||
|
||||
return {'error':false}; |
||||
|
||||
} |
||||
|
||||
module.exports = sanitize; |
@ -0,0 +1,9 @@
|
||||
function isTruthy(val) { |
||||
if (typeof val === 'string') { |
||||
return ['true', '1', 'yes', 'y'].indexOf(val) !== -1; |
||||
} |
||||
|
||||
return val === 1 || val === true; |
||||
} |
||||
|
||||
module.exports = isTruthy; |
@ -0,0 +1,53 @@
|
||||
var sanitize = require('../../../sanitiser/_details'); |
||||
|
||||
module.exports.tests = {}; |
||||
|
||||
module.exports.tests.sanitize_details = function(test, common) { |
||||
var invalid_values = [null, -1, 123, NaN, 'abc']; |
||||
invalid_values.forEach(function(detailsValue) { |
||||
test('invalid details param ' + detailsValue, function(t) { |
||||
var req = {query: { details: detailsValue }}; |
||||
sanitize(req); |
||||
t.equal(req.clean.details, false, 'default details set (to false)'); |
||||
t.end(); |
||||
}); |
||||
}); |
||||
|
||||
var valid_values = ['true', true, 1, '1', 'yes', 'y']; |
||||
valid_values.forEach(function(detailsValue) { |
||||
test('valid details param ' + detailsValue, function(t) { |
||||
var req = {query: { details: detailsValue }}; |
||||
sanitize(req); |
||||
t.equal(req.clean.details, true, 'details set to true'); |
||||
t.end(); |
||||
}); |
||||
}); |
||||
|
||||
var valid_false_values = ['false', false, 0, '0', 'no', 'n']; |
||||
valid_false_values.forEach(function(detailsValue) { |
||||
test('test setting false explicitly ' + detailsValue, function(t) { |
||||
var req = {query: { details: detailsValue }}; |
||||
sanitize(req); |
||||
t.equal(req.clean.details, false, 'details set to false'); |
||||
t.end(); |
||||
}); |
||||
}); |
||||
|
||||
test('test default behavior', function(t) { |
||||
var req = {query: {}}; |
||||
sanitize(req); |
||||
t.equal(req.clean.details, true, 'details set to true'); |
||||
t.end(); |
||||
}); |
||||
}; |
||||
|
||||
module.exports.all = function (tape, common) { |
||||
|
||||
function test(name, testFunction) { |
||||
return tape('SANTIZE _details ' + name, testFunction); |
||||
} |
||||
|
||||
for( var testCase in module.exports.tests ){ |
||||
module.exports.tests[testCase](test, common); |
||||
} |
||||
}; |
@ -0,0 +1,53 @@
|
||||
var sanitize = require('../../../sanitiser/_private'); |
||||
|
||||
module.exports.tests = {}; |
||||
|
||||
module.exports.tests.sanitize_private = function(test, common) { |
||||
var invalid_values = [null, -1, 123, NaN, 'abc']; |
||||
invalid_values.forEach(function(privateValue) { |
||||
test('invalid private param ' + privateValue, function(t) { |
||||
var req = {query: { private: privateValue }}; |
||||
sanitize(req); |
||||
t.equal(req.clean.private, false, 'default private set (to false)'); |
||||
t.end(); |
||||
}); |
||||
}); |
||||
|
||||
var valid_values = ['true', true, 1, '1', 'yes', 'y']; |
||||
valid_values.forEach(function(privateValue) { |
||||
test('valid private param ' + privateValue, function(t) { |
||||
var req = {query: { private: privateValue }}; |
||||
sanitize(req); |
||||
t.equal(req.clean.private, true, 'private set to true'); |
||||
t.end(); |
||||
}); |
||||
}); |
||||
|
||||
var valid_false_values = ['false', false, 0, '0', 'no', 'n']; |
||||
valid_false_values.forEach(function(privateValue) { |
||||
test('test setting false explicitly ' + privateValue, function(t) { |
||||
var req = {query: { private: privateValue }}; |
||||
sanitize(req); |
||||
t.equal(req.clean.private, false, 'private set to false'); |
||||
t.end(); |
||||
}); |
||||
}); |
||||
|
||||
test('test default behavior', function(t) { |
||||
var req = {query: {}}; |
||||
sanitize(req); |
||||
t.equal(req.clean.private, true, 'private set to true'); |
||||
t.end(); |
||||
}); |
||||
}; |
||||
|
||||
module.exports.all = function (tape, common) { |
||||
|
||||
function test(name, testFunction) { |
||||
return tape('SANTIZE _private ' + name, testFunction); |
||||
} |
||||
|
||||
for( var testCase in module.exports.tests ){ |
||||
module.exports.tests[testCase](test, common); |
||||
} |
||||
}; |
@ -0,0 +1,31 @@
|
||||
var isTruthy = require('../../../sanitiser/_truthy'); |
||||
|
||||
module.exports.tests = {}; |
||||
|
||||
module.exports.tests.sanitize_truthy = function(test, common) { |
||||
var valid_values = ['true', true, 1, '1', 'yes', 'y']; |
||||
valid_values.forEach(function(value) { |
||||
test('truthy value ' + value, function(t) { |
||||
t.equal(isTruthy(value), true, 'returns true'); |
||||
t.end(); |
||||
}); |
||||
}); |
||||
|
||||
var valid_false_values = ['false', false, 0, '0', 'no', 'n', null, -1, 123, NaN, 'abc']; |
||||
valid_false_values.forEach(function(value) { |
||||
test('falsey value ' + value, function(t) { |
||||
t.equal(isTruthy(value), false, 'returns false'); |
||||
t.end(); |
||||
}); |
||||
}); |
||||
}; |
||||
|
||||
module.exports.all = function (tape, common) { |
||||
function test(name, testFunction) { |
||||
return tape('SANTIZE _truthy ' + name, testFunction); |
||||
} |
||||
|
||||
for( var testCase in module.exports.tests ){ |
||||
module.exports.tests[testCase](test, common); |
||||
} |
||||
}; |
Loading…
Reference in new issue