use std::io;
use axum::http::StatusCode;
use axum::Json;
use axum::response::{IntoResponse, Response};
use serde_json::json;
use tracing::error;
use crate::auth::Error as AuthError;
#[derive(Debug)]
pub enum Error {
Generic,
Auth(AuthError),
DB(sqlx::Error),
IpParse(<std::net::IpAddr as std::str::FromStr>::Err),
BufferParse(std::num::ParseIntError),
Broadcast(io::Error),
}
impl IntoResponse for Error {
fn into_response(self) -> Response {
let (status, error_message) = match self {
Self::Auth(err) => {
err.get()
},
Self::Generic => (StatusCode::INTERNAL_SERVER_ERROR, ""),
Self::IpParse(err) => {
error!("server error: {}", err.to_string());
(StatusCode::INTERNAL_SERVER_ERROR, "Server Error")
},
Self::DB(err) => {
error!("server error: {}", err.to_string());
(StatusCode::INTERNAL_SERVER_ERROR, "Server Error")
},
Self::Broadcast(err) => {
error!("server error: {}", err.to_string());
(StatusCode::INTERNAL_SERVER_ERROR, "Server Error")
},
Self::BufferParse(err) => {
error!("server error: {}", err.to_string());
(StatusCode::INTERNAL_SERVER_ERROR, "Server Error")
},
};
let body = Json(json!({
"error": error_message,
}));
(status, body).into_response()
}
}