blob: c1d6672e86d99237055a841f935c2c4bea6320cf (
plain) (
tree)
|
|
use axum::{response::{Response, IntoResponse}, body::{boxed, self}};
use hyper::StatusCode;
use thiserror::Error;
#[derive(Debug, Error)]
pub enum ServiceError {
#[error("Solarlib error: {0}")]
Solarlib(#[from] solarlib::errors::Error),
#[error("Axum error: {0}")]
Axum(#[from] axum::Error),
#[error("SQL error: {0}")]
Sql(#[from] sqlx::Error),
#[error("Not Found")]
NotFound,
}
pub type StringResult<T = &'static str> = Result<T, ServiceError>;
pub type JsonResult<T> = Result<T, ServiceError>;
impl IntoResponse for ServiceError {
fn into_response(self) -> Response {
let body = body::boxed(body::Full::from(self.to_string()));
let status = match self {
ServiceError::NotFound => StatusCode::NOT_FOUND,
_ => StatusCode::INTERNAL_SERVER_ERROR,
};
Response::builder()
.status(status)
.body(body)
.unwrap()
}
}
|