mirror of https://github.com/pelias/api.git
Harish Krishna
10 years ago
12 changed files with 556 additions and 31 deletions
@ -0,0 +1,55 @@ |
|||||||
|
|
||||||
|
var geojsonify = require('../helper/geojsonify').search; |
||||||
|
|
||||||
|
function setup( backend ){ |
||||||
|
|
||||||
|
// allow overriding of dependencies
|
||||||
|
backend = backend || require('../src/backend'); |
||||||
|
backend = new backend();
|
||||||
|
|
||||||
|
function controller( req, res, next ){ |
||||||
|
|
||||||
|
var docs = req.clean.ids.map( function(id) { |
||||||
|
return { |
||||||
|
_index: 'pelias', |
||||||
|
_type: id.type, |
||||||
|
_id: id.id |
||||||
|
}; |
||||||
|
}); |
||||||
|
|
||||||
|
// backend command
|
||||||
|
var cmd = { |
||||||
|
body: { |
||||||
|
docs: docs |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
// query new backend
|
||||||
|
backend.client.mget( cmd, function( err, data ){ |
||||||
|
|
||||||
|
var docs = []; |
||||||
|
// handle backend errors
|
||||||
|
if( err ){ return next( err ); } |
||||||
|
|
||||||
|
if( data && data.docs && Array.isArray(data.docs) && data.docs.length ){ |
||||||
|
docs = data.docs.map( function( doc ){ |
||||||
|
return doc._source; |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
// convert docs to geojson
|
||||||
|
var geojson = geojsonify( docs ); |
||||||
|
|
||||||
|
// response envelope
|
||||||
|
geojson.date = new Date().getTime(); |
||||||
|
|
||||||
|
// respond
|
||||||
|
return res.status(200).json( geojson ); |
||||||
|
}); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
return controller; |
||||||
|
} |
||||||
|
|
||||||
|
module.exports = setup; |
@ -0,0 +1,97 @@ |
|||||||
|
# valid get query |
||||||
|
|
||||||
|
*Generated: Thu Oct 16 2014 17:02:52 GMT-0400 (EDT)* |
||||||
|
## Request |
||||||
|
```javascript |
||||||
|
{ |
||||||
|
"protocol": "http:", |
||||||
|
"host": "localhost", |
||||||
|
"method": "GET", |
||||||
|
"port": 3100, |
||||||
|
"path": "/get?id=geoname:4221195&id=geoname:4193595" |
||||||
|
} |
||||||
|
``` |
||||||
|
|
||||||
|
## Response |
||||||
|
```javascript |
||||||
|
Status: 200 |
||||||
|
{ |
||||||
|
"x-powered-by": "mapzen", |
||||||
|
"charset": "utf8", |
||||||
|
"cache-control": "public,max-age=60", |
||||||
|
"server": "Pelias/0.0.0", |
||||||
|
"access-control-allow-origin": "*", |
||||||
|
"access-control-allow-methods": "GET", |
||||||
|
"access-control-allow-headers": "X-Requested-With,content-type", |
||||||
|
"access-control-allow-credentials": "true", |
||||||
|
"content-type": "application/json; charset=utf-8", |
||||||
|
"content-length": "567", |
||||||
|
"etag": "W/\"237-e0425e36\"", |
||||||
|
"date": "Thu, 16 Oct 2014 21:02:52 GMT", |
||||||
|
"connection": "close" |
||||||
|
} |
||||||
|
``` |
||||||
|
```javascript |
||||||
|
{ |
||||||
|
"type": "FeatureCollection", |
||||||
|
"features": [ |
||||||
|
{ |
||||||
|
"type": "Feature", |
||||||
|
"geometry": { |
||||||
|
"type": "Point", |
||||||
|
"coordinates": [ |
||||||
|
-82.9207, |
||||||
|
34.36094 |
||||||
|
] |
||||||
|
}, |
||||||
|
"properties": { |
||||||
|
"name": "Sanders Grove Cemetery", |
||||||
|
"admin0": "United States", |
||||||
|
"admin1": "Georgia", |
||||||
|
"admin2": "Hart County", |
||||||
|
"text": "Sanders Grove Cemetery, Hart County, United States" |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
"type": "Feature", |
||||||
|
"geometry": { |
||||||
|
"type": "Point", |
||||||
|
"coordinates": [ |
||||||
|
-83.94213, |
||||||
|
33.32262 |
||||||
|
] |
||||||
|
}, |
||||||
|
"properties": { |
||||||
|
"name": "Etheredge Cemetery", |
||||||
|
"admin0": "United States", |
||||||
|
"admin1": "Georgia", |
||||||
|
"admin2": "Butts County", |
||||||
|
"text": "Etheredge Cemetery, Butts County, United States" |
||||||
|
} |
||||||
|
} |
||||||
|
], |
||||||
|
"date": 1413493372681 |
||||||
|
} |
||||||
|
``` |
||||||
|
|
||||||
|
## Tests |
||||||
|
|
||||||
|
### âś“ valid response |
||||||
|
```javascript |
||||||
|
now = new Date().getTime() |
||||||
|
should.exist json |
||||||
|
should.not.exist json.error |
||||||
|
json.date.should.be.within now-5000, now+5000 |
||||||
|
``` |
||||||
|
|
||||||
|
### âś“ valid geojson |
||||||
|
```javascript |
||||||
|
json.type.should.equal 'FeatureCollection' |
||||||
|
json.features.should.be.instanceof Array |
||||||
|
``` |
||||||
|
|
||||||
|
### âś“ 200 ok |
||||||
|
```javascript |
||||||
|
response.statusCode.should.equal 200 |
||||||
|
``` |
||||||
|
|
@ -0,0 +1,80 @@ |
|||||||
|
# valid get query |
||||||
|
|
||||||
|
*Generated: Thu Oct 16 2014 17:02:52 GMT-0400 (EDT)* |
||||||
|
## Request |
||||||
|
```javascript |
||||||
|
{ |
||||||
|
"protocol": "http:", |
||||||
|
"host": "localhost", |
||||||
|
"method": "GET", |
||||||
|
"port": 3100, |
||||||
|
"path": "/get?id=geoname:4221195" |
||||||
|
} |
||||||
|
``` |
||||||
|
|
||||||
|
## Response |
||||||
|
```javascript |
||||||
|
Status: 200 |
||||||
|
{ |
||||||
|
"x-powered-by": "mapzen", |
||||||
|
"charset": "utf8", |
||||||
|
"cache-control": "public,max-age=60", |
||||||
|
"server": "Pelias/0.0.0", |
||||||
|
"access-control-allow-origin": "*", |
||||||
|
"access-control-allow-methods": "GET", |
||||||
|
"access-control-allow-headers": "X-Requested-With,content-type", |
||||||
|
"access-control-allow-credentials": "true", |
||||||
|
"content-type": "application/json; charset=utf-8", |
||||||
|
"content-length": "317", |
||||||
|
"etag": "W/\"13d-bc388729\"", |
||||||
|
"date": "Thu, 16 Oct 2014 21:02:52 GMT", |
||||||
|
"connection": "close" |
||||||
|
} |
||||||
|
``` |
||||||
|
```javascript |
||||||
|
{ |
||||||
|
"type": "FeatureCollection", |
||||||
|
"features": [ |
||||||
|
{ |
||||||
|
"type": "Feature", |
||||||
|
"geometry": { |
||||||
|
"type": "Point", |
||||||
|
"coordinates": [ |
||||||
|
-82.9207, |
||||||
|
34.36094 |
||||||
|
] |
||||||
|
}, |
||||||
|
"properties": { |
||||||
|
"name": "Sanders Grove Cemetery", |
||||||
|
"admin0": "United States", |
||||||
|
"admin1": "Georgia", |
||||||
|
"admin2": "Hart County", |
||||||
|
"text": "Sanders Grove Cemetery, Hart County, United States" |
||||||
|
} |
||||||
|
} |
||||||
|
], |
||||||
|
"date": 1413493372842 |
||||||
|
} |
||||||
|
``` |
||||||
|
|
||||||
|
## Tests |
||||||
|
|
||||||
|
### âś“ valid geojson |
||||||
|
```javascript |
||||||
|
json.type.should.equal 'FeatureCollection' |
||||||
|
json.features.should.be.instanceof Array |
||||||
|
``` |
||||||
|
|
||||||
|
### âś“ 200 ok |
||||||
|
```javascript |
||||||
|
response.statusCode.should.equal 200 |
||||||
|
``` |
||||||
|
|
||||||
|
### âś“ valid response |
||||||
|
```javascript |
||||||
|
now = new Date().getTime() |
||||||
|
should.exist json |
||||||
|
should.not.exist json.error |
||||||
|
json.date.should.be.within now-5000, now+5000 |
||||||
|
``` |
||||||
|
|
@ -0,0 +1,73 @@ |
|||||||
|
// validate inputs, convert types and apply defaults
|
||||||
|
// id generally looks like 'geoname:4163334' (type:id)
|
||||||
|
// so, both type and id are required fields.
|
||||||
|
|
||||||
|
function sanitize( req ){ |
||||||
|
|
||||||
|
req.clean = req.clean || {}; |
||||||
|
var params = req.query; |
||||||
|
var indeces = require('../query/indeces'); |
||||||
|
var delim = ':'; |
||||||
|
|
||||||
|
// ensure params is a valid object
|
||||||
|
if( Object.prototype.toString.call( params ) !== '[object Object]' ){ |
||||||
|
params = {}; |
||||||
|
} |
||||||
|
|
||||||
|
var errormessage = function(fieldname, message) { |
||||||
|
return { |
||||||
|
'error': true, |
||||||
|
'message': message || ('invalid param \''+ fieldname + '\': text length, must be >0') |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
if(('string' === typeof params.id && !params.id.length) || params.id === undefined){ |
||||||
|
return errormessage('id'); |
||||||
|
} |
||||||
|
|
||||||
|
if( params && params.id && params.id.length ){ |
||||||
|
req.clean.ids = []; |
||||||
|
params.ids = Array.isArray(params.id) ? params.id : [params.id]; |
||||||
|
|
||||||
|
// de-dupe
|
||||||
|
params.ids = params.ids.filter(function(item, pos) { |
||||||
|
return params.ids.indexOf(item) == pos; |
||||||
|
}); |
||||||
|
|
||||||
|
for (var i=0; i<params.ids.length; i++) { |
||||||
|
var thisparam = params.ids[i]; |
||||||
|
|
||||||
|
// basic format/ presence of ':'
|
||||||
|
if(thisparam.indexOf(delim) === -1) { |
||||||
|
return errormessage(null, 'invalid: must be of the format type:id for ex: \'geoname:4163334\''); |
||||||
|
} |
||||||
|
|
||||||
|
var param = thisparam.split(delim); |
||||||
|
var type= param[0]; |
||||||
|
var id = param[1]; |
||||||
|
|
||||||
|
// id text
|
||||||
|
if('string' !== typeof id || !id.length){ |
||||||
|
return errormessage(thisparam); |
||||||
|
} |
||||||
|
// type text
|
||||||
|
if('string' !== typeof type || !type.length){ |
||||||
|
return errormessage(thisparam); |
||||||
|
} |
||||||
|
// type text must be one of the indeces
|
||||||
|
if(indeces.indexOf(type) == -1){ |
||||||
|
return errormessage('type', type + ' is invalid. It must be one of these values - [' + indeces.join(", ") + ']'); |
||||||
|
} |
||||||
|
req.clean.ids.push({ |
||||||
|
id: id, |
||||||
|
type: type |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return { 'error': false }; |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
// export function
|
||||||
|
module.exports = sanitize; |
@ -0,0 +1,23 @@ |
|||||||
|
|
||||||
|
var logger = require('../src/logger'), |
||||||
|
_sanitize = require('../sanitiser/_sanitize'), |
||||||
|
sanitizers = { |
||||||
|
id: require('../sanitiser/_id') |
||||||
|
}; |
||||||
|
|
||||||
|
var sanitize = function(req, cb) { _sanitize(req, sanitizers, cb); } |
||||||
|
|
||||||
|
// export sanitize for testing
|
||||||
|
module.exports.sanitize = sanitize; |
||||||
|
|
||||||
|
// middleware
|
||||||
|
module.exports.middleware = function( req, res, next ){ |
||||||
|
sanitize( req, function( err, clean ){ |
||||||
|
if( err ){ |
||||||
|
res.status(400); // 400 Bad Request
|
||||||
|
return next(err); |
||||||
|
} |
||||||
|
req.clean = clean; |
||||||
|
next(); |
||||||
|
}); |
||||||
|
}; |
@ -0,0 +1,16 @@ |
|||||||
|
|
||||||
|
#> valid doc query |
||||||
|
path: '/doc?id=geoname:4221195&id=geoname:4193595' |
||||||
|
|
||||||
|
#? 200 ok |
||||||
|
response.statusCode.should.equal 200 |
||||||
|
|
||||||
|
#? valid response |
||||||
|
now = new Date().getTime() |
||||||
|
should.exist json |
||||||
|
should.not.exist json.error |
||||||
|
json.date.should.be.within now-5000, now+5000 |
||||||
|
|
||||||
|
#? valid geojson |
||||||
|
json.type.should.equal 'FeatureCollection' |
||||||
|
json.features.should.be.instanceof Array |
@ -0,0 +1,16 @@ |
|||||||
|
|
||||||
|
#> valid doc query |
||||||
|
path: '/doc?id=geoname:4221195' |
||||||
|
|
||||||
|
#? 200 ok |
||||||
|
response.statusCode.should.equal 200 |
||||||
|
|
||||||
|
#? valid response |
||||||
|
now = new Date().getTime() |
||||||
|
should.exist json |
||||||
|
should.not.exist json.error |
||||||
|
json.date.should.be.within now-5000, now+5000 |
||||||
|
|
||||||
|
#? valid geojson |
||||||
|
json.type.should.equal 'FeatureCollection' |
||||||
|
json.features.should.be.instanceof Array |
@ -0,0 +1,159 @@ |
|||||||
|
|
||||||
|
var doc = require('../../../sanitiser/doc'), |
||||||
|
_sanitize = doc.sanitize, |
||||||
|
middleware = doc.middleware, |
||||||
|
indeces = require('../../../query/indeces'), |
||||||
|
delimiter = ':', |
||||||
|
defaultLengthError = function(input) { return 'invalid param \''+ input + '\': text length, must be >0' }, |
||||||
|
defaultFormatError = 'invalid: must be of the format type:id for ex: \'geoname:4163334\'', |
||||||
|
defaultError = 'invalid param \'id\': text length, must be >0', |
||||||
|
defaultMissingTypeError = function(input) {
|
||||||
|
var type = input.split(delimiter)[0]; |
||||||
|
return type + ' is invalid. It must be one of these values - [' + indeces.join(", ") + ']'}, |
||||||
|
defaultClean = { ids: [ { id: '123', type: 'geoname' } ] }, |
||||||
|
sanitize = function(query, cb) { _sanitize({'query':query}, cb); }, |
||||||
|
inputs = { |
||||||
|
valid: [ 'geoname:1', 'osmnode:2', 'admin0:53', 'osmway:44', 'geoname:5' ], |
||||||
|
invalid: [ ':', '', '::', 'geoname:', ':234', 'gibberish:23' ] |
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.tests = {}; |
||||||
|
|
||||||
|
module.exports.tests.interface = function(test, common) { |
||||||
|
test('sanitize interface', function(t) { |
||||||
|
t.equal(typeof sanitize, 'function', 'sanitize is a function'); |
||||||
|
t.equal(sanitize.length, 2, 'sanitize interface'); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
test('middleware interface', function(t) { |
||||||
|
t.equal(typeof middleware, 'function', 'middleware is a function'); |
||||||
|
t.equal(middleware.length, 3, 'sanitizee has a valid middleware'); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.tests.sanitize_id = function(test, common) { |
||||||
|
test('invalid input', function(t) { |
||||||
|
inputs.invalid.forEach( function( input ){ |
||||||
|
sanitize({ id: input }, function( err, clean ){ |
||||||
|
switch (err) { |
||||||
|
case defaultError: |
||||||
|
t.equal(err, defaultError, input + ' is invalid input'); break; |
||||||
|
case defaultLengthError(input): |
||||||
|
t.equal(err, defaultLengthError(input), input + ' is invalid (missing id/type)'); break; |
||||||
|
case defaultFormatError: |
||||||
|
t.equal(err, defaultFormatError, input + ' is invalid (invalid format)'); break; |
||||||
|
case defaultMissingTypeError(input): |
||||||
|
t.equal(err, defaultMissingTypeError(input), input + ' is an unknown type'); break; |
||||||
|
default: break; |
||||||
|
} |
||||||
|
t.equal(clean, undefined, 'clean not set'); |
||||||
|
}); |
||||||
|
}); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
|
||||||
|
test('valid input', function(t) { |
||||||
|
inputs.valid.forEach( function( input ){ |
||||||
|
var input_parts = input.split(delimiter); |
||||||
|
var expected = { ids: [ { id: input_parts[1], type: input_parts[0] } ] }; |
||||||
|
sanitize({ id: input }, function( err, clean ){ |
||||||
|
t.equal(err, undefined, 'no error (' + input + ')' ); |
||||||
|
t.deepEqual(clean, expected, 'clean set correctly (' + input + ')'); |
||||||
|
}); |
||||||
|
}); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
|
||||||
|
module.exports.tests.sanitize_ids = function(test, common) { |
||||||
|
test('invalid input', function(t) { |
||||||
|
sanitize({ id: inputs.invalid }, function( err, clean ){ |
||||||
|
var input = inputs.invalid[0]; // since it breaks on the first invalid element
|
||||||
|
switch (err) { |
||||||
|
case defaultError: |
||||||
|
t.equal(err, defaultError, input + ' is invalid input'); break; |
||||||
|
case defaultLengthError(input): |
||||||
|
t.equal(err, defaultLengthError(input), input + ' is invalid (missing id/type)'); break; |
||||||
|
case defaultFormatError: |
||||||
|
t.equal(err, defaultFormatError, input + ' is invalid (invalid format)'); break; |
||||||
|
case defaultMissingTypeError(input): |
||||||
|
t.equal(err, defaultMissingTypeError(input), input + ' is an unknown type'); break; |
||||||
|
default: break; |
||||||
|
} |
||||||
|
t.equal(clean, undefined, 'clean not set'); |
||||||
|
}); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
|
||||||
|
test('valid input', function(t) { |
||||||
|
var expected={}; |
||||||
|
expected.ids = []; |
||||||
|
inputs.valid.forEach( function( input ){ |
||||||
|
var input_parts = input.split(delimiter); |
||||||
|
expected.ids.push({ id: input_parts[1], type: input_parts[0] }); |
||||||
|
}); |
||||||
|
sanitize({ id: inputs.valid }, function( err, clean ){ |
||||||
|
t.equal(err, undefined, 'no error' ); |
||||||
|
t.deepEqual(clean, expected, 'clean set correctly'); |
||||||
|
}); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.tests.de_dupe = function(test, common) { |
||||||
|
var expected = { ids: [ { id: '1', type: 'geoname' }, { id: '2', type: 'osmnode' } ] }; |
||||||
|
test('duplicate ids', function(t) { |
||||||
|
sanitize( { id: ['geoname:1', 'osmnode:2', 'geoname:1'] }, function( err, clean ){ |
||||||
|
t.equal(err, undefined, 'no error' ); |
||||||
|
t.deepEqual(clean, expected, 'clean set correctly'); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.tests.invalid_params = function(test, common) { |
||||||
|
test('invalid params', function(t) { |
||||||
|
sanitize( undefined, function( err, clean ){ |
||||||
|
t.equal(err, defaultError, 'handle invalid params gracefully'); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.tests.middleware_failure = function(test, common) { |
||||||
|
test('middleware failure', function(t) { |
||||||
|
var res = { status: function( code ){ |
||||||
|
t.equal(code, 400, 'status set'); |
||||||
|
}}; |
||||||
|
var next = function( message ){ |
||||||
|
t.equal(message, defaultError); |
||||||
|
t.end(); |
||||||
|
}; |
||||||
|
middleware( {}, res, next ); |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.tests.middleware_success = function(test, common) { |
||||||
|
test('middleware success', function(t) { |
||||||
|
var req = { query: { id: 'geoname' + delimiter + '123' }}; |
||||||
|
var next = function( message ){ |
||||||
|
t.equal(message, undefined, 'no error message set'); |
||||||
|
t.deepEqual(req.clean, defaultClean); |
||||||
|
t.end(); |
||||||
|
}; |
||||||
|
middleware( req, undefined, next ); |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.all = function (tape, common) { |
||||||
|
|
||||||
|
function test(name, testFunction) { |
||||||
|
return tape('SANTIZE /doc ' + name, testFunction); |
||||||
|
} |
||||||
|
|
||||||
|
for( var testCase in module.exports.tests ){ |
||||||
|
module.exports.tests[testCase](test, common); |
||||||
|
} |
||||||
|
}; |
Loading…
Reference in new issue