mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
Merge pull request #32 from meilisearch/http-get-one-document
Introduce a route to get one document
This commit is contained in:
commit
5a6b62e77c
2
http-ui/Cargo.lock
generated
2
http-ui/Cargo.lock
generated
@ -812,7 +812,6 @@ checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"autocfg 1.0.1",
|
"autocfg 1.0.1",
|
||||||
"hashbrown",
|
"hashbrown",
|
||||||
"serde",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -981,7 +980,6 @@ dependencies = [
|
|||||||
"grenad",
|
"grenad",
|
||||||
"heed",
|
"heed",
|
||||||
"human_format",
|
"human_format",
|
||||||
"indexmap",
|
|
||||||
"itertools",
|
"itertools",
|
||||||
"jemallocator",
|
"jemallocator",
|
||||||
"levenshtein_automata",
|
"levenshtein_automata",
|
||||||
|
@ -527,11 +527,13 @@ async fn main() -> anyhow::Result<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let disable_highlighting = opt.disable_highlighting;
|
let disable_highlighting = opt.disable_highlighting;
|
||||||
|
let index_cloned = index.clone();
|
||||||
let query_route = warp::filters::method::post()
|
let query_route = warp::filters::method::post()
|
||||||
.and(warp::path!("query"))
|
.and(warp::path!("query"))
|
||||||
.and(warp::body::json())
|
.and(warp::body::json())
|
||||||
.map(move |query: QueryBody| {
|
.map(move |query: QueryBody| {
|
||||||
let before_search = Instant::now();
|
let before_search = Instant::now();
|
||||||
|
let index = index_cloned.clone();
|
||||||
let rtxn = index.read_txn().unwrap();
|
let rtxn = index.read_txn().unwrap();
|
||||||
|
|
||||||
let mut search = index.search(&rtxn);
|
let mut search = index.search(&rtxn);
|
||||||
@ -567,6 +569,38 @@ async fn main() -> anyhow::Result<()> {
|
|||||||
.body(serde_json::to_string(&documents).unwrap())
|
.body(serde_json::to_string(&documents).unwrap())
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let index_cloned = index.clone();
|
||||||
|
let document_route = warp::filters::method::get()
|
||||||
|
.and(warp::path!("document" / String))
|
||||||
|
.map(move |id: String| {
|
||||||
|
let index = index_cloned.clone();
|
||||||
|
let rtxn = index.read_txn().unwrap();
|
||||||
|
|
||||||
|
let users_ids_documents_ids = index.users_ids_documents_ids(&rtxn).unwrap();
|
||||||
|
let fields_ids_map = index.fields_ids_map(&rtxn).unwrap();
|
||||||
|
let displayed_fields = match index.displayed_fields(&rtxn).unwrap() {
|
||||||
|
Some(fields) => Cow::Borrowed(fields),
|
||||||
|
None => Cow::Owned(fields_ids_map.iter().map(|(id, _)| id).collect()),
|
||||||
|
};
|
||||||
|
|
||||||
|
match users_ids_documents_ids.get(&id) {
|
||||||
|
Some(document_id) => {
|
||||||
|
let document_id = document_id as u32;
|
||||||
|
let (_, obkv) = index.documents(&rtxn, Some(document_id)).unwrap().pop().unwrap();
|
||||||
|
let document = obkv_to_json(&displayed_fields, &fields_ids_map, obkv).unwrap();
|
||||||
|
|
||||||
|
Response::builder()
|
||||||
|
.header("Content-Type", "application/json")
|
||||||
|
.body(serde_json::to_string(&document).unwrap())
|
||||||
|
},
|
||||||
|
None => {
|
||||||
|
Response::builder()
|
||||||
|
.status(404)
|
||||||
|
.body(format!("Document with id {:?} not found.", id))
|
||||||
|
},
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
async fn buf_stream(
|
async fn buf_stream(
|
||||||
update_store: Arc<UpdateStore<UpdateMeta, String>>,
|
update_store: Arc<UpdateStore<UpdateMeta, String>>,
|
||||||
update_status_sender: broadcast::Sender<UpdateStatus<UpdateMeta, UpdateMetaProgress, String>>,
|
update_status_sender: broadcast::Sender<UpdateStatus<UpdateMeta, UpdateMetaProgress, String>>,
|
||||||
@ -730,6 +764,7 @@ async fn main() -> anyhow::Result<()> {
|
|||||||
.or(dash_logo_white_route)
|
.or(dash_logo_white_route)
|
||||||
.or(dash_logo_black_route)
|
.or(dash_logo_black_route)
|
||||||
.or(query_route)
|
.or(query_route)
|
||||||
|
.or(document_route)
|
||||||
.or(indexing_csv_route)
|
.or(indexing_csv_route)
|
||||||
.or(indexing_json_route)
|
.or(indexing_json_route)
|
||||||
.or(indexing_json_stream_route)
|
.or(indexing_json_stream_route)
|
||||||
|
Loading…
Reference in New Issue
Block a user