Improve error handling

This commit is contained in:
Johan Wassberg 2023-09-26 15:16:04 +02:00
parent 5dacc8fb5d
commit f5f67a1073
Signed by: jocar
GPG key ID: BE4EC2EEADF2C31B

View file

@ -32,10 +32,20 @@ for expression in "role-sp" "role-idp" "index.html"; do
esac
curl ${base_url}/${url} -o "${tmpfile}"
if ! grep -q entityID "${tmpfile}" ; then
echo "No entityID found in file for ${expression}"
exit 1
fi
case $file in
*.json)
jq -e .[].entityID "${tmpfile}" 1> /dev/null
;;
*.xml|*.html)
xmlstarlet sel -t -v "//md:EntityDescriptor/@entityID" -n -m "//*[local-name()='EntityDescriptor']" -v "@entityID" -n "${tmpfile}" 1>/dev/null
;;
*)
echo "Unsupported file type (${file}))"
exit 1
;;
esac
full_path=${base_dir}${file}
mkdir -p "$(dirname ${full_path})"
mv "${tmpfile}" "${full_path}"