diff --git a/src/routes/document.rs b/src/routes/document.rs index 0eb2bd463..43d88e4b9 100644 --- a/src/routes/document.rs +++ b/src/routes/document.rs @@ -63,8 +63,7 @@ async fn get_document( Ok(HttpResponse::Ok().body(json)) } Err(e) => { - error!("{}", e); - unimplemented!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } @@ -83,8 +82,7 @@ async fn delete_document( Ok(HttpResponse::Ok().body(json)) } Err(e) => { - error!("{}", e); - unimplemented!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } @@ -120,7 +118,9 @@ async fn get_all_documents( let json = serde_json::to_string(&docs).unwrap(); Ok(HttpResponse::Ok().body(json)) } - Err(_) => { todo!() } + Err(e) => { + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) + } } } @@ -158,8 +158,7 @@ async fn add_documents_json( Ok(response) } Err(e) => { - error!("{}", e); - todo!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } @@ -216,8 +215,7 @@ async fn update_documents( Ok(response) } Err(e) => { - error!("{}", e); - todo!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } @@ -242,8 +240,7 @@ async fn delete_documents( Ok(HttpResponse::Ok().body(json)) } Err(e) => { - error!("{}", e); - unimplemented!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } @@ -259,8 +256,7 @@ async fn clear_all_documents( Ok(HttpResponse::Ok().body(json)) } Err(e) => { - error!("{}", e); - unimplemented!(); + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } diff --git a/src/routes/index.rs b/src/routes/index.rs index 151202a88..62684ddaa 100644 --- a/src/routes/index.rs +++ b/src/routes/index.rs @@ -1,7 +1,6 @@ use actix_web::{delete, get, post, put}; use actix_web::{web, HttpResponse}; use chrono::{DateTime, Utc}; -use log::error; use serde::{Deserialize, Serialize}; use crate::Data; @@ -28,8 +27,7 @@ async fn list_indexes(data: web::Data) -> Result { - error!("error listing indexes: {}", e); - unimplemented!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } @@ -45,7 +43,8 @@ async fn get_index( Ok(HttpResponse::Ok().body(json)) } None => { - unimplemented!() + let e = format!("Index {:?} doesn't exist.", path.index_uid); + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } @@ -68,8 +67,7 @@ async fn create_index( Ok(HttpResponse::Ok().body(json)) } Err(e) => { - error!("error creating index: {}", e); - unimplemented!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } @@ -102,7 +100,9 @@ async fn update_index( let json = serde_json::to_string(&meta).unwrap(); Ok(HttpResponse::Ok().body(json)) } - Err(_) => { todo!() } + Err(e) => { + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) + } } } @@ -114,8 +114,7 @@ async fn delete_index( match data.delete_index(path.index_uid.clone()).await { Ok(_) => Ok(HttpResponse::Ok().finish()), Err(e) => { - error!("{}", e); - todo!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } @@ -141,11 +140,11 @@ async fn get_update_status( Ok(HttpResponse::Ok().body(json)) } Ok(None) => { - todo!() + let e = format!("udpate {} for index {:?} doesn't exists.", path.update_id, path.index_uid); + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } Err(e) => { - error!("{}", e); - todo!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } @@ -162,8 +161,7 @@ async fn get_all_updates_status( Ok(HttpResponse::Ok().body(json)) } Err(e) => { - error!("{}", e); - todo!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } } diff --git a/src/routes/search.rs b/src/routes/search.rs index 967065687..715d40426 100644 --- a/src/routes/search.rs +++ b/src/routes/search.rs @@ -1,5 +1,4 @@ use actix_web::{get, post, web, HttpResponse}; -use log::error; use crate::error::ResponseError; use crate::helpers::Authentication; @@ -49,8 +48,7 @@ async fn search_with_post( Ok(HttpResponse::Ok().body(docs)) } Err(e) => { - error!("{}", e); - todo!() + Ok(HttpResponse::BadRequest().body(serde_json::json!({ "error": e.to_string() }))) } } }