From c3c39ff446e46e4b58f2a88562a608bfcc65197b Mon Sep 17 00:00:00 2001 From: Nils Date: Mon, 20 Sep 2021 16:22:10 +0200 Subject: [PATCH] finish basic functions --- status.sh | 43 ++++++++++++++++++++++++++++++++++--------- 1 file changed, 34 insertions(+), 9 deletions(-) diff --git a/status.sh b/status.sh index 3524493..4a1edc0 100755 --- a/status.sh +++ b/status.sh @@ -1,23 +1,48 @@ #!/bin/env bash if [[ -z "$ping_hosts" ]];then - ping_hosts="nils.lol" + ping_hosts=("nils.lol") +else + ping_hosts=($ping_hosts) fi if [[ -z "$http_hosts" ]];then - http_hosts="https://nils.lol" + http_hosts=("https://nils.lol") +else + http_hosts=($http_hosts) fi function get_code { - http_results="$(curl -s -I $http_hosts | grep HTTP | cut -d " " -f 2)" + http_raw="$(curl -s -I $h | tr -d '\r')" + http_code="[$(echo "$http_raw" | grep HTTP | cut -d " " -f 2)" + http_server=" | $(echo "$http_raw" | grep Server: | cut -d " " -f 2)]" + http_results=""$http_results" +$(printf "%-50s%s\n" ["$h"] "$http_code""$http_server")" } function get_ping { - ping_raw="$(fping -e "$ping_hosts")" + ping_raw="$(fping -e "$p" 2> /dev/null)" ping_reach="$(echo "$ping_raw" | grep -o -e "alive" -e "unreachable")" - ping_ms="$(echo "$ping_raw" | cut -d "(" -f 2 | cut -d ")" -f 1)" - ping_results="$ping_reach / $ping_ms" + if [[ "$ping_reach" == "unreachable" ]];then + ping_reach="[unreachable]" + elif [[ "$ping_reach" == "alive" ]];then + ping_reach="[alive" + ping_ms=" | $(echo "$ping_raw" | cut -d "(" -f 2 | cut -d ")" -f 1)]" + else + ping_reach="[error]" + fi + ping_results=""$ping_results" +$(printf "%-50s%s\n" ["$p]" "$ping_reach""$ping_ms")" } -get_code -get_ping -echo "$http_results $ping_results" +if [[ "$ping_hosts" != "none" ]];then + for p in "${ping_hosts[@]}";do + get_ping + done + echo "$ping_results" +fi +if [[ "$http_hosts" != "none" ]];then + for h in "${http_hosts[@]}";do + get_code + done + echo "$http_results" +fi