add content-type to JSON response

This commit is contained in:
Daniel Maslowski 2025-03-17 22:10:43 +01:00
parent 452c292570
commit 45755c498c

View File

@ -4,7 +4,8 @@ use std::io::prelude::*;
use std::path::Path;
use axum::{
http::StatusCode,
body::Body,
http::{Response, StatusCode},
routing::{get, post},
Json, Router,
};
@ -64,12 +65,17 @@ fn write_status(s: Status) -> String {
// Just output the current file. We assume it to be consistent.
// It may cease to or not yet exist. Then create an initial status and persist.
async fn root() -> String {
if std::path::Path::new(STATUS_FILE).exists() {
async fn root() -> Response<Body> {
let res = if std::path::Path::new(STATUS_FILE).exists() {
read_to_string(STATUS_FILE).unwrap_or(String::from("KAPOTT"))
} else {
write_status(init_status())
}
};
Response::builder()
.status(StatusCode::OK)
.header("Content-Type", "application/json")
.body(Body::from(res))
.unwrap()
}
// Input type for the API: Both fields are optional.