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.
72 lines
1.5 KiB
72 lines
1.5 KiB
10 years ago
|
|
||
10 years ago
|
var service = {
|
||
|
suggest: require('../service/suggest'),
|
||
|
mget: require('../service/mget')
|
||
|
};
|
||
|
var geojsonify = require('../helper/geojsonify').search;
|
||
10 years ago
|
|
||
|
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 )
|
||
|
};
|
||
|
|
||
10 years ago
|
// responder
|
||
|
function reply( docs ){
|
||
|
|
||
10 years ago
|
// convert docs to geojson
|
||
|
var geojson = geojsonify( docs );
|
||
|
|
||
|
// response envelope
|
||
|
geojson.date = new Date().getTime();
|
||
|
|
||
|
// respond
|
||
|
return res.status(200).json( geojson );
|
||
10 years ago
|
}
|
||
|
|
||
|
// query backend
|
||
|
service.suggest( backend, cmd, function( err, suggested ){
|
||
|
|
||
|
// error handler
|
||
|
if( err ){ return next( err ); }
|
||
|
|
||
|
// no documents suggested, return empty array to avoid ActionRequestValidationException
|
||
|
if( !Array.isArray( suggested ) || !suggested.length ){
|
||
|
return reply([]);
|
||
|
}
|
||
|
|
||
|
// map suggester output to mget query
|
||
|
var query = suggested.map( function( doc ) {
|
||
|
var idParts = doc.text.split(':');
|
||
|
return {
|
||
|
_index: 'pelias',
|
||
|
_type: idParts[0],
|
||
|
_id: idParts[1]
|
||
|
};
|
||
|
});
|
||
|
|
||
|
service.mget( backend, query, function( err, docs ){
|
||
|
|
||
|
// error handler
|
||
|
if( err ){ return next( err ); }
|
||
|
|
||
|
// reply
|
||
|
return reply( docs );
|
||
|
|
||
|
});
|
||
10 years ago
|
});
|
||
|
|
||
|
}
|
||
|
|
||
|
return controller;
|
||
|
}
|
||
|
|
||
|
module.exports = setup;
|