2021-06-14 21:26:35 +02:00
|
|
|
use meilisearch_error::Code;
|
|
|
|
use meilisearch_error::ErrorCode;
|
|
|
|
|
2021-06-21 18:42:47 +02:00
|
|
|
use crate::index::error::IndexError;
|
|
|
|
|
2021-06-14 21:26:35 +02:00
|
|
|
use super::dump_actor::error::DumpActorError;
|
|
|
|
use super::index_actor::error::IndexActorError;
|
|
|
|
use super::update_actor::error::UpdateActorError;
|
2021-06-15 17:55:27 +02:00
|
|
|
use super::uuid_resolver::error::UuidResolverError;
|
2021-06-14 21:26:35 +02:00
|
|
|
|
|
|
|
pub type Result<T> = std::result::Result<T, IndexControllerError>;
|
|
|
|
|
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
|
|
pub enum IndexControllerError {
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("Index creation must have an uid")]
|
2021-06-14 21:26:35 +02:00
|
|
|
MissingUid,
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("{0}")]
|
2021-06-14 21:26:35 +02:00
|
|
|
Uuid(#[from] UuidResolverError),
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("{0}")]
|
2021-06-14 21:26:35 +02:00
|
|
|
IndexActor(#[from] IndexActorError),
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("{0}")]
|
2021-06-14 21:26:35 +02:00
|
|
|
UpdateActor(#[from] UpdateActorError),
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("{0}")]
|
2021-06-14 21:26:35 +02:00
|
|
|
DumpActor(#[from] DumpActorError),
|
2021-06-24 10:53:51 +02:00
|
|
|
#[error("{0}")]
|
2021-06-21 18:42:47 +02:00
|
|
|
IndexError(#[from] IndexError),
|
2021-06-14 21:26:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ErrorCode for IndexControllerError {
|
|
|
|
fn error_code(&self) -> Code {
|
|
|
|
match self {
|
2021-06-24 10:53:51 +02:00
|
|
|
IndexControllerError::MissingUid => Code::BadRequest,
|
2021-06-14 21:26:35 +02:00
|
|
|
IndexControllerError::Uuid(e) => e.error_code(),
|
|
|
|
IndexControllerError::IndexActor(e) => e.error_code(),
|
|
|
|
IndexControllerError::UpdateActor(e) => e.error_code(),
|
|
|
|
IndexControllerError::DumpActor(e) => e.error_code(),
|
2021-06-21 18:42:47 +02:00
|
|
|
IndexControllerError::IndexError(e) => e.error_code(),
|
2021-06-14 21:26:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|