rnid/scripts/32-dgt.sh

37 lines
1.3 KiB
Bash
Raw Normal View History

#!/bin/bash
2021-08-08 13:55:31 +00:00
fail=0;
2021-10-12 00:24:40 +00:00
if [ "$(curl https://tcp.dgterritorio.gov.pt/procurar -o /dev/null --silent; echo $?)" -eq "60" ]; then
2021-08-08 13:55:31 +00:00
echo "dgt: erro no certificado HTTPS";
fail=1;
else
links="$(wget https://tcp.dgterritorio.gov.pt/procurar -o /dev/null -O -|hxnormalize -x -l 10000|hxselect .feed-icon|hxselect a -s '\n')";
# How many links are there? if there is less than 1, something has changed,
# validate manually. If there are more than 1, maybe there's a XLS but also
# other (open) format. Let's validate manually and adjust the script if the
# violation stands.
nlinks="$(echo "$links"|wc -l)";
xls="$(echo "$links"|grep -c -i xls)";
2021-08-08 13:55:31 +00:00
# TODO: complementar validações com o incumprimento do XLS
if [ "$nlinks" -eq "1" ] && [ "$xls" -eq "1" ]; then
echo "dgt: continua o incumprimento com o uso de XLS";
fail=2;
fi
fi
2021-08-08 14:27:51 +00:00
if [ "$fail" = 0 ]; then
2021-08-08 13:55:31 +00:00
echo "dgt: algo mudou (nlinks $nlinks, xls $xls), incumprimento potencialmente resolvido (verificar manualmente!)";
else
echo "dgt: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)";
while IFS='' read -r line || [[ -n "$line" ]]; do
test "$(echo "$line"|grep -v -c "dgterritorio")" -eq "1" \
&& echo "$line" \
|| (h=$(echo "$line"|cut -d\| -f1-4); t=$(echo "$line"|cut -d\| -f6-); echo "$h| $(date +%Y/%m/%d) |$t");
done < README.md > new
mv new README.md
fi