Ownership checks (delete_review, confirm/dismiss watch events) now return Forbidden instead of Unauthorized. Presentation layer maps DomainError→StatusCode via domain_error_response helper, replacing verbose per-handler match arms.
42 lines
1.2 KiB
Rust
42 lines
1.2 KiB
Rust
use axum::{
|
|
http::StatusCode,
|
|
response::{IntoResponse, Response},
|
|
};
|
|
use domain::errors::DomainError;
|
|
|
|
pub fn domain_error_status(e: &DomainError) -> StatusCode {
|
|
match e {
|
|
DomainError::InvalidRating { .. } | DomainError::ValidationError(_) => {
|
|
StatusCode::BAD_REQUEST
|
|
}
|
|
DomainError::NotFound(_) => StatusCode::NOT_FOUND,
|
|
DomainError::Unauthorized(_) => StatusCode::UNAUTHORIZED,
|
|
DomainError::Forbidden(_) => StatusCode::FORBIDDEN,
|
|
DomainError::InfrastructureError(_) => StatusCode::INTERNAL_SERVER_ERROR,
|
|
}
|
|
}
|
|
|
|
pub fn domain_error_response(e: DomainError) -> Response {
|
|
match &e {
|
|
DomainError::InfrastructureError(_) => {
|
|
tracing::error!("Internal error: {:?}", e);
|
|
StatusCode::INTERNAL_SERVER_ERROR.into_response()
|
|
}
|
|
_ => (domain_error_status(&e), e.to_string()).into_response(),
|
|
}
|
|
}
|
|
|
|
pub struct ApiError(pub DomainError);
|
|
|
|
impl From<DomainError> for ApiError {
|
|
fn from(err: DomainError) -> Self {
|
|
Self(err)
|
|
}
|
|
}
|
|
|
|
impl IntoResponse for ApiError {
|
|
fn into_response(self) -> Response {
|
|
domain_error_response(self.0)
|
|
}
|
|
}
|