mirror of
https://github.com/marado/RNID.git
synced 2025-01-18 08:27:06 +00:00
486cefa8ec
O script da ACT falhou algumas vezes (e ainda nunca funcionou bem) a tentar identificar o problema, quando corrido através das github actions. Esta alteração aumenta a qualidade da validação, verificando que o conteúdo descarregado não está vazio antes de tentar encontrar problemas nele. Se estiver vazio, então mostra o output do wget, para debug (pode ser que ajude a entender o que muda entre o pedido feito localmente e feito no ambiente em que a Github Action é executada).
24 lines
1.1 KiB
Bash
Executable File
24 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# While we don't have a validator on request, let's find out if a known violation still exists
|
|
content=$(wget -t 1 --no-check-certificate http://www.act.gov.pt/ --user-agent="Mozilla/5.0 Gecko/20100101 Firefox/21.0" -o /dev/null -O -);
|
|
if [ "$( echo "$content" | wc -l )" -eq "0" ]; then
|
|
echo "act: página vazia! Pode ser problema no site, ou no script.";
|
|
echo "DEBUG: ";
|
|
wget -t 1 --no-check-certificate http://www.act.gov.pt/ --user-agent="Mozilla/5.0 Gecko/20100101 Firefox/21.0";
|
|
rm index.html;
|
|
fi
|
|
|
|
if [ "$( echo "$content" | grep -i "<img" |grep -v -i alt|wc -l)" -eq "0" ]; then
|
|
echo "act: incumprimento pode já não existir";
|
|
# TODO: verificar também se o problema com o certiicado ja' esta' resolvido
|
|
else
|
|
echo "act: 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 act.gov|wc -l) -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
|