aboutsummaryrefslogblamecommitdiff
path: root/src/errors.rs
blob: a538e4a3a2f8885ce5d3552caa80e5cb7dc54530 (plain) (tree)





























                                                                               
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("Waifulib error: {0}")]
    Waifulib(#[from] waifulib::errors::Error),

    #[error("Axum error: {0}")]
    Axum(#[from] axum::Error),
}

pub type StringResult<T = &'static str> = std::result::Result<T, ServiceError>;

pub type JsonResult<T> = std::result::Result<T, ServiceError>;

impl IntoResponse for ServiceError {
    fn into_response(self) -> Response {

        let body = body::boxed(body::Full::from(self.to_string()));
        Response::builder()
            .status(StatusCode::INTERNAL_SERVER_ERROR)
            .body(body)
            .unwrap()
    }
}