refactor: move output formatter to separate mod

This commit is contained in:
DarkCat09 2025-03-26 15:38:31 +04:00
parent 555b2d4732
commit 82dd07f293
Signed by: DarkCat09
SSH key fingerprint: SHA256:SnH1iYY/ogxxRmt1I6piy+aVUUzrOWvfksQWfhZ8JUM
2 changed files with 18 additions and 12 deletions

View file

@ -6,6 +6,7 @@ use ntex::{
};
mod error;
mod output;
type Result<T> = core::result::Result<T, error::ErrorWrapper>;
@ -61,18 +62,13 @@ async fn poweroff(cfg: State<Config>) -> Result<impl Responder> {
#[web::get("/ping")]
async fn ping() -> Result<impl Responder> {
let out = tokio::process::Command::new("/bin/ping")
.arg("-c")
.arg("4")
.arg("1.1.1.1")
.output()
.await?;
Ok(format!(
"exited with {}\n\nstdout:\n{}\n----\n\nstderr:\n{}",
out.status.code().unwrap_or(-1),
String::from_utf8_lossy(&out.stdout),
String::from_utf8_lossy(&out.stderr),
Ok(output::format(
tokio::process::Command::new("/bin/ping")
.arg("-c")
.arg("4")
.arg("1.1.1.1")
.output()
.await?,
))
}

10
src/output.rs Normal file
View file

@ -0,0 +1,10 @@
use std::process::Output;
pub fn format(out: Output) -> String {
format!(
"exited with {}\n\nstdout:\n{}\n----\n\nstderr:\n{}",
out.status.code().unwrap_or(-1),
String::from_utf8_lossy(&out.stdout),
String::from_utf8_lossy(&out.stderr),
)
}