From 3bd0dabc6eb5e41047f7c033c66dceb2c9d698dd Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Wed, 26 Mar 2025 15:51:27 +0400 Subject: [PATCH] feat: hostapd_cli status --- src/main.rs | 11 +++++++++++ static/index.html | 1 + 2 files changed, 12 insertions(+) diff --git a/src/main.rs b/src/main.rs index 53d2603..8c51c6f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -28,6 +28,7 @@ async fn main() -> std::io::Result<()> { .service(poweroff) .service(ping) .service(clients) + .service(ap_config) .service(temp) .state(cfg.clone()) }) @@ -73,6 +74,16 @@ async fn clients() -> Result { .map_err(Into::into) } +#[web::get("/apcfg")] +async fn ap_config(cfg: State) -> Result { + Ok(util::format_output( + util::run_as_root(&cfg.doas, "/usr/sbin/hostapd_cli") + .arg("status") + .output() + .await?, + )) +} + #[web::get("/temp")] async fn temp(cfg: State) -> Result { const EXE: &str = "/usr/bin/vcgencmd"; diff --git a/static/index.html b/static/index.html index d4d86da..5a7c81d 100644 --- a/static/index.html +++ b/static/index.html @@ -37,6 +37,7 @@ Power off Ping 1.1.1.1 List IPs + Show AP config Get CPU temp