2020-11-19 13:56:00 +00:00
|
|
|
use err_derive::Error;
|
2021-11-29 10:52:42 +00:00
|
|
|
use hyper::header::HeaderValue;
|
|
|
|
use hyper::{HeaderMap, StatusCode};
|
2020-11-19 13:56:00 +00:00
|
|
|
|
2022-05-24 10:16:39 +00:00
|
|
|
use garage_api::generic_server::ApiError;
|
2020-11-19 13:56:00 +00:00
|
|
|
|
2021-03-26 21:05:16 +00:00
|
|
|
/// Errors of this crate
|
2020-11-19 13:56:00 +00:00
|
|
|
#[derive(Debug, Error)]
|
|
|
|
pub enum Error {
|
2021-03-26 21:05:16 +00:00
|
|
|
/// An error received from the API crate
|
2020-11-21 16:50:19 +00:00
|
|
|
#[error(display = "API error: {}", _0)]
|
2022-05-24 10:16:39 +00:00
|
|
|
ApiError(garage_api::s3::error::Error),
|
2020-11-19 13:56:00 +00:00
|
|
|
|
2021-03-26 21:05:16 +00:00
|
|
|
/// The file does not exist
|
2020-11-19 13:56:00 +00:00
|
|
|
#[error(display = "Not found")]
|
|
|
|
NotFound,
|
|
|
|
|
2021-03-26 21:05:16 +00:00
|
|
|
/// The client sent a request without host, or with unsupported method
|
2020-11-19 13:56:00 +00:00
|
|
|
#[error(display = "Bad request: {}", _0)]
|
|
|
|
BadRequest(String),
|
|
|
|
}
|
|
|
|
|
2022-05-24 10:16:39 +00:00
|
|
|
impl<T> From<T> for Error
|
|
|
|
where
|
|
|
|
garage_api::s3::error::Error: From<T>,
|
|
|
|
{
|
|
|
|
fn from(err: T) -> Self {
|
|
|
|
Error::ApiError(garage_api::s3::error::Error::from(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 13:56:00 +00:00
|
|
|
impl Error {
|
2021-03-26 21:05:16 +00:00
|
|
|
/// Transform errors into http status code
|
2020-11-19 13:56:00 +00:00
|
|
|
pub fn http_status_code(&self) -> StatusCode {
|
|
|
|
match self {
|
|
|
|
Error::NotFound => StatusCode::NOT_FOUND,
|
2020-11-21 17:14:02 +00:00
|
|
|
Error::ApiError(e) => e.http_status_code(),
|
2022-05-24 10:16:39 +00:00
|
|
|
Error::BadRequest(_) => StatusCode::BAD_REQUEST,
|
2020-11-19 13:56:00 +00:00
|
|
|
}
|
|
|
|
}
|
2021-11-29 10:52:42 +00:00
|
|
|
|
|
|
|
pub fn add_headers(&self, header_map: &mut HeaderMap<HeaderValue>) {
|
|
|
|
#[allow(clippy::single_match)]
|
|
|
|
match self {
|
2022-05-24 10:16:39 +00:00
|
|
|
Error::ApiError(e) => e.add_http_headers(header_map),
|
2021-11-29 10:52:42 +00:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
2020-11-19 13:56:00 +00:00
|
|
|
}
|