2025-01-24 19:16:21 +00:00
#!/bin/bash
db = "friendica"
tmpfile = "/tmp/sitesdown.txt"
idsdownfile = "/tmp/idsdown.txt"
loop_1( ) {
2025-02-01 03:59:59 +00:00
sitereq = $( curl -s -L --head -m 20 --request GET " ${ a } " )
2025-01-24 19:34:48 +00:00
status = $( echo " ${ sitereq } " | grep -e "200" -e "cloudflare" )
if [ [ -z ${ status } ] ]
2025-01-24 19:16:21 +00:00
then
2025-01-24 19:34:48 +00:00
echo " ${ a } " >> " ${ tmpfile } "
echo " Added ${ a } "
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-01 03:59:59 +00:00
mariadb " ${ db } " -N -B -q -e " select \`id\`, \`name\` from contact c where c.\`id\` not in (select \`contact-id\` from group_member) and (c.baseurl = \" ${ b } \" or c.url = \" ${ b } \") " | sudo tee -a " ${ idsdownfile } " #&> /dev/null
2025-01-24 19:16:21 +00:00
}
loop_3( ) {
2025-02-01 03:59:59 +00:00
echo " Deleting user ${ lineb } - ${ username } "
2025-01-24 19:34:48 +00:00
mariadb " ${ db } " -N -B -q -e " delete from \`post-thread\` where \`author-id\` = ${ lineb } or \`causer-id\` = ${ lineb } or \`owner-id\` = ${ lineb } "
mariadb " ${ db } " -N -B -q -e " delete from \`post-thread-user\` where \`author-id\` = ${ lineb } or \`causer-id\` = ${ lineb } or \`owner-id\` = ${ lineb } "
mariadb " ${ db } " -N -B -q -e " delete from \`post-user\` where \`author-id\` = ${ lineb } or \`causer-id\` = ${ lineb } or \`owner-id\` = ${ lineb } "
mariadb " ${ db } " -N -B -q -e " delete from \`post-tag\` where cid = ${ lineb } "
mariadb " ${ db } " -N -B -q -e " delete from \`post\` where \`owner-id\` = ${ lineb } or \`author-id\` = ${ lineb } or \`causer-id\` = ${ lineb } "
mariadb " ${ db } " -N -B -q -e " delete from \`photo\` where \`contact-id\` = ${ lineb } "
mariadb " ${ db } " -N -B -q -e " delete from \`contact\` where \`id\` = ${ lineb } "
2025-01-24 19:16:21 +00:00
}
#Check if our dependencies are installed
2025-01-24 19:34:48 +00:00
if [ [ -n $( type curl) && -n $( type mariadb) && -n $( type date) ] ]
2025-01-24 19:16:21 +00:00
then
date
2025-01-24 19:34:48 +00:00
if [ [ ! -f " ${ tmpfile } " ] ]
2025-01-24 19:16:21 +00:00
then
echo "Listing sites"
2025-01-24 19:34:48 +00:00
sites = ( $( mariadb " ${ db } " -N -B -q -e "select distinct baseurl from contact" | sort -n | uniq ) )
2025-01-24 19:16:21 +00:00
echo " Amount of unique sites: ${# sites [@] } "
for a in " ${ sites [@] } "
do
2025-01-24 19:34:48 +00:00
loop_1 " ${ a } " &
2025-01-24 19:16:21 +00:00
if [ [ $( jobs -r -p | wc -l) -ge $( expr $( getconf _NPROCESSORS_ONLN) *2) ] ]
then
wait -n
fi
done
wait
fi
sitesdown = ( )
while read -r line; do
2025-01-24 19:34:48 +00:00
sitesdown += ( ${ line } )
done < " ${ tmpfile } "
2025-01-24 19:16:21 +00:00
echo " Amount of sites down: ${# sitesdown [@] } / ${# sites [@] } "
2025-01-24 19:34:48 +00:00
if [ [ ! -f " ${ idsdownfile } " ] ]
2025-01-24 19:16:21 +00:00
then
for b in " ${ sitesdown [@] } "
do
2025-01-24 19:34:48 +00:00
loop_2 " ${ b } " &
2025-01-24 19:16:21 +00:00
if [ [ $( jobs -r -p | wc -l) -ge $( expr $( getconf _NPROCESSORS_ONLN) /2) ] ]
then
wait -n
fi
done
wait
#cat "$idsdownfile" | sort -n | uniq > "$idsdownfile"
fi
2025-02-01 03:59:59 +00:00
#idsdown=()
#echo "$idsdownfile" | sort | uniq > "$idsdownfile"
while read -r lineb username; do
#idsdown+=($lineb)
2025-01-24 19:16:21 +00:00
#The community no longer exists, delete
2025-01-24 19:34:48 +00:00
loop_3 " ${ lineb } " &
2025-01-24 19:16:21 +00:00
if [ [ $( jobs -r -p | wc -l) -ge $( expr $( getconf _NPROCESSORS_ONLN) /2) ] ]
then
wait -n
fi
wait
2025-01-24 19:34:48 +00:00
done < " ${ idsdownfile } "
rm " ${ tmpfile } " 2> /dev/null
rm " ${ idsdownfile } " 2> /dev/null
2025-01-24 19:16:21 +00:00
date
fi