2025-01-24 19:16:21 +00:00
#!/bin/bash
2025-02-12 21:31:53 +00:00
#Check for mariadb vs. mysql
dbengine = ""
if [ [ -n $( type mariadb) ] ] ; then
dbengine = "mariadb"
elif [ [ -n $( type mysql) ] ] ; then
dbengine = "mysql"
else
exit
fi
2025-01-24 19:16:21 +00:00
db = "friendica"
tmpfile = "/tmp/sitesdown.txt"
idsdownfile = "/tmp/idsdown.txt"
2025-02-02 03:25:37 +00:00
url = friendica.example.net
avatarfolder = /var/www/friendica/avatar
avatarfolderescaped = ${ avatarfolder //// \\ / }
2025-01-24 19:16:21 +00:00
loop_1( ) {
2025-02-12 21:31:53 +00:00
site = $( echo " ${ sites } " | sed -e "s/http[s]*:\/\///g" )
if [ [ " ${ protocol } " = = "apub" ] ] ; then
#For ActivityPub sites, we test the well-known Webfinger
#We also need a valid (known) user for the Webfinger test
user = $( " ${ dbengine } " " ${ db } " -N -B -q -e " select \`addr\` from contact where baseurl = \"http:// ${ site } \" or url = \"http:// ${ site } \" or baseurl = \"https:// ${ site } \" or url = \"https:// ${ site } \" limit 1 " )
site_test = " https:// ${ site } /.well-known/webfinger?resource=acct: ${ user } "
#If the return message is in "application/jrd+json" format, the site is still up
#If the message contains a reference to Cloudflare, we don't add it to the list either, just in case
if ! grep -q -e "application/jrd+json" -e "HTTP.*200" -e "cloudflare" <( curl -s -L -I -m 30 -X HEAD " ${ site_test } " ) ; then
echo " ${ site } " >>" ${ tmpfile } "
echo " Added ${ site } "
fi
fi
#This is mostly for RSS feeds, we only check whether the site itself is up
2025-02-02 21:15:23 +00:00
#Skip check if the message contains a reference to Cloudflare
2025-02-12 21:31:53 +00:00
if [ [ " ${ protocol } " != "bsky" ] ] ; then
if ! grep -q -e "HTTP.*200" -e "cloudflare" <( curl -s -L -I -m 30 -X HEAD " https:// ${ site } " ) ; then
echo " ${ site } " >>" ${ tmpfile } "
echo " Added ${ site } "
fi
2025-01-24 19:16:21 +00:00
fi
}
loop_2( ) {
2025-01-24 19:34:48 +00:00
echo " Finding users for ${ b } "
2025-02-12 21:31:53 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " select \`id\`, \`nick\`, \`baseurl\` from contact c where c.\`id\` not in (select \`id\` from \`contact\` where \`id\` in (select \`contact-id\` from \`group_member\`) or \`id\` in (select \`cid\` from \`user-contact\`) or \`id\` in (select \`uid\` from \`user\`)) and (c.baseurl = \"http:// ${ b } \" or c.url = \"http:// ${ b } \" or c.baseurl = \"https:// ${ b } \" or c.url = \"https:// ${ b } \") " | sudo tee -a " ${ idsdownfile } " #&> /dev/null
2025-01-24 19:16:21 +00:00
}
loop_3( ) {
2025-02-01 23:12:02 +00:00
baseurltrimmed = $( echo " ${ baseurl } " | sed -e "s/http[s]*:\/\///g" )
echo " Deleting user ${ lineb } - ${ nick } @ ${ baseurltrimmed } "
2025-02-02 03:25:37 +00:00
#Find the pictures in the avatar folders and delete them
2025-02-05 14:59:57 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " select \`photo\`, \`thumb\`, \`micro\` from \`contact\` where \`id\` = ${ lineb } " | while read -r photo thumb micro; do
2025-02-02 03:25:37 +00:00
#If stored in avatar folder
2025-02-07 16:21:07 +00:00
if grep -v -q " ${ url } /avatar " <( echo " ${ photo } " ) ; then
2025-02-05 14:59:57 +00:00
#if [[ -z "${isavatar}" ]]
2025-02-02 03:25:37 +00:00
phototrimmed = $( echo " ${ photo } " | sed -e " s/https:\/\/ ${ url } \/avatar/ ${ avatarfolderescaped } /g " -e "s/\?ts.*//g" )
rm -rfv " ${ phototrimmed } "
thumbtrimmed = $( echo " ${ thumb } " | sed -e " s/https:\/\/ ${ url } \/avatar/ ${ avatarfolderescaped } /g " -e "s/\?ts.*//g" )
rm -rfv " ${ thumbtrimmed } "
microtrimmed = $( echo " ${ micro } " | sed -e " s/https:\/\/ ${ url } \/avatar/ ${ avatarfolderescaped } /g " -e "s/\?ts.*//g" )
rm -rfv " ${ microtrimmed } "
fi
done
2025-02-01 23:12:02 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " delete from \`post-thread\` where \`author-id\` = ${ lineb } or \`causer-id\` = ${ lineb } or \`owner-id\` = ${ lineb } "
" ${ dbengine } " " ${ db } " -N -B -q -e " delete from \`post-thread-user\` where \`author-id\` = ${ lineb } or \`causer-id\` = ${ lineb } or \`owner-id\` = ${ lineb } "
" ${ dbengine } " " ${ db } " -N -B -q -e " delete from \`post-user\` where \`author-id\` = ${ lineb } or \`causer-id\` = ${ lineb } or \`owner-id\` = ${ lineb } "
" ${ dbengine } " " ${ db } " -N -B -q -e " delete from \`post-tag\` where cid = ${ lineb } "
2025-02-12 21:31:53 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " create temporary table tmp_post (select \`uri-id\` from \`post\` where \`owner-id\` = ${ lineb } or \`author-id\` = ${ lineb } or \`causer-id\` = ${ lineb } ); delete p.* from \`post-content\` p inner join \`tmp_post\` t where p.\`uri-id\` = t.\`uri-id\`; "
2025-02-01 23:12:02 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " delete from \`post\` where \`owner-id\` = ${ lineb } or \`author-id\` = ${ lineb } or \`causer-id\` = ${ lineb } "
" ${ dbengine } " " ${ db } " -N -B -q -e " delete from \`photo\` where \`contact-id\` = ${ lineb } "
" ${ dbengine } " " ${ db } " -N -B -q -e " delete from \`contact\` where \`id\` = ${ lineb } "
2025-02-10 17:48:18 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " delete from \`apcontact\` where \`uri-id\` = ${ lineb } "
" ${ dbengine } " " ${ db } " -N -B -q -e " delete from \`diaspora-contact\` where \`uri-id\` = ${ lineb } "
2025-01-24 19:16:21 +00:00
}
#Check if our dependencies are installed
2025-02-05 14:59:57 +00:00
if [ [ -n $( type curl) && -n " ${ dbengine } " && -n $( type " ${ dbengine } " ) && -n $( type date) ] ] ; then
2025-01-24 19:16:21 +00:00
date
2025-02-12 21:39:17 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e "alter table \`contact\` add index if not exists \`contact_baseurl\` (baseurl)"
2025-02-05 14:59:57 +00:00
if [ [ ! -f " ${ tmpfile } " ] ] ; then
2025-01-24 19:16:21 +00:00
echo "Listing sites"
2025-02-12 21:31:53 +00:00
siteslist = $( " ${ dbengine } " " ${ db } " -N -B -q -e "select distinct baseurl, protocol from contact where baseurl != ''" | sort -b -f -n | sed -e "s/http:/https:/g" | uniq -i)
echo " Amount of unique sites: ${# siteslist [@] } "
while read -r sites protocol; do
loop_1 " ${ sites } " " ${ protocol } " &
2025-02-05 14:59:57 +00:00
if [ [ $( jobs -r -p | wc -l) -ge $(( $( getconf _NPROCESSORS_ONLN) * 2 )) ] ] ; then
2025-01-24 19:16:21 +00:00
wait -n
fi
2025-02-12 21:31:53 +00:00
done < <( echo " ${ siteslist } " )
2025-01-24 19:16:21 +00:00
wait
fi
sitesdown = ( )
while read -r line; do
2025-02-02 21:15:23 +00:00
sitesdown += ( " ${ line } " )
2025-02-05 14:59:57 +00:00
done <" ${ tmpfile } "
2025-02-12 21:31:53 +00:00
t = $( sort -n " ${ tmpfile } " | uniq)
echo " ${ t } " >" ${ tmpfile } "
echo " Amount of sites down: ${# sitesdown [@] } / ${# siteslist [@] } "
2025-02-05 14:59:57 +00:00
if [ [ ! -f " ${ idsdownfile } " ] ] ; then
for b in " ${ sitesdown [@] } " ; do
2025-01-24 19:34:48 +00:00
loop_2 " ${ b } " &
2025-02-05 14:59:57 +00:00
if [ [ $( jobs -r -p | wc -l) -ge $(( $( getconf _NPROCESSORS_ONLN) / 2 )) ] ] ; then
2025-01-24 19:16:21 +00:00
wait -n
fi
done
wait
2025-02-12 21:31:53 +00:00
u = $( sort -n " ${ idsdownfile } " | uniq)
echo " ${ u } " >" ${ idsdownfile } "
2025-01-24 19:16:21 +00:00
fi
2025-02-01 23:12:02 +00:00
while read -r lineb nick baseurl; do
2025-01-24 19:16:21 +00:00
#The community no longer exists, delete
2025-02-01 23:12:02 +00:00
loop_3 " ${ lineb } " " ${ nick } " " ${ baseurl } " &
2025-02-05 14:59:57 +00:00
if [ [ $( jobs -r -p | wc -l) -ge $(( $( getconf _NPROCESSORS_ONLN) / 2 )) ] ] ; then
2025-01-24 19:16:21 +00:00
wait -n
fi
wait
2025-02-05 14:59:57 +00:00
done <" ${ idsdownfile } "
rm " ${ tmpfile } " 2>/dev/null
rm " ${ idsdownfile } " 2>/dev/null
2025-02-10 04:51:29 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e "alter table \`post-thread\` auto_increment = 1"
" ${ dbengine } " " ${ db } " -N -B -q -e "alter table \`post-thread-user\` auto_increment = 1"
" ${ dbengine } " " ${ db } " -N -B -q -e "alter table \`post-user\` auto_increment = 1"
" ${ dbengine } " " ${ db } " -N -B -q -e "alter table \`post-tag\` auto_increment = 1"
" ${ dbengine } " " ${ db } " -N -B -q -e "alter table \`post\` auto_increment = 1"
" ${ dbengine } " " ${ db } " -N -B -q -e "alter table \`photo\` auto_increment = 1"
" ${ dbengine } " " ${ db } " -N -B -q -e "alter table \`contact\` auto_increment = 1"
2025-02-12 21:39:17 +00:00
" ${ dbengine } " " ${ db } " -e "alter table contact drop index \`contact_baseurl\`"
2025-01-24 19:16:21 +00:00
date
fi