mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-07-26 07:58:14 +00:00
133 lines
3.8 KiB
Rust
133 lines
3.8 KiB
Rust
use hyper::header::HeaderValue;
|
|
use hyper::{HeaderMap, StatusCode};
|
|
use thiserror::Error;
|
|
|
|
pub(crate) use garage_api_common::common_error::pass_helper_error;
|
|
use garage_api_common::common_error::{commonErrorDerivative, CommonError};
|
|
pub use garage_api_common::common_error::{
|
|
CommonErrorDerivative, OkOrBadRequest, OkOrInternalError,
|
|
};
|
|
use garage_api_common::generic_server::ApiError;
|
|
use garage_api_common::helpers::*;
|
|
use garage_api_common::signature::error::Error as SignatureError;
|
|
|
|
/// Errors of this crate
|
|
#[derive(Debug, Error)]
|
|
pub enum Error {
|
|
#[error("{0}")]
|
|
/// Error from common error
|
|
Common(#[from] CommonError),
|
|
|
|
// Category: cannot process
|
|
/// Authorization Header Malformed
|
|
#[error(
|
|
"Authorization header malformed, unexpected scope: '{unexpected}', expected: '{expected}'"
|
|
)]
|
|
AuthorizationHeaderMalformed {
|
|
unexpected: String,
|
|
expected: String,
|
|
},
|
|
|
|
/// The provided digest (checksum) value was invalid
|
|
#[error("Invalid digest: {0}")]
|
|
InvalidDigest(String),
|
|
|
|
/// The object requested don't exists
|
|
#[error("Key not found")]
|
|
NoSuchKey,
|
|
|
|
/// Some base64 encoded data was badly encoded
|
|
#[error("Invalid base64: {0}")]
|
|
InvalidBase64(#[from] base64::DecodeError),
|
|
|
|
/// Invalid causality token
|
|
#[error("Invalid causality token")]
|
|
InvalidCausalityToken,
|
|
|
|
/// The client asked for an invalid return format (invalid Accept header)
|
|
#[error("Not acceptable: {0}")]
|
|
NotAcceptable(String),
|
|
|
|
/// The request contained an invalid UTF-8 sequence in its path or in other parameters
|
|
#[error("Invalid UTF-8: {0}")]
|
|
InvalidUtf8Str(#[from] std::str::Utf8Error),
|
|
}
|
|
|
|
commonErrorDerivative!(Error);
|
|
|
|
impl From<SignatureError> for Error {
|
|
fn from(err: SignatureError) -> Self {
|
|
match err {
|
|
SignatureError::Common(c) => Self::Common(c),
|
|
SignatureError::AuthorizationHeaderMalformed {
|
|
unexpected,
|
|
expected,
|
|
} => Self::AuthorizationHeaderMalformed {
|
|
unexpected,
|
|
expected,
|
|
},
|
|
SignatureError::InvalidUtf8Str(i) => Self::InvalidUtf8Str(i),
|
|
SignatureError::InvalidDigest(d) => Self::InvalidDigest(d),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Error {
|
|
/// This returns a keyword for the corresponding error.
|
|
/// Here, these keywords are not necessarily those from AWS S3,
|
|
/// as we are building a custom API
|
|
fn code(&self) -> &'static str {
|
|
match self {
|
|
Error::Common(c) => c.aws_code(),
|
|
Error::NoSuchKey => "NoSuchKey",
|
|
Error::NotAcceptable(_) => "NotAcceptable",
|
|
Error::AuthorizationHeaderMalformed { .. } => "AuthorizationHeaderMalformed",
|
|
Error::InvalidBase64(_) => "InvalidBase64",
|
|
Error::InvalidUtf8Str(_) => "InvalidUtf8String",
|
|
Error::InvalidCausalityToken => "CausalityToken",
|
|
Error::InvalidDigest(_) => "InvalidDigest",
|
|
}
|
|
}
|
|
}
|
|
|
|
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::NoSuchKey => StatusCode::NOT_FOUND,
|
|
Error::NotAcceptable(_) => StatusCode::NOT_ACCEPTABLE,
|
|
Error::AuthorizationHeaderMalformed { .. }
|
|
| Error::InvalidBase64(_)
|
|
| Error::InvalidUtf8Str(_)
|
|
| Error::InvalidDigest(_)
|
|
| Error::InvalidCausalityToken => StatusCode::BAD_REQUEST,
|
|
}
|
|
}
|
|
|
|
fn add_http_headers(&self, header_map: &mut HeaderMap<HeaderValue>) {
|
|
use hyper::header;
|
|
header_map.append(header::CONTENT_TYPE, "application/json".parse().unwrap());
|
|
header_map.append(header::ACCESS_CONTROL_ALLOW_ORIGIN, "*".parse().unwrap());
|
|
}
|
|
|
|
fn http_body(&self, garage_region: &str, path: &str) -> ErrorBody {
|
|
let error = CustomApiErrorBody {
|
|
code: self.code().to_string(),
|
|
message: format!("{}", self),
|
|
path: path.to_string(),
|
|
region: garage_region.to_string(),
|
|
};
|
|
let error_str = serde_json::to_string_pretty(&error).unwrap_or_else(|_| {
|
|
r#"
|
|
{
|
|
"code": "InternalError",
|
|
"message": "JSON encoding of error failed"
|
|
}
|
|
"#
|
|
.into()
|
|
});
|
|
error_body(error_str)
|
|
}
|
|
}
|