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