mirror of https://github.com/pelias/api.git
Peter Johnson
10 years ago
2 changed files with 49 additions and 20 deletions
@ -0,0 +1,43 @@
|
||||
|
||||
/** |
||||
|
||||
query must be an array of hashes, structured like so: |
||||
|
||||
{ |
||||
_index: 'myindex', |
||||
_type: 'mytype', |
||||
_id: 'myid' |
||||
} |
||||
|
||||
**/ |
||||
|
||||
function service( backend, query, cb ){ |
||||
|
||||
// backend command
|
||||
var cmd = { |
||||
body: { |
||||
docs: query |
||||
} |
||||
}; |
||||
|
||||
// query new backend
|
||||
backend().client.mget( cmd, function( err, data ){ |
||||
|
||||
// handle backend errors
|
||||
if( err ){ return cb( err ); } |
||||
|
||||
// map returned documents
|
||||
var docs = []; |
||||
if( data && Array.isArray(data.docs) ){ |
||||
docs = data.docs.map( function( doc ){ |
||||
return doc._source; |
||||
}); |
||||
} |
||||
|
||||
// fire callback
|
||||
return cb( null, docs ); |
||||
}); |
||||
|
||||
} |
||||
|
||||
module.exports = service; |
Loading…
Reference in new issue