1
0
mirror of https://github.com/byReqz/status.git synced 2024-11-21 15:23:15 +00:00

finish basic functions

This commit is contained in:
Nils 2021-09-20 16:22:10 +02:00
parent 364e5c063e
commit c3c39ff446
Signed by: byreqz
GPG Key ID: 396A62D7D436749E

View File

@ -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
if [[ "$ping_hosts" != "none" ]];then
for p in "${ping_hosts[@]}";do
get_ping
echo "$http_results $ping_results"
done
echo "$ping_results"
fi
if [[ "$http_hosts" != "none" ]];then
for h in "${http_hosts[@]}";do
get_code
done
echo "$http_results"
fi