MeiliSearch/meilisearch-http/src/routes/document.rs

266 lines
7.9 KiB
Rust
Raw Normal View History

2020-12-23 16:12:37 +01:00
use actix_web::web::Payload;
2020-12-12 13:32:06 +01:00
use actix_web::{delete, get, post, put};
use actix_web::{web, HttpResponse};
use indexmap::IndexMap;
2020-12-23 16:12:37 +01:00
use log::error;
2021-02-26 17:14:11 +01:00
use milli::update::{IndexDocumentsMethod, UpdateFormat};
2020-12-12 13:32:06 +01:00
use serde::Deserialize;
2020-12-23 16:12:37 +01:00
use serde_json::Value;
2020-12-12 13:32:06 +01:00
2020-12-22 14:02:41 +01:00
use crate::error::ResponseError;
2020-12-12 13:32:06 +01:00
use crate::helpers::Authentication;
2020-12-22 14:02:41 +01:00
use crate::routes::IndexParam;
2021-03-15 18:11:10 +01:00
use crate::Data;
2020-12-12 13:32:06 +01:00
2021-02-10 17:08:37 +01:00
const DEFAULT_RETRIEVE_DOCUMENTS_OFFSET: usize = 0;
const DEFAULT_RETRIEVE_DOCUMENTS_LIMIT: usize = 20;
2020-12-23 16:12:37 +01:00
macro_rules! guard_content_type {
($fn_name:ident, $guard_value:literal) => {
2021-03-16 12:04:32 +01:00
#[allow(dead_code)]
2020-12-23 16:12:37 +01:00
fn $fn_name(head: &actix_web::dev::RequestHead) -> bool {
if let Some(content_type) = head.headers.get("Content-Type") {
2021-03-15 18:11:10 +01:00
content_type
.to_str()
.map(|v| v.contains($guard_value))
.unwrap_or(false)
2020-12-23 16:12:37 +01:00
} else {
false
}
}
};
}
guard_content_type!(guard_json, "application/json");
2020-12-12 13:32:06 +01:00
type Document = IndexMap<String, Value>;
#[derive(Deserialize)]
struct DocumentParam {
2021-02-13 10:44:20 +01:00
index_uid: String,
document_id: String,
2020-12-12 13:32:06 +01:00
}
pub fn services(cfg: &mut web::ServiceConfig) {
cfg.service(get_document)
.service(delete_document)
.service(get_all_documents)
2021-03-16 12:04:32 +01:00
.service(add_documents)
2020-12-12 13:32:06 +01:00
.service(update_documents)
.service(delete_documents)
.service(clear_all_documents);
}
#[get(
"/indexes/{index_uid}/documents/{document_id}",
wrap = "Authentication::Public"
)]
async fn get_document(
2021-02-11 10:59:23 +01:00
data: web::Data<Data>,
path: web::Path<DocumentParam>,
2020-12-12 13:32:06 +01:00
) -> Result<HttpResponse, ResponseError> {
2021-03-04 15:09:00 +01:00
let index = path.index_uid.clone();
let id = path.document_id.clone();
2021-03-15 18:11:10 +01:00
match data
.retrieve_document(index, id, None as Option<Vec<String>>)
.await
{
2021-03-16 16:09:14 +01:00
Ok(document) => Ok(HttpResponse::Ok().json(document)),
2021-03-04 15:09:00 +01:00
Err(e) => {
2021-03-16 16:09:14 +01:00
Ok(HttpResponse::BadRequest().json(serde_json::json!({ "error": e.to_string() })))
2021-03-04 15:09:00 +01:00
}
}
2020-12-12 13:32:06 +01:00
}
#[delete(
"/indexes/{index_uid}/documents/{document_id}",
wrap = "Authentication::Private"
)]
async fn delete_document(
2021-02-13 10:44:20 +01:00
data: web::Data<Data>,
path: web::Path<DocumentParam>,
2020-12-12 13:32:06 +01:00
) -> Result<HttpResponse, ResponseError> {
2021-03-15 18:11:10 +01:00
match data
.delete_documents(path.index_uid.clone(), vec![path.document_id.clone()])
.await
{
2021-04-14 17:53:12 +02:00
Ok(update_status) => Ok(
HttpResponse::Accepted().json(serde_json::json!({ "updateId": update_status.id() }))
),
2021-02-13 10:44:20 +01:00
Err(e) => {
2021-03-16 16:09:14 +01:00
Ok(HttpResponse::BadRequest().json(serde_json::json!({ "error": e.to_string() })))
2021-02-13 10:44:20 +01:00
}
}
2020-12-12 13:32:06 +01:00
}
#[derive(Deserialize)]
#[serde(rename_all = "camelCase", deny_unknown_fields)]
struct BrowseQuery {
2021-02-10 17:08:37 +01:00
offset: Option<usize>,
limit: Option<usize>,
attributes_to_retrieve: Option<String>,
2020-12-12 13:32:06 +01:00
}
#[get("/indexes/{index_uid}/documents", wrap = "Authentication::Public")]
async fn get_all_documents(
2021-02-10 17:08:37 +01:00
data: web::Data<Data>,
path: web::Path<IndexParam>,
params: web::Query<BrowseQuery>,
2020-12-12 13:32:06 +01:00
) -> Result<HttpResponse, ResponseError> {
2021-04-22 10:14:29 +02:00
let attributes_to_retrieve = params.attributes_to_retrieve.as_ref().and_then(|attrs| {
2021-04-17 17:33:36 +02:00
let mut names = Vec::new();
for name in attrs.split(',').map(String::from) {
if name == "*" {
2021-04-22 10:14:29 +02:00
return None;
2021-04-17 17:33:36 +02:00
}
names.push(name);
}
Some(names)
});
2021-02-10 17:08:37 +01:00
2021-03-15 18:11:10 +01:00
match data
.retrieve_documents(
path.index_uid.clone(),
params.offset.unwrap_or(DEFAULT_RETRIEVE_DOCUMENTS_OFFSET),
params.limit.unwrap_or(DEFAULT_RETRIEVE_DOCUMENTS_LIMIT),
attributes_to_retrieve,
)
.await
{
Ok(documents) => Ok(HttpResponse::Ok().json(documents)),
2021-02-16 15:26:13 +01:00
Err(e) => {
2021-03-16 16:09:14 +01:00
Ok(HttpResponse::BadRequest().json(serde_json::json!({ "error": e.to_string() })))
2021-02-16 15:26:13 +01:00
}
2021-02-10 17:08:37 +01:00
}
2020-12-12 13:32:06 +01:00
}
#[derive(Deserialize)]
#[serde(rename_all = "camelCase", deny_unknown_fields)]
struct UpdateDocumentsQuery {
2021-02-13 12:22:59 +01:00
primary_key: Option<String>,
2020-12-12 13:32:06 +01:00
}
2020-12-23 16:12:37 +01:00
/// Route used when the payload type is "application/json"
/// Used to add or replace documents
2021-03-16 16:09:14 +01:00
#[post("/indexes/{index_uid}/documents", wrap = "Authentication::Private")]
2021-03-16 12:04:32 +01:00
async fn add_documents(
2020-12-23 13:52:28 +01:00
data: web::Data<Data>,
2020-12-23 16:12:37 +01:00
path: web::Path<IndexParam>,
2021-02-13 12:22:59 +01:00
params: web::Query<UpdateDocumentsQuery>,
2020-12-23 16:12:37 +01:00
body: Payload,
) -> Result<HttpResponse, ResponseError> {
2021-02-26 17:14:11 +01:00
let addition_result = data
.add_documents(
path.into_inner().index_uid,
IndexDocumentsMethod::ReplaceDocuments,
UpdateFormat::Json,
body,
params.primary_key.clone(),
2021-03-15 18:11:10 +01:00
)
.await;
2021-02-26 17:14:11 +01:00
match addition_result {
2021-04-14 17:53:12 +02:00
Ok(update_status) => Ok(
HttpResponse::Accepted().json(serde_json::json!({ "updateId": update_status.id() }))
),
2021-02-26 17:14:11 +01:00
Err(e) => {
2021-03-16 16:09:14 +01:00
Ok(HttpResponse::BadRequest().json(serde_json::json!({ "error": e.to_string() })))
2021-02-26 17:14:11 +01:00
}
}
2020-12-23 16:12:37 +01:00
}
2021-02-13 12:22:59 +01:00
/// Default route for adding documents, this should return an error and redirect to the documentation
2020-12-23 16:12:37 +01:00
#[post("/indexes/{index_uid}/documents", wrap = "Authentication::Private")]
async fn add_documents_default(
_data: web::Data<Data>,
2020-12-22 14:02:41 +01:00
_path: web::Path<IndexParam>,
_params: web::Query<UpdateDocumentsQuery>,
2020-12-23 16:12:37 +01:00
_body: web::Json<Vec<Document>>,
2020-12-12 13:32:06 +01:00
) -> Result<HttpResponse, ResponseError> {
2021-02-04 12:34:12 +01:00
error!("Unknown document type");
2020-12-12 16:04:37 +01:00
todo!()
2020-12-12 13:32:06 +01:00
}
2021-02-13 12:22:59 +01:00
/// Default route for adding documents, this should return an error and redirect to the documentation
2020-12-12 13:32:06 +01:00
#[put("/indexes/{index_uid}/documents", wrap = "Authentication::Private")]
2021-02-13 12:22:59 +01:00
async fn update_documents_default(
_data: web::Data<Data>,
_path: web::Path<IndexParam>,
_params: web::Query<UpdateDocumentsQuery>,
_body: web::Json<Vec<Document>>,
) -> Result<HttpResponse, ResponseError> {
error!("Unknown document type");
todo!()
}
2021-03-16 16:09:14 +01:00
#[put("/indexes/{index_uid}/documents", wrap = "Authentication::Private")]
2020-12-12 13:32:06 +01:00
async fn update_documents(
data: web::Data<Data>,
path: web::Path<IndexParam>,
params: web::Query<UpdateDocumentsQuery>,
2021-02-13 12:22:59 +01:00
body: web::Payload,
2020-12-12 13:32:06 +01:00
) -> Result<HttpResponse, ResponseError> {
2021-03-04 15:10:58 +01:00
let addition_result = data
.add_documents(
path.into_inner().index_uid,
IndexDocumentsMethod::UpdateDocuments,
UpdateFormat::Json,
body,
params.primary_key.clone(),
2021-03-15 18:11:10 +01:00
)
.await;
2021-03-04 15:10:58 +01:00
match addition_result {
Ok(update) => {
Ok(HttpResponse::Accepted().json(serde_json::json!({ "updateId": update.id() })))
}
2021-03-04 15:10:58 +01:00
Err(e) => {
2021-03-16 16:09:14 +01:00
Ok(HttpResponse::BadRequest().json(serde_json::json!({ "error": e.to_string() })))
2021-03-04 15:10:58 +01:00
}
}
2020-12-12 13:32:06 +01:00
}
#[post(
"/indexes/{index_uid}/documents/delete-batch",
wrap = "Authentication::Private"
)]
async fn delete_documents(
2021-02-12 17:39:14 +01:00
data: web::Data<Data>,
path: web::Path<IndexParam>,
body: web::Json<Vec<Value>>,
2020-12-12 13:32:06 +01:00
) -> Result<HttpResponse, ResponseError> {
2021-03-04 15:59:18 +01:00
let ids = body
.iter()
2021-03-15 18:11:10 +01:00
.map(|v| {
v.as_str()
.map(String::from)
.unwrap_or_else(|| v.to_string())
})
2021-03-04 15:59:18 +01:00
.collect();
2021-02-12 17:39:14 +01:00
2021-03-04 15:59:18 +01:00
match data.delete_documents(path.index_uid.clone(), ids).await {
2021-04-14 17:53:12 +02:00
Ok(update_status) => Ok(
HttpResponse::Accepted().json(serde_json::json!({ "updateId": update_status.id() }))
),
2021-03-04 15:59:18 +01:00
Err(e) => {
2021-03-16 16:09:14 +01:00
Ok(HttpResponse::BadRequest().json(serde_json::json!({ "error": e.to_string() })))
2021-03-04 15:59:18 +01:00
}
}
2020-12-12 13:32:06 +01:00
}
/// delete all documents
2020-12-12 13:32:06 +01:00
#[delete("/indexes/{index_uid}/documents", wrap = "Authentication::Private")]
async fn clear_all_documents(
2021-02-11 12:03:00 +01:00
data: web::Data<Data>,
path: web::Path<IndexParam>,
2020-12-12 13:32:06 +01:00
) -> Result<HttpResponse, ResponseError> {
2021-03-04 16:04:12 +01:00
match data.clear_documents(path.index_uid.clone()).await {
2021-04-14 17:53:12 +02:00
Ok(update_status) => Ok(
HttpResponse::Accepted().json(serde_json::json!({ "updateId": update_status.id() }))
),
2021-03-04 16:04:12 +01:00
Err(e) => {
2021-03-16 16:09:14 +01:00
Ok(HttpResponse::BadRequest().json(serde_json::json!({ "error": e.to_string() })))
2021-03-04 16:04:12 +01:00
}
}
2020-12-12 13:32:06 +01:00
}