2021-06-14 21:26:35 +02:00
|
|
|
use std::error::Error;
|
2020-12-12 13:32:06 +01:00
|
|
|
use std::fmt;
|
|
|
|
|
|
|
|
use actix_web as aweb;
|
2021-04-21 13:49:21 +02:00
|
|
|
use actix_web::body::Body;
|
2020-12-12 13:32:06 +01:00
|
|
|
use actix_web::http::StatusCode;
|
2021-09-08 12:34:56 +02:00
|
|
|
use actix_web::HttpResponseBuilder;
|
2021-06-21 19:20:04 +02:00
|
|
|
use aweb::error::{JsonPayloadError, QueryPayloadError};
|
2021-03-15 18:11:10 +01:00
|
|
|
use meilisearch_error::{Code, ErrorCode};
|
2021-06-21 19:20:04 +02:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-06-14 21:26:35 +02:00
|
|
|
|
2021-09-30 10:26:30 +02:00
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
|
|
pub enum MeilisearchHttpError {
|
2021-10-05 13:30:53 +02:00
|
|
|
#[error("A Content-Type header is missing. Accepted values for the Content-Type header are: {}",
|
2021-10-26 19:36:48 +02:00
|
|
|
.0.iter().map(|s| format!("`{}`", s)).collect::<Vec<_>>().join(", "))]
|
2021-10-05 13:30:53 +02:00
|
|
|
MissingContentType(Vec<String>),
|
|
|
|
#[error(
|
2021-10-26 19:36:48 +02: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 13:30:53 +02:00
|
|
|
)]
|
|
|
|
InvalidContentType(String, Vec<String>),
|
2021-09-30 10:26:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ErrorCode for MeilisearchHttpError {
|
|
|
|
fn error_code(&self) -> Code {
|
|
|
|
match self {
|
2021-10-05 13:30:53 +02:00
|
|
|
MeilisearchHttpError::MissingContentType(_) => Code::MissingContentType,
|
|
|
|
MeilisearchHttpError::InvalidContentType(_, _) => Code::InvalidContentType,
|
2021-09-30 10:26:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-06 11:49:34 +02:00
|
|
|
impl From<MeilisearchHttpError> for aweb::Error {
|
|
|
|
fn from(other: MeilisearchHttpError) -> Self {
|
|
|
|
aweb::Error::from(ResponseError::from(other))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-21 18:42:47 +02:00
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
2020-12-12 13:32:06 +01:00
|
|
|
pub struct ResponseError {
|
2021-06-21 18:42:47 +02:00
|
|
|
#[serde(skip)]
|
|
|
|
code: StatusCode,
|
|
|
|
message: String,
|
2021-10-25 14:09:24 +02:00
|
|
|
#[serde(rename = "code")]
|
2021-06-21 18:42:47 +02:00
|
|
|
error_code: String,
|
2021-10-25 14:09:24 +02:00
|
|
|
#[serde(rename = "type")]
|
2021-06-21 18:42:47 +02:00
|
|
|
error_type: String,
|
2021-10-25 14:09:24 +02:00
|
|
|
#[serde(rename = "link")]
|
2021-06-21 18:42:47 +02:00
|
|
|
error_link: String,
|
2020-12-12 13:32:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for ResponseError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2021-06-21 18:42:47 +02:00
|
|
|
self.message.fmt(f)
|
2020-12-12 13:32:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-21 18:42:47 +02:00
|
|
|
impl<T> From<T> for ResponseError
|
2021-06-21 19:20:04 +02:00
|
|
|
where
|
|
|
|
T: ErrorCode,
|
2021-06-21 18:42:47 +02:00
|
|
|
{
|
|
|
|
fn from(other: T) -> Self {
|
|
|
|
Self {
|
|
|
|
code: other.http_status(),
|
|
|
|
message: other.to_string(),
|
|
|
|
error_code: other.error_name(),
|
|
|
|
error_type: other.error_type(),
|
|
|
|
error_link: other.error_url(),
|
|
|
|
}
|
2020-12-12 13:32:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl aweb::error::ResponseError for ResponseError {
|
2021-09-08 12:34:56 +02:00
|
|
|
fn error_response(&self) -> aweb::HttpResponse<Body> {
|
2021-04-21 13:49:21 +02:00
|
|
|
let json = serde_json::to_vec(self).unwrap();
|
2021-09-08 12:34:56 +02:00
|
|
|
HttpResponseBuilder::new(self.status_code())
|
2021-06-21 18:48:05 +02:00
|
|
|
.content_type("application/json")
|
|
|
|
.body(json)
|
2020-12-12 13:32:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn status_code(&self) -> StatusCode {
|
2021-06-21 18:42:47 +02:00
|
|
|
self.code
|
2020-12-12 13:32:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-21 19:20:04 +02: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 12:34:56 +02:00
|
|
|
JsonPayloadError::Overflow { .. } => Code::PayloadTooLarge,
|
2021-06-21 19:20:04 +02:00
|
|
|
JsonPayloadError::ContentType => Code::UnsupportedMediaType,
|
2021-06-23 14:48:33 +02:00
|
|
|
JsonPayloadError::Payload(aweb::error::PayloadError::Overflow) => {
|
|
|
|
Code::PayloadTooLarge
|
|
|
|
}
|
|
|
|
JsonPayloadError::Deserialize(_) | JsonPayloadError::Payload(_) => Code::BadRequest,
|
2021-06-21 19:20:04 +02: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 11:49:34 +02:00
|
|
|
impl From<PayloadError> for aweb::Error {
|
|
|
|
fn from(other: PayloadError) -> Self {
|
|
|
|
aweb::Error::from(ResponseError::from(other))
|
|
|
|
}
|
2021-06-21 18:42:47 +02:00
|
|
|
}
|