garage/src/web/error.rs

60 lines
1.7 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_util::error::Error as GarageError;
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)]
2021-03-26 21:32:09 +00:00
ApiError(#[error(source)] garage_api::Error),
2020-11-21 16:50:19 +00:00
2020-11-19 13:56:00 +00:00
// Category: internal error
2021-03-26 21:05:16 +00:00
/// Error internal to garage
2020-11-19 13:56:00 +00:00
#[error(display = "Internal error: {}", _0)]
InternalError(#[error(source)] GarageError),
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-04-06 03:25:28 +00:00
/// The request contained an invalid UTF-8 sequence in its path or in other parameters
2020-11-19 13:56:00 +00:00
#[error(display = "Invalid UTF-8: {}", _0)]
2021-05-02 21:13:08 +00:00
InvalidUtf8(#[error(source)] std::str::Utf8Error),
2020-11-19 13:56:00 +00:00
2021-03-26 21:05:16 +00:00
/// The client send a header with invalid value
2020-11-19 13:56:00 +00:00
#[error(display = "Invalid header value: {}", _0)]
InvalidHeader(#[error(source)] hyper::header::ToStrError),
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),
}
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(),
Error::InternalError(
GarageError::Timeout
| GarageError::RemoteError(_)
| GarageError::Quorum(_, _, _, _),
) => StatusCode::SERVICE_UNAVAILABLE,
2021-01-15 15:24:27 +00:00
Error::InternalError(_) => StatusCode::INTERNAL_SERVER_ERROR,
2020-11-19 13:56:00 +00:00
_ => StatusCode::BAD_REQUEST,
}
}
pub fn add_headers(&self, header_map: &mut HeaderMap<HeaderValue>) {
#[allow(clippy::single_match)]
match self {
Error::ApiError(e) => e.add_headers(header_map),
_ => (),
}
}
2020-11-19 13:56:00 +00:00
}