Update Checker: Link Status

This commit is contained in:
Cyrille L 2022-03-06 10:55:41 +01:00
parent 4250a5fb9c
commit 8cb881c7bb
1 changed files with 20 additions and 23 deletions

View File

@ -209,29 +209,26 @@ if (( "$gsl_count_links" > 0 ));then
'%{http_code}' \
"$gsl_post_hf_2" 2>/dev/null`
if (( $gsl_url_status == 200 )) || \
(( $gsl_url_status == 301 )) || \
(( $gsl_url_status == 302 ));then
gsl__logs_print \
"$gsl_log_i" \
"Post" \
"$gsl_log_h_link" \
"Online:$gsl_url_status ${gsl_post_hf_2:0:40}..." \
"${PWD}/$gsl_post"
else
gsl__logs_print \
"$gsl_log_e" \
"Post" \
"$gsl_log_h_link" \
"Offline:$gsl_url_status ${gsl_post_hf_2:0:40}..." \
"${PWD}/$gsl_post"
gsl_checker_err=true
return
fi
case "$gsl_url_status" in
1*|2*|3*)
gsl__logs_print \
"$gsl_log_i" \
"Post" \
"$gsl_log_h_link" \
"Online:$gsl_url_status ${gsl_post_hf_2:0:40}..." \
"${PWD}/$gsl_post"
;;
""|*)
gsl__logs_print \
"$gsl_log_e" \
"Post" \
"$gsl_log_h_link" \
"Offline:$gsl_url_status ${gsl_post_hf_2:0:40}..." \
"${PWD}/$gsl_post"
gsl_checker_err=true
return
;;
esac
# Stats
((gsl_stat_link++))