2020-11-19 13:56:00 +00:00
|
|
|
use err_derive::Error;
|
|
|
|
use hyper::StatusCode;
|
|
|
|
|
|
|
|
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-03-26 21:05:16 +00:00
|
|
|
/// The client requested a malformed path
|
2020-11-19 13:56:00 +00:00
|
|
|
#[error(display = "Invalid UTF-8: {}", _0)]
|
|
|
|
InvalidUTF8(#[error(source)] std::str::Utf8Error),
|
|
|
|
|
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(),
|
2020-11-19 13:56:00 +00:00
|
|
|
Error::InternalError(GarageError::RPC(_)) => 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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|