From decfe82e2b7cf47f2fdd6d4045b6b7a761700c55 Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Thu, 21 Nov 2024 14:22:48 -0500 Subject: [PATCH] style(client): refactor check --- src/main.rs | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/src/main.rs b/src/main.rs index 2d000c0..799b491 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,7 +11,7 @@ use std::str::FromStr; use futures_lite::FutureExt; use hyper::Uri; use hyper::{header::HeaderValue, Body, Request, Response}; -use log::info; +use log::{error, info}; use once_cell::sync::Lazy; use redlib::client::{canonical_path, proxy, CLIENT}; use redlib::server::{self, RequestExt}; @@ -377,23 +377,15 @@ async fn main() { println!("Performing self-test..."); { let mut sp = Spinner::new(Spinners::Dots12, "Requesting /r/popular...".into()); - - let request = Request::builder().uri("/").method("GET").body(Body::empty()).unwrap(); - - let response = community(request).await; - match response { - Ok(sub) => { - if sub.status().is_success() { - sp.stop_with_message("✅ Request successful!".into()); - } else { - sp.stop_with_message(format!("❌ Request failed: {}", sub.status())); - panic!("Self-test failed"); - } - } + match self_check().await { + Ok(()) => sp.stop_with_message("✅ Request successful!".into()), Err(e) => { - sp.stop_with_message(format!("❌ Request failed: {e}")); + sp.stop_with_message(format!("❌ Request failed: {}", e)); + error!("Self-test failed: {}", e); + error!("Please update to the latest version. Then, check the issue tracker for the latest error."); + error!("https://github.com/redlib-org/redlib/issues"); panic!("Self-test failed"); - } + }, } } @@ -444,3 +436,13 @@ async fn fetch_instances() -> String { hyper::body::to_bytes(resp).await.expect("Failed to read body").iter().copied().map(|x| x as char).collect() } + +async fn self_check() -> Result<(), String> { + let request = Request::get("/").body(Body::empty()).unwrap(); + + match community(request).await { + Ok(sub) if sub.status().is_success() => Ok(()), + Ok(sub) => Err(sub.status().to_string()), + Err(e) => Err(e), + } +}