2022-08-10 05:37:34 +03:00
|
|
|
use axum::{
|
|
|
|
http::StatusCode,
|
|
|
|
response::{IntoResponse, Response},
|
|
|
|
Json,
|
|
|
|
};
|
2022-06-05 22:58:47 +03:00
|
|
|
use serde_json::value::RawValue;
|
|
|
|
|
2022-06-16 05:53:37 +03:00
|
|
|
use crate::jsonrpc::JsonRpcForwardedResponse;
|
|
|
|
|
2022-08-10 05:37:34 +03:00
|
|
|
pub async fn handler_404() -> Response {
|
2022-06-05 22:58:47 +03:00
|
|
|
let err = anyhow::anyhow!("nothing to see here");
|
|
|
|
|
2022-08-11 04:53:27 +03:00
|
|
|
anyhow_error_into_response(Some(StatusCode::NOT_FOUND), None, err)
|
2022-06-05 22:58:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/// handle errors by converting them into something that implements `IntoResponse`
|
2022-07-23 02:26:04 +03:00
|
|
|
/// TODO: use this. i can't get <https://docs.rs/axum/latest/axum/error_handling/index.html> to work
|
2022-06-06 01:39:44 +03:00
|
|
|
/// TODO: i think we want a custom result type instead. put the anyhow result inside. then `impl IntoResponse for CustomResult`
|
2022-08-11 04:53:27 +03:00
|
|
|
pub fn anyhow_error_into_response(
|
2022-08-06 08:26:43 +03:00
|
|
|
http_code: Option<StatusCode>,
|
2022-07-07 06:29:47 +03:00
|
|
|
id: Option<Box<RawValue>>,
|
2022-07-07 06:22:09 +03:00
|
|
|
err: anyhow::Error,
|
2022-08-10 05:37:34 +03:00
|
|
|
) -> Response {
|
2022-07-07 06:29:47 +03:00
|
|
|
// TODO: we might have an id. like if this is for rate limiting, we can use it
|
|
|
|
let id = id.unwrap_or_else(|| RawValue::from_string("null".to_string()).unwrap());
|
2022-06-05 22:58:47 +03:00
|
|
|
|
|
|
|
let err = JsonRpcForwardedResponse::from_anyhow_error(err, id);
|
|
|
|
|
2022-07-07 06:29:47 +03:00
|
|
|
// TODO: logs here are too verbose. emit a stat
|
|
|
|
// warn!("Responding with error: {:?}", err);
|
2022-06-05 22:58:47 +03:00
|
|
|
|
2022-08-06 08:26:43 +03:00
|
|
|
let code = http_code.unwrap_or(StatusCode::INTERNAL_SERVER_ERROR);
|
2022-06-05 22:58:47 +03:00
|
|
|
|
2022-08-10 05:37:34 +03:00
|
|
|
(code, Json(err)).into_response()
|
2022-06-05 22:58:47 +03:00
|
|
|
}
|