public-scripts/friendica-non-follower-featured-posts.sh

52 lines
2.4 KiB
Bash
Raw Normal View History

2025-01-24 19:16:21 +00:00
#!/bin/bash
ca=100
camax=0
2025-02-05 14:59:57 +00:00
while [[ ${ca} -gt 0 ]]; do
ca=$(sudo mariadb friendica -B -N -q -e "delete from workerqueue where regexp_replace(regexp_replace(\`parameter\`, '\\\[', ''), '\\\]', '') not in (select \`id\` from \`contact\` where \`id\` in (select \`contact-id\` from \`group_member\`)) and \`command\` = \"UpdateContact\" limit ${ca}; select row_count();")
2025-02-05 14:59:57 +00:00
camax=$((camax + ca))
printf "\rUpdateContact\t\t%s\r" "${camax}"
2025-01-24 19:16:21 +00:00
done
printf "\rUpdateContact\t\t%s\n\r" "${camax}"
2025-01-24 19:16:21 +00:00
#echo "UpdateContact $camax"
cb=100
cbmax=0
2025-02-05 14:59:57 +00:00
while [[ ${cb} -gt 0 ]]; do
cb=$(sudo mariadb friendica -B -N -q -e "delete from workerqueue where regexp_replace(regexp_replace(\`parameter\`, '\\\[', ''), '\\\]', '') not in (select \`id\` from \`contact\` where \`id\` in (select \`contact-id\` from \`group_member\`)) and \`command\` = \"ContactDiscovery\" limit ${cb}; select row_count();")
2025-02-05 14:59:57 +00:00
cbmax=$((cbmax + cb))
printf "\rContactDiscovery\t%s\r" "${cbmax}"
2025-01-24 19:16:21 +00:00
done
printf "\rContactDiscovery\t%s\n\r" "${cbmax}"
2025-01-24 19:16:21 +00:00
#echo "ContactDiscovery $cbmax"
cc=100
ccmax=0
2025-02-05 14:59:57 +00:00
while [[ ${cc} -gt 0 ]]; do
cc=$(sudo mariadb friendica -B -N -q -e "delete from workerqueue where regexp_replace(substring_index(substring_index(\`parameter\`, '\\\"', -2), '\\\"', 1), '\\\\\\\\', '') in (select \`url\` from \`contact\` where \`id\` not in (select \`contact-id\` from \`group_member\`)) and \`command\` = \"UpdateGServer\" limit ${cd}; select row_count();")
2025-02-05 14:59:57 +00:00
ccmax=$((ccmax + cc))
printf "\rUpdateGServer\t\t%s\r" "${ccmax}"
2025-01-24 19:16:21 +00:00
done
printf "\rUpdateGServer\t\t%s\n\r" "${ccmax}"
#echo "UpdateGServer $ccmax"
2025-01-24 19:16:21 +00:00
cd=100
cdmax=0
2025-02-05 14:59:57 +00:00
while [[ ${cd} -gt 0 ]]; do
cd=$(sudo mariadb friendica -B -N -q -e "delete from workerqueue where regexp_replace(substring_index(substring_index(\`parameter\`, '\\\"', -2), '\\\"', 1), '\\\\\\\\', '') in (select \`url\` from \`contact\` where \`id\` not in (select \`contact-id\` from \`group_member\`)) and \`command\` = \"FetchFeaturedPosts\" limit ${cc}; select row_count();")
cdmax=$((ccmax + cc))
printf "\rFetchFeaturedPosts\t%s\r" "${cdmax}"
2025-01-24 19:16:21 +00:00
done
printf "\rFetchFeaturedPosts\t%s\n\r" "${cdmax}"
#echo "FetchFeaturedPosts $cdmax"
2025-01-24 19:16:21 +00:00
ce=100
cemax=0
2025-02-05 14:59:57 +00:00
while [[ ${ce} -gt 0 ]]; do
ce=$(sudo mariadb friendica -B -N -q -e "delete from workerqueue where command=\"ProcessQueue\" and pid=0 and done=0 limit ${ce}; select row_count();")
2025-02-05 14:59:57 +00:00
cemax=$((cemax + ce))
printf "\rProcessQueue\t\t%s\r" "${cemax}"
2025-01-24 19:16:21 +00:00
done
printf "\rProcessQueue\t\t%s\n\r" "${cemax}"
2025-01-24 19:16:21 +00:00
#echo "ProcessQueue $cemax"