fix: Remove parallel code for a single-item deletion; fix input ID parameter
This commit is contained in:
parent
70f5f2e9a0
commit
e51fbc72d4
1 changed files with 64 additions and 93 deletions
|
@ -9,13 +9,17 @@ else
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
db="friendica"
|
db="friendica"
|
||||||
tmpfile=/tmp/friendica-delete-old-users.csv
|
|
||||||
url=friendica.example.net
|
url=friendica.example.net
|
||||||
avatarfolder=/var/www/friendica/avatar
|
avatarfolder=/var/www/friendica/avatar
|
||||||
avatarfolderescaped=${avatarfolder////\\/}
|
avatarfolderescaped=${avatarfolder////\\/}
|
||||||
input_id=${1:-"0"}
|
input_id=${1:-""}
|
||||||
|
|
||||||
loop() {
|
#Check if our dependencies are installed
|
||||||
|
if [[ -n $(type curl) && -n "${dbengine}" && -n $(type "${dbengine}") && -n $(type date) ]]; then
|
||||||
|
#Check if there was an input id; if not, skip
|
||||||
|
if [[ "${input_id}" != "" ]]; then
|
||||||
|
date
|
||||||
|
while read -r id nick baseurl lastitem; do
|
||||||
baseurltrimmed=$(echo "${baseurl}" | sed -e "s/http[s]*:\/\///g")
|
baseurltrimmed=$(echo "${baseurl}" | sed -e "s/http[s]*:\/\///g")
|
||||||
#Find the pictures in the avatar folders and delete them
|
#Find the pictures in the avatar folders and delete them
|
||||||
picturecount=0
|
picturecount=0
|
||||||
|
@ -42,19 +46,6 @@ loop() {
|
||||||
contactcount=$("${dbengine}" "${db}" -N -B -q -e "delete from \`contact\` where \`id\` = ${id}; select row_count();" || echo 0)
|
contactcount=$("${dbengine}" "${db}" -N -B -q -e "delete from \`contact\` where \`id\` = ${id}; select row_count();" || echo 0)
|
||||||
apcontactcount=$("${dbengine}" "${db}" -N -B -q -e "delete from \`apcontact\` where \`uri-id\` = ${id}; select row_count();" || echo 0)
|
apcontactcount=$("${dbengine}" "${db}" -N -B -q -e "delete from \`apcontact\` where \`uri-id\` = ${id}; select row_count();" || echo 0)
|
||||||
diasporacontactcount=$("${dbengine}" "${db}" -N -B -q -e "delete from \`diaspora-contact\` where \`uri-id\` = ${id}; select row_count();" || echo 0)
|
diasporacontactcount=$("${dbengine}" "${db}" -N -B -q -e "delete from \`diaspora-contact\` where \`uri-id\` = ${id}; select row_count();" || echo 0)
|
||||||
while read -r tmp_picturecount tmp_postthreadcount tmp_postthreadusercount tmp_postusercount tmp_posttagcount tmp_postcontentcount tmp_postcount tmp_photocount tmp_contactcount tmp_apcontactcount tmp_diasporacontactcount; do
|
|
||||||
picturecount=$((picturecount + tmp_picturecount))
|
|
||||||
postthreadcount=$((postthreadcount + tmp_postthreadcount))
|
|
||||||
postthreadusercount=$((postthreadusercount + tmp_postthreadusercount))
|
|
||||||
postusercount=$((postusercount + tmp_postusercount))
|
|
||||||
posttagcount=$((posttagcount + tmp_posttagcount))
|
|
||||||
postcontentcount=$((postcontentcount + tmp_postcontentcount))
|
|
||||||
postcount=$((postcount + tmp_postcount))
|
|
||||||
photocount=$((photocount + tmp_photocount))
|
|
||||||
contactcount=$((contactcount + tmp_contactcount))
|
|
||||||
apcontactcount=$((apcontactcount + tmp_apcontactcount))
|
|
||||||
diasporacontactcount=$((diasporacontactcount + tmp_diasporacontactcount))
|
|
||||||
done <"${tmpfile}"
|
|
||||||
response_left=$(printf "%s %s %s@%s " "${id}" "${lastitem::-9}" "${nick}" "${baseurltrimmed}")
|
response_left=$(printf "%s %s %s@%s " "${id}" "${lastitem::-9}" "${nick}" "${baseurltrimmed}")
|
||||||
response=$(printf "%spicture:%s " "${response}" "${picturecount}")
|
response=$(printf "%spicture:%s " "${response}" "${picturecount}")
|
||||||
response=$(printf "%spost-thread:%s " "${response}" "${postthreadcount}")
|
response=$(printf "%spost-thread:%s " "${response}" "${postthreadcount}")
|
||||||
|
@ -67,7 +58,6 @@ loop() {
|
||||||
response=$(printf "%scontact:%s " "${response}" "${contactcount}")
|
response=$(printf "%scontact:%s " "${response}" "${contactcount}")
|
||||||
response=$(printf "%sapcontact:%s " "${response}" "${apcontactcount}")
|
response=$(printf "%sapcontact:%s " "${response}" "${apcontactcount}")
|
||||||
response=$(printf "%sdiaspora-contact:%s " "${response}" "${diasporacontactcount}")
|
response=$(printf "%sdiaspora-contact:%s " "${response}" "${diasporacontactcount}")
|
||||||
echo "${picturecount}" "${postthreadcount} ${postthreadusercount} ${postusercount} ${posttagcount} ${postcontentcount} ${postcount} ${photocount} ${contactcount} ${apcontactcount} ${diasporacontactcount}" >"${tmpfile}"
|
|
||||||
#Previous line clearance
|
#Previous line clearance
|
||||||
#Measure length of string, blank only the excess
|
#Measure length of string, blank only the excess
|
||||||
#Since this string is panned to both sides, we will need to account for two lengths
|
#Since this string is panned to both sides, we will need to account for two lengths
|
||||||
|
@ -92,27 +82,8 @@ loop() {
|
||||||
done
|
done
|
||||||
response=$(printf "%s%s%s" "${response_left}" "${blank_string}" "${response}")
|
response=$(printf "%s%s%s" "${response_left}" "${blank_string}" "${response}")
|
||||||
printf "%s\r" "${response}"
|
printf "%s\r" "${response}"
|
||||||
}
|
done < <("${dbengine}" "${db}" -N -B -q -e "select \`id\`, \`nick\`, \`baseurl\`, \`last-item\` from contact where \`id\` = ${input_id}")
|
||||||
|
|
||||||
#Check if our dependencies are installed
|
|
||||||
if [[ -n $(type curl) && -n "${dbengine}" && -n $(type "${dbengine}") && -n $(type date) ]]; then
|
|
||||||
#Check if there was an input id; if not, skip
|
|
||||||
if [[ "${input_id}" -gt 0 ]]; then
|
|
||||||
date
|
|
||||||
touch "${tmpfile}"
|
|
||||||
echo "0 0 0 0 0 0 0 0 0 0 0" >"${tmpfile}"
|
|
||||||
"${dbengine}" "${db}" -N -B -q -e \
|
|
||||||
"select \`id\`, \`nick\`, \`baseurl\`, \`last-item\` from contact c where \
|
|
||||||
c.\`id\` = ${input_id}" |
|
|
||||||
while read -r id nick baseurl lastitem; do
|
|
||||||
loop "${id}" "${nick}" "${baseurl}" &
|
|
||||||
if [[ $(jobs -r -p | wc -l) -ge $(getconf _NPROCESSORS_ONLN) ]]; then
|
|
||||||
wait -n
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
wait
|
|
||||||
printf "\n\r"
|
printf "\n\r"
|
||||||
rm -rf "${tmpfile}"
|
|
||||||
date
|
date
|
||||||
else
|
else
|
||||||
echo "${input_id}"
|
echo "${input_id}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue