2021-04-29 19:31:58 +02:00
|
|
|
use std::time::Duration;
|
|
|
|
|
2021-06-24 15:40:04 +02:00
|
|
|
use actix_web::HttpResponse;
|
2021-04-29 19:31:58 +02:00
|
|
|
use chrono::{DateTime, Utc};
|
2020-12-12 13:32:06 +01:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2021-06-21 18:42:47 +02:00
|
|
|
use crate::error::ResponseError;
|
2021-05-03 14:21:09 +02:00
|
|
|
use crate::index::{Settings, Unchecked};
|
2021-04-29 19:31:58 +02:00
|
|
|
use crate::index_controller::{UpdateMeta, UpdateResult, UpdateStatus};
|
|
|
|
|
2020-12-12 13:32:06 +01:00
|
|
|
pub mod document;
|
2021-05-31 16:03:39 +02:00
|
|
|
pub mod dump;
|
2020-12-12 13:32:06 +01:00
|
|
|
pub mod health;
|
|
|
|
pub mod index;
|
|
|
|
pub mod key;
|
|
|
|
pub mod search;
|
2021-01-01 16:59:49 +01:00
|
|
|
pub mod settings;
|
2020-12-12 13:32:06 +01:00
|
|
|
pub mod stats;
|
|
|
|
|
2021-04-29 19:31:58 +02:00
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
2021-06-17 18:51:07 +02:00
|
|
|
#[allow(clippy::large_enum_variant)]
|
2021-04-29 19:31:58 +02:00
|
|
|
#[serde(tag = "name")]
|
|
|
|
pub enum UpdateType {
|
|
|
|
ClearAll,
|
|
|
|
Customs,
|
|
|
|
DocumentsAddition {
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2021-06-15 17:39:07 +02:00
|
|
|
number: Option<usize>,
|
2021-04-29 19:31:58 +02:00
|
|
|
},
|
|
|
|
DocumentsPartial {
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2021-06-15 17:39:07 +02:00
|
|
|
number: Option<usize>,
|
2021-04-29 19:31:58 +02:00
|
|
|
},
|
|
|
|
DocumentsDeletion {
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2021-06-15 17:39:07 +02:00
|
|
|
number: Option<usize>,
|
|
|
|
},
|
|
|
|
Settings {
|
|
|
|
settings: Settings<Unchecked>,
|
2021-04-29 19:31:58 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<&UpdateStatus> for UpdateType {
|
|
|
|
fn from(other: &UpdateStatus) -> Self {
|
|
|
|
use milli::update::IndexDocumentsMethod::*;
|
|
|
|
|
|
|
|
match other.meta() {
|
|
|
|
UpdateMeta::DocumentsAddition { method, .. } => {
|
|
|
|
let number = match other {
|
|
|
|
UpdateStatus::Processed(processed) => match processed.success {
|
|
|
|
UpdateResult::DocumentsAddition(ref addition) => {
|
|
|
|
Some(addition.nb_documents)
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
},
|
|
|
|
_ => None,
|
|
|
|
};
|
|
|
|
|
|
|
|
match method {
|
|
|
|
ReplaceDocuments => UpdateType::DocumentsAddition { number },
|
|
|
|
UpdateDocuments => UpdateType::DocumentsPartial { number },
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
UpdateMeta::ClearDocuments => UpdateType::ClearAll,
|
2021-06-15 17:39:07 +02:00
|
|
|
UpdateMeta::DeleteDocuments { ids } => UpdateType::DocumentsDeletion {
|
|
|
|
number: Some(ids.len()),
|
|
|
|
},
|
2021-04-29 19:31:58 +02:00
|
|
|
UpdateMeta::Settings(settings) => UpdateType::Settings {
|
|
|
|
settings: settings.clone(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct ProcessedUpdateResult {
|
|
|
|
pub update_id: u64,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub update_type: UpdateType,
|
|
|
|
pub duration: f64, // in seconds
|
|
|
|
pub enqueued_at: DateTime<Utc>,
|
|
|
|
pub processed_at: DateTime<Utc>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct FailedUpdateResult {
|
|
|
|
pub update_id: u64,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub update_type: UpdateType,
|
2021-06-21 18:42:47 +02:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub response: ResponseError,
|
2021-04-29 19:31:58 +02:00
|
|
|
pub duration: f64, // in seconds
|
|
|
|
pub enqueued_at: DateTime<Utc>,
|
|
|
|
pub processed_at: DateTime<Utc>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct EnqueuedUpdateResult {
|
|
|
|
pub update_id: u64,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub update_type: UpdateType,
|
|
|
|
pub enqueued_at: DateTime<Utc>,
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
|
|
pub started_processing_at: Option<DateTime<Utc>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
|
|
#[serde(rename_all = "camelCase", tag = "status")]
|
|
|
|
pub enum UpdateStatusResponse {
|
|
|
|
Enqueued {
|
|
|
|
#[serde(flatten)]
|
|
|
|
content: EnqueuedUpdateResult,
|
|
|
|
},
|
|
|
|
Processing {
|
|
|
|
#[serde(flatten)]
|
|
|
|
content: EnqueuedUpdateResult,
|
|
|
|
},
|
|
|
|
Failed {
|
|
|
|
#[serde(flatten)]
|
|
|
|
content: FailedUpdateResult,
|
|
|
|
},
|
|
|
|
Processed {
|
|
|
|
#[serde(flatten)]
|
|
|
|
content: ProcessedUpdateResult,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<UpdateStatus> for UpdateStatusResponse {
|
|
|
|
fn from(other: UpdateStatus) -> Self {
|
|
|
|
let update_type = UpdateType::from(&other);
|
|
|
|
|
|
|
|
match other {
|
|
|
|
UpdateStatus::Processing(processing) => {
|
|
|
|
let content = EnqueuedUpdateResult {
|
|
|
|
update_id: processing.id(),
|
|
|
|
update_type,
|
|
|
|
enqueued_at: processing.from.enqueued_at,
|
|
|
|
started_processing_at: Some(processing.started_processing_at),
|
|
|
|
};
|
|
|
|
UpdateStatusResponse::Processing { content }
|
|
|
|
}
|
|
|
|
UpdateStatus::Enqueued(enqueued) => {
|
|
|
|
let content = EnqueuedUpdateResult {
|
|
|
|
update_id: enqueued.id(),
|
|
|
|
update_type,
|
|
|
|
enqueued_at: enqueued.enqueued_at,
|
|
|
|
started_processing_at: None,
|
|
|
|
};
|
|
|
|
UpdateStatusResponse::Enqueued { content }
|
|
|
|
}
|
|
|
|
UpdateStatus::Processed(processed) => {
|
|
|
|
let duration = processed
|
|
|
|
.processed_at
|
|
|
|
.signed_duration_since(processed.from.started_processing_at)
|
|
|
|
.num_milliseconds();
|
|
|
|
|
|
|
|
// necessary since chrono::duration don't expose a f64 secs method.
|
|
|
|
let duration = Duration::from_millis(duration as u64).as_secs_f64();
|
|
|
|
|
|
|
|
let content = ProcessedUpdateResult {
|
|
|
|
update_id: processed.id(),
|
|
|
|
update_type,
|
|
|
|
duration,
|
|
|
|
enqueued_at: processed.from.from.enqueued_at,
|
|
|
|
processed_at: processed.processed_at,
|
|
|
|
};
|
|
|
|
UpdateStatusResponse::Processed { content }
|
|
|
|
}
|
|
|
|
UpdateStatus::Aborted(_) => unreachable!(),
|
|
|
|
UpdateStatus::Failed(failed) => {
|
|
|
|
let duration = failed
|
|
|
|
.failed_at
|
|
|
|
.signed_duration_since(failed.from.started_processing_at)
|
|
|
|
.num_milliseconds();
|
|
|
|
|
|
|
|
// necessary since chrono::duration don't expose a f64 secs method.
|
|
|
|
let duration = Duration::from_millis(duration as u64).as_secs_f64();
|
|
|
|
|
2021-06-21 18:42:47 +02:00
|
|
|
let update_id = failed.id();
|
|
|
|
let response = failed.error;
|
|
|
|
|
2021-04-29 19:31:58 +02:00
|
|
|
let content = FailedUpdateResult {
|
2021-06-21 18:42:47 +02:00
|
|
|
update_id,
|
2021-04-29 19:31:58 +02:00
|
|
|
update_type,
|
2021-06-21 18:42:47 +02:00
|
|
|
response,
|
2021-04-29 19:31:58 +02:00
|
|
|
duration,
|
|
|
|
enqueued_at: failed.from.from.enqueued_at,
|
|
|
|
processed_at: failed.failed_at,
|
|
|
|
};
|
|
|
|
UpdateStatusResponse::Failed { content }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-12 13:32:06 +01:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct IndexParam {
|
2020-12-23 16:12:37 +01:00
|
|
|
index_uid: String,
|
2020-12-12 13:32:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct IndexUpdateResponse {
|
|
|
|
pub update_id: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IndexUpdateResponse {
|
|
|
|
pub fn with_id(update_id: u64) -> Self {
|
|
|
|
Self { update_id }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-19 11:34:54 +01:00
|
|
|
/// Always return a 200 with:
|
|
|
|
/// ```json
|
|
|
|
/// {
|
|
|
|
/// "status": "Meilisearch is running"
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub async fn running() -> HttpResponse {
|
|
|
|
HttpResponse::Ok().json(serde_json::json!({ "status": "MeiliSearch is running" }))
|
|
|
|
}
|