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.
56 lines
1.1 KiB
56 lines
1.1 KiB
10 years ago
|
|
||
|
var geojsonify = require('../helper/geojsonify').search;
|
||
|
|
||
|
function setup( backend ){
|
||
|
|
||
|
// allow overriding of dependencies
|
||
|
backend = backend || require('../src/backend');
|
||
10 years ago
|
backend = new backend();
|
||
|
|
||
10 years ago
|
function controller( req, res, next ){
|
||
|
|
||
10 years ago
|
var docs = req.clean.ids.map( function(id) {
|
||
|
return {
|
||
|
_index: 'pelias',
|
||
|
_type: id.type,
|
||
|
_id: id.id
|
||
|
};
|
||
|
});
|
||
|
|
||
10 years ago
|
// backend command
|
||
|
var cmd = {
|
||
10 years ago
|
body: {
|
||
|
docs: docs
|
||
|
}
|
||
10 years ago
|
};
|
||
|
|
||
10 years ago
|
// query new backend
|
||
|
backend.client.mget( cmd, function( err, data ){
|
||
|
|
||
10 years ago
|
var docs = [];
|
||
|
// handle backend errors
|
||
|
if( err ){ return next( err ); }
|
||
|
|
||
10 years ago
|
if( data && data.docs && Array.isArray(data.docs) && data.docs.length ){
|
||
|
docs = data.docs.map( function( doc ){
|
||
|
return doc._source;
|
||
|
});
|
||
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 );
|
||
|
});
|
||
|
|
||
|
}
|
||
|
|
||
|
return controller;
|
||
|
}
|
||
|
|
||
|
module.exports = setup;
|