2022-05-24 10:16:39 +00:00
|
|
|
use err_derive::Error;
|
|
|
|
use hyper::header::HeaderValue;
|
2024-02-05 17:49:54 +00:00
|
|
|
use hyper::{HeaderMap, StatusCode};
|
2022-05-24 10:16:39 +00:00
|
|
|
|
|
|
|
pub use garage_model::helper::error::Error as HelperError;
|
|
|
|
|
|
|
|
use crate::common_error::CommonError;
|
|
|
|
pub use crate::common_error::{CommonErrorDerivative, OkOrBadRequest, OkOrInternalError};
|
|
|
|
use crate::generic_server::ApiError;
|
2024-02-07 13:45:52 +00:00
|
|
|
use crate::helpers::*;
|
2022-05-24 10:16:39 +00:00
|
|
|
|
|
|
|
/// Errors of this crate
|
|
|
|
#[derive(Debug, Error)]
|
|
|
|
pub enum Error {
|
|
|
|
#[error(display = "{}", _0)]
|
|
|
|
/// Error from common error
|
|
|
|
Common(CommonError),
|
|
|
|
|
|
|
|
// Category: cannot process
|
|
|
|
/// The API access key does not exist
|
|
|
|
#[error(display = "Access key not found: {}", _0)]
|
|
|
|
NoSuchAccessKey(String),
|
|
|
|
|
|
|
|
/// In Import key, the key already exists
|
|
|
|
#[error(
|
|
|
|
display = "Key {} already exists in data store. Even if it is deleted, we can't let you create a new key with the same ID. Sorry.",
|
|
|
|
_0
|
|
|
|
)]
|
|
|
|
KeyAlreadyExists(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> From<T> for Error
|
|
|
|
where
|
|
|
|
CommonError: From<T>,
|
|
|
|
{
|
|
|
|
fn from(err: T) -> Self {
|
|
|
|
Error::Common(CommonError::from(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CommonErrorDerivative for Error {}
|
|
|
|
|
|
|
|
impl Error {
|
|
|
|
fn code(&self) -> &'static str {
|
|
|
|
match self {
|
|
|
|
Error::Common(c) => c.aws_code(),
|
|
|
|
Error::NoSuchAccessKey(_) => "NoSuchAccessKey",
|
|
|
|
Error::KeyAlreadyExists(_) => "KeyAlreadyExists",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ApiError for Error {
|
|
|
|
/// Get the HTTP status code that best represents the meaning of the error for the client
|
|
|
|
fn http_status_code(&self) -> StatusCode {
|
|
|
|
match self {
|
|
|
|
Error::Common(c) => c.http_status_code(),
|
|
|
|
Error::NoSuchAccessKey(_) => StatusCode::NOT_FOUND,
|
|
|
|
Error::KeyAlreadyExists(_) => StatusCode::CONFLICT,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-25 15:05:56 +00:00
|
|
|
fn add_http_headers(&self, header_map: &mut HeaderMap<HeaderValue>) {
|
|
|
|
use hyper::header;
|
|
|
|
header_map.append(header::CONTENT_TYPE, "application/json".parse().unwrap());
|
2022-05-24 10:16:39 +00:00
|
|
|
}
|
|
|
|
|
2024-02-07 13:45:52 +00:00
|
|
|
fn http_body(&self, garage_region: &str, path: &str) -> ErrorBody {
|
2022-05-24 10:16:39 +00:00
|
|
|
let error = CustomApiErrorBody {
|
|
|
|
code: self.code().to_string(),
|
|
|
|
message: format!("{}", self),
|
|
|
|
path: path.to_string(),
|
|
|
|
region: garage_region.to_string(),
|
|
|
|
};
|
2024-02-05 17:49:54 +00:00
|
|
|
let error_str = serde_json::to_string_pretty(&error).unwrap_or_else(|_| {
|
2022-05-24 10:16:39 +00:00
|
|
|
r#"
|
|
|
|
{
|
|
|
|
"code": "InternalError",
|
|
|
|
"message": "JSON encoding of error failed"
|
|
|
|
}
|
|
|
|
"#
|
|
|
|
.into()
|
2024-02-05 17:49:54 +00:00
|
|
|
});
|
2024-02-07 13:45:52 +00:00
|
|
|
error_body(error_str)
|
2022-05-24 10:16:39 +00:00
|
|
|
}
|
|
|
|
}
|