2021-06-15 03:26:35 +08:00
|
|
|
use std::error::Error;
|
2020-12-12 20:32:06 +08:00
|
|
|
use std::fmt;
|
|
|
|
|
|
|
|
use actix_web as aweb;
|
2021-06-22 01:20:04 +08:00
|
|
|
use aweb::error::{JsonPayloadError, QueryPayloadError};
|
2021-12-02 23:03:26 +08:00
|
|
|
use meilisearch_error::{Code, ErrorCode, ResponseError};
|
2021-06-15 03:26:35 +08:00
|
|
|
|
2021-09-30 16:26:30 +08:00
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
|
|
pub enum MeilisearchHttpError {
|
2021-10-05 19:30:53 +08:00
|
|
|
#[error("A Content-Type header is missing. Accepted values for the Content-Type header are: {}",
|
2021-10-27 01:36:48 +08:00
|
|
|
.0.iter().map(|s| format!("`{}`", s)).collect::<Vec<_>>().join(", "))]
|
2021-10-05 19:30:53 +08:00
|
|
|
MissingContentType(Vec<String>),
|
|
|
|
#[error(
|
2021-10-27 01:36:48 +08:00
|
|
|
"The Content-Type `{0}` is invalid. Accepted values for the Content-Type header are: {}",
|
|
|
|
.1.iter().map(|s| format!("`{}`", s)).collect::<Vec<_>>().join(", ")
|
2021-10-05 19:30:53 +08:00
|
|
|
)]
|
|
|
|
InvalidContentType(String, Vec<String>),
|
2021-09-30 16:26:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ErrorCode for MeilisearchHttpError {
|
|
|
|
fn error_code(&self) -> Code {
|
|
|
|
match self {
|
2021-10-05 19:30:53 +08:00
|
|
|
MeilisearchHttpError::MissingContentType(_) => Code::MissingContentType,
|
|
|
|
MeilisearchHttpError::InvalidContentType(_, _) => Code::InvalidContentType,
|
2021-09-30 16:26:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-06 17:49:34 +08:00
|
|
|
impl From<MeilisearchHttpError> for aweb::Error {
|
|
|
|
fn from(other: MeilisearchHttpError) -> Self {
|
|
|
|
aweb::Error::from(ResponseError::from(other))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 01:20:04 +08:00
|
|
|
impl fmt::Display for PayloadError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
match self {
|
|
|
|
PayloadError::Json(e) => e.fmt(f),
|
|
|
|
PayloadError::Query(e) => e.fmt(f),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum PayloadError {
|
|
|
|
Json(JsonPayloadError),
|
|
|
|
Query(QueryPayloadError),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Error for PayloadError {}
|
|
|
|
|
|
|
|
impl ErrorCode for PayloadError {
|
|
|
|
fn error_code(&self) -> Code {
|
|
|
|
match self {
|
|
|
|
PayloadError::Json(err) => match err {
|
2021-09-08 18:34:56 +08:00
|
|
|
JsonPayloadError::Overflow { .. } => Code::PayloadTooLarge,
|
2021-06-22 01:20:04 +08:00
|
|
|
JsonPayloadError::ContentType => Code::UnsupportedMediaType,
|
2021-06-23 20:48:33 +08:00
|
|
|
JsonPayloadError::Payload(aweb::error::PayloadError::Overflow) => {
|
|
|
|
Code::PayloadTooLarge
|
|
|
|
}
|
|
|
|
JsonPayloadError::Deserialize(_) | JsonPayloadError::Payload(_) => Code::BadRequest,
|
2021-06-22 01:20:04 +08:00
|
|
|
JsonPayloadError::Serialize(_) => Code::Internal,
|
|
|
|
_ => Code::Internal,
|
|
|
|
},
|
|
|
|
PayloadError::Query(err) => match err {
|
|
|
|
QueryPayloadError::Deserialize(_) => Code::BadRequest,
|
|
|
|
_ => Code::Internal,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<JsonPayloadError> for PayloadError {
|
|
|
|
fn from(other: JsonPayloadError) -> Self {
|
|
|
|
Self::Json(other)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<QueryPayloadError> for PayloadError {
|
|
|
|
fn from(other: QueryPayloadError) -> Self {
|
|
|
|
Self::Query(other)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-06 17:49:34 +08:00
|
|
|
impl From<PayloadError> for aweb::Error {
|
|
|
|
fn from(other: PayloadError) -> Self {
|
|
|
|
aweb::Error::from(ResponseError::from(other))
|
|
|
|
}
|
2021-06-22 00:42:47 +08:00
|
|
|
}
|