2022-03-20 12:31:21 +01:00
|
|
|
#! /bin/bash
|
2021-10-01 10:42:03 +02:00
|
|
|
|
2024-03-24 09:55:14 +01:00
|
|
|
J=6
|
2021-10-01 10:42:03 +02:00
|
|
|
OUT_FILE=deprecated.txt
|
|
|
|
|
|
|
|
if [ "$1" = "--help" ] || [ "$1" = "-h" ] || [ "$1" = "help" ]; then
|
|
|
|
cat <<EOF
|
|
|
|
$ check-for-deprecation.sh
|
|
|
|
Check all github apps in the readme for deprecation.
|
2022-03-20 12:31:21 +01:00
|
|
|
Running $J processes in parallel.
|
2021-10-01 10:42:03 +02:00
|
|
|
|
|
|
|
Found deprecated repos are written to: $OUT_FILE
|
|
|
|
EOF
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2023-08-03 10:45:18 +02:00
|
|
|
check_if_archived_on_github() {
|
|
|
|
APPS=$(grep -e "- \[.\+\]\(.\+\)\s" readme.md | grep 'github.com' | awk -F "(" '{ print $2 }' | cut -d ")" -f1)
|
|
|
|
|
|
|
|
check_deprecation() {
|
|
|
|
REPO="$1"
|
|
|
|
if nice curl -SsL "$REPO" | grep "This repository has been archived by the owner on" >/dev/null; then
|
|
|
|
echo "DEPRECATED $REPO" | tee -a $OUT_FILE
|
|
|
|
else
|
|
|
|
echo "CHECKED $REPO"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# parallel exec: https://unix.stackexchange.com/a/216475
|
|
|
|
for app in $(echo $APPS); do
|
|
|
|
((i=i%J)); ((i++==0)) && wait
|
|
|
|
check_deprecation "$app" &
|
|
|
|
done
|
2022-03-20 12:31:21 +01:00
|
|
|
}
|
|
|
|
|
2023-08-03 10:45:18 +02:00
|
|
|
check_if_link_is_dead() {
|
|
|
|
command -v deadlink >/dev/null || { echo "deadlink is not installed" 1>&2; exit 127; }
|
|
|
|
|
|
|
|
tmp=$(mktemp)
|
|
|
|
grep -Po "http[^)]+" readme.md | grep -v "https://github.com" >$tmp
|
|
|
|
deadlink check $tmp
|
|
|
|
}
|
2022-10-01 05:06:48 +02:00
|
|
|
|
2023-08-03 10:45:18 +02:00
|
|
|
check_if_archived_on_github
|
|
|
|
check_if_link_is_dead
|