1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00
seirdy.one/scripts/get-webmentions.sh

106 lines
2.9 KiB
Bash
Raw Permalink Normal View History

#!/bin/sh
#
# Script to fetch all approved webmentions from webmentiond as a big json response.
# Uses POSIX and cURL in CI, also uses any pass/pash-compatible pwmngr otherwise
# The response is cached for 90 minutes. If fetching fresh webmentions fails, fall back to the cached version for up to one day (1440 minutes). If cached webmentions are older than a day, error out.
2023-11-25 21:40:52 +00:00
# no pipefail here since there are no pipes.
2024-04-05 20:59:06 +00:00
set -e
2024-04-04 02:36:00 +00:00
exit_on_connectivity_failure() {
echo "You are offline"
exit 0
}
if [ -z "$JOB_URL" ]; then
sh scripts/connectivity-check.sh || exit_on_connectivity_failure
2024-04-05 21:03:13 +00:00
else
echo "running in CI"
fi
2024-04-04 02:36:00 +00:00
2024-04-05 20:59:06 +00:00
set -u
dirname="$(dirname "$0")"
curl_wrapper="$dirname/curl-wrapper.sh"
auth_url='https://collector.seirdy.one/webmentions/authenticate/access-key'
webmentions_url='https://collector.seirdy.one/webmentions/manage/mentions?limit=9999&status=approved'
webmentions_file="$dirname/../data/webmentions.json"
stale_after_minutes=90
fallback_stale_after_minutes=1440
skip_check=0
2023-11-24 03:03:40 +00:00
times_run=0
check_cached_webmentions() {
2023-11-24 03:03:40 +00:00
times_run="$((times_run + 1))"
if [ "$skip_check" = 0 ]; then
expires_in="$fallback_stale_after_minutes"
if [ $# -gt 0 ]; then
expires_in="$1"
fi
exit_status=1
if [ -f "$webmentions_file" ]; then
old_webmention_file="$(find "$webmentions_file" -mmin +"$expires_in")"
if [ "$old_webmention_file" = "" ]; then
echo 'Using cached webmentions'
skip_check=1
exit_status=0
exit 0
fi
return 1
fi
2023-11-24 03:03:40 +00:00
if [ "$exit_status" = 1 ] && [ "$times_run" = 2 ]; then
echo "Webmentions are outdated. failed to fetch for over a day."
exit "$exit_status"
fi
fi
}
trap check_cached_webmentions EXIT
# Grab my long-lived key (password). We will use this to authenticate.
key() {
set +u
if [ -n "$JOB_URL" ]; then
cat ~/.webmentiond-key
else
pash show webmentiond-ci-key
fi
set -u
}
# Fetch a short-lived access token from my webmention receiver.
token() {
2023-11-15 10:31:06 +00:00
key_response="$(key)"
"$curl_wrapper" -sX POST "$auth_url" -d "key=$key_response"
}
# Verify that the webmentions file has downloaded succesfully by ensuring that it starts and ends with a given substring.
# The total number of webmentions should be at least a 3-digit number.
verify_webmentions() {
grep -E '^\{"items":\[\{"id":".*,"total":[0-9]{3}([0-9]*)?\}$' "$webmentions_file.tmp" >/dev/null
}
# use the token to fetch all webmentions.
fetch_webmentions() {
echo 'Fetching webmentions'
token_response="$(token)" || return 1
"$curl_wrapper" --compressed -H "Authorization: Bearer $token_response" "$webmentions_url" -o "$webmentions_file.tmp" || return 1
if verify_webmentions; then
mv "$webmentions_file.tmp" "$webmentions_file"
else
echo 'Error: webmentions failed to verify'
exit 1
fi
}
# fetch webmentions if we don't have a fresh copy already.
if [ -f "$webmentions_file" ]; then
if ! check_cached_webmentions "$stale_after_minutes"; then
fetch_webmentions
fi
else
fetch_webmentions
fi