1
0
mirror of https://github.com/byReqz/status.git synced 2024-11-22 07:41:15 +00:00
status/status.sh
2021-09-20 16:22:10 +02:00

49 lines
1.2 KiB
Bash
Executable File

#!/bin/env bash
if [[ -z "$ping_hosts" ]];then
ping_hosts=("nils.lol")
else
ping_hosts=($ping_hosts)
fi
if [[ -z "$http_hosts" ]];then
http_hosts=("https://nils.lol")
else
http_hosts=($http_hosts)
fi
function get_code {
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 "$p" 2> /dev/null)"
ping_reach="$(echo "$ping_raw" | grep -o -e "alive" -e "unreachable")"
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")"
}
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