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