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.
41 lines
848 B
41 lines
848 B
|
|
function setup( backend, query ){ |
|
|
|
// allow overriding of dependencies |
|
backend = backend || require('../src/backend'); |
|
query = query || require('../query/suggest'); |
|
|
|
function controller( req, res, next ){ |
|
|
|
// backend command |
|
var cmd = { |
|
index: 'pelias', |
|
body: query( req.clean ) |
|
}; |
|
|
|
// query backend |
|
backend().client.suggest( cmd, function( err, data ){ |
|
|
|
var docs = []; |
|
|
|
// handle backend errors |
|
if( err ){ return next( err ); } |
|
|
|
// map response to a valid FeatureCollection |
|
if( data && Array.isArray( data.pelias ) && data.pelias.length ){ |
|
docs = data['pelias'][0].options || []; |
|
} |
|
|
|
// respond |
|
return res.status(200).json({ |
|
date: new Date().getTime(), |
|
body: docs |
|
}); |
|
}); |
|
|
|
} |
|
|
|
return controller; |
|
} |
|
|
|
module.exports = setup; |