first commit

This commit is contained in:
Mateusz Gruszczyński
2026-08-23 21:34:07 +02:00
commit 1d3dcba1a9
62 changed files with 12456 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
use axum::{http::StatusCode, response::{IntoResponse, Response}, Json};
use serde_json::json;
use thiserror::Error;
#[derive(Debug, Error)]
pub enum AppError {
#[error("not found: {0}")]
NotFound(String),
#[error("invalid request: {0}")]
BadRequest(String),
#[error("unauthorized")]
Unauthorized,
#[error("device communication failed: {0}")]
Device(String),
#[error(transparent)]
Internal(#[from] anyhow::Error),
}
impl IntoResponse for AppError {
fn into_response(self) -> Response {
let (status, message) = match &self {
Self::NotFound(v) => (StatusCode::NOT_FOUND, v.clone()),
Self::BadRequest(v) => (StatusCode::BAD_REQUEST, v.clone()),
Self::Unauthorized => (StatusCode::UNAUTHORIZED, "unauthorized".into()),
Self::Device(v) => (StatusCode::BAD_GATEWAY, v.clone()),
Self::Internal(v) => {
tracing::error!(error = ?v, "internal error");
(StatusCode::INTERNAL_SERVER_ERROR, "internal server error".into())
}
};
(status, Json(json!({"error": message}))).into_response()
}
}
impl From<rusqlite::Error> for AppError {
fn from(value: rusqlite::Error) -> Self { Self::Internal(value.into()) }
}
impl From<serde_json::Error> for AppError {
fn from(value: serde_json::Error) -> Self { Self::Internal(value.into()) }
}