use axum::response::IntoResponse;
use axum_extra::TypedHeader;
use headers::ContentType;
use http::StatusCode;
use crate::http::AuthedClient;
pub async fn handle_catalog_dump(client: AuthedClient) -> impl IntoResponse {
match client.client.dump_catalog().await.map(|c| c.into_string()) {
Ok(res) => Ok((TypedHeader(ContentType::json()), res)),
Err(e) => Err((StatusCode::INTERNAL_SERVER_ERROR, e.to_string())),
}
}
pub async fn handle_catalog_check(client: AuthedClient) -> impl IntoResponse {
let response = match client.client.check_catalog().await {
Ok(_) => serde_json::Value::String("".to_string()),
Err(inconsistencies) => serde_json::json!({ "err": inconsistencies }),
};
(TypedHeader(ContentType::json()), response.to_string())
}
pub async fn handle_coordinator_check(client: AuthedClient) -> impl IntoResponse {
let response = match client.client.check_coordinator().await {
Ok(_) => serde_json::Value::String("".to_string()),
Err(inconsistencies) => serde_json::json!({ "err": inconsistencies }),
};
(TypedHeader(ContentType::json()), response.to_string())
}
pub async fn handle_coordinator_dump(client: AuthedClient) -> impl IntoResponse {
let (status, result) = match client.client.dump_coordinator_state().await {
Ok(dump) => (StatusCode::OK, dump),
Err(e) => (
StatusCode::INTERNAL_SERVER_ERROR,
serde_json::json!({ "err": e.to_string() }),
),
};
(status, TypedHeader(ContentType::json()), result.to_string())
}