blob: b22932f2a9fda3cc3512b48babde6c8eff3b3b60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
use thiserror::Error;
use axum::response::{Response, IntoResponse};
use axum::http::StatusCode;
use axum::body;
use axum::Json;
#[derive(Debug, Error)]
pub enum ServiceError {
#[error("Solarlib error: {0}")]
Solarlib(#[from] solarlib::errors::Error),
#[error("Axum error: {0}")]
Axum(#[from] axum::Error),
#[error("Not Found")]
NotFound,
}
pub type StringResult<T = &'static str> = std::result::Result<T, ServiceError>;
pub type JsonResult<T> = std::result::Result<T, ServiceError>;
pub type NoneResult = std::result::Result<(), 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()
}
}
|