garage/src/web/error.rs

50 lines
1.1 KiB
Rust
Raw Normal View History

2020-11-19 13:56:00 +00:00
use err_derive::Error;
use hyper::header::HeaderValue;
use hyper::{HeaderMap, StatusCode};
2020-11-19 13:56:00 +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)]
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-13 13:04:53 +00:00
impl<T> From<T> for Error
where
garage_api::s3::error::Error: From<T>,
2022-05-13 13:04:53 +00:00
{
fn from(err: T) -> Self {
Error::ApiError(garage_api::s3::error::Error::from(err))
2022-05-13 13:04:53 +00:00
}
}
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-13 13:04:53 +00:00
Error::BadRequest(_) => StatusCode::BAD_REQUEST,
2020-11-19 13:56:00 +00:00
}
}
pub fn add_headers(&self, header_map: &mut HeaderMap<HeaderValue>) {
#[allow(clippy::single_match)]
match self {
Error::ApiError(e) => e.add_http_headers(header_map),
_ => (),
}
}
2020-11-19 13:56:00 +00:00
}