2025-02-03 16:14:57 +00:00
#!/bin/bash
#Set your parameters here
2025-02-03 16:16:20 +00:00
url = friendica.example.net
2025-02-03 16:14:57 +00:00
user = friendica
group = www-data
2025-02-07 14:51:18 +00:00
fileperm = 660
2025-02-12 21:33:02 +00:00
dbengine = ""
if [ [ -n $( type mariadb) ] ] ; then
dbengine = "mariadb"
elif [ [ -n $( type mysql) ] ] ; then
dbengine = "mysql"
else
exit
fi
2025-02-03 16:14:57 +00:00
db = friendica
folder = /var/www/friendica
2025-02-11 14:55:06 +00:00
timeout = 60
#Command-line parameter number 1: whether to enable the more intensive optimizations (1=on). Defaults to 0=off.
intensive_optimizations = ${ 1 :- "0" }
if [ [ " ${ intensive_optimizations } " != "0" && " ${ intensive_optimizations } " != "1" ] ] ; then
intensive_optimizations = 0
fi
#Command-line parameter number 2: multiplier for the amount of threads, 1 = as many as the device has cores. Defaults to 1.
thread_multiplier = ${ 2 :- "1" }
if [ [ ! " ${ thread_multiplier } " = ~ ^[ 0-9] +$ || $(( 10# ${ thread_multiplier } )) -le 0 ] ] ; then
thread_multiplier = 1
fi
#Command-line parameter number 3: whether to display the amount of time taken for certain processes (1=on). Defaults to 0=off.
time_counter = ${ 3 :- "0" }
if [ [ " ${ time_counter } " != "0" && " ${ time_counter } " != "1" ] ] ; then
time_counter = 0
fi
2025-02-11 22:44:23 +00:00
#Command-line parameter number 4: last known ID to have been successfully processed. Defaults to 0
lastid = ${ 4 :- "0" }
if [ [ ! " ${ lastid } " = ~ ^[ 0-9] +$ || $(( 10# ${ lastid } )) -le 0 ] ] ; then
lastid = 0
fi
2025-02-24 11:03:57 -06:00
#Command-line parameter number 5: whether to enable the lockfile and the item counter, or disable it for a performance boost (0=off). Defaults to 1=on.
lockfile_enabled = ${ 5 :- "1" }
if [ [ " ${ lockfile_enabled } " != "0" && " ${ lockfile_enabled } " != "1" ] ] ; then
lockfile_enabled = 1
fi
2025-02-10 20:43:39 +00:00
nfolder = "/tmp/friendica-remove-invalid-photos"
2025-02-10 03:25:14 +00:00
nfile = " ${ nfolder } /n $( date +%s) .csv "
nlock = " ${ nfolder } /n $( date +%s) .lock "
if [ [ ! -d " ${ nfolder } " ] ] ; then
mkdir " ${ nfolder } "
fi
if [ [ -f " ${ nfile } " ] ] ; then
2025-02-09 23:29:49 +00:00
rm -rf " ${ nfile } " && touch " ${ nfile } "
else
touch " ${ nfile } "
fi
2025-02-10 03:25:14 +00:00
if [ [ -f " ${ nlock } " ] ] ; then
2025-02-10 20:28:15 +00:00
rm -rf " ${ nlock } " && touch " ${ nlock } "
else
touch " ${ nlock } "
2025-02-09 23:29:49 +00:00
fi
2025-02-03 16:14:57 +00:00
#Internal parameters:
2025-02-10 00:32:13 +00:00
#Number of invalid avatars found
2025-02-09 02:31:07 +00:00
n = 0
2025-02-05 15:03:28 +00:00
#Total number of entries processed
nt = 0
#Highest possible ID known
2025-02-10 17:49:28 +00:00
maxid = $( " ${ dbengine } " " ${ db } " -B -N -q -e "select max(\`id\`) from contact" )
2025-02-05 15:03:28 +00:00
#Limit per batch
2025-02-12 21:33:02 +00:00
#limit=$(((maxid / 1000) + 1))
limit = " ${ maxid } "
2025-02-10 03:25:14 +00:00
dbcount = 0
2025-02-11 14:55:06 +00:00
idcount = 0
if [ [ " ${ intensive_optimizations } " -gt 0 ] ] ; then
2025-02-10 03:25:14 +00:00
#https:// = 8 characters | /avatar/ = 8 characters
indexlength = $(( " ${# url } " + 16 ))
2025-02-10 17:49:28 +00:00
" ${ dbengine } " " ${ db } " -e " alter table contact add index if not exists photo_index (photo( ${ indexlength } )) "
2025-02-13 18:59:32 +00:00
dbcount = $( " ${ dbengine } " " ${ db } " -B -N -q -e " select count(\`id\`) from \`contact\` where \`id\` > ${ lastid } and (\`photo\` like 'https:\/\/ ${ url } /avatar/%' or (\`photo\` = '' and not \`avatar\` = '') or (\`avatar\` = '' and not \`photo\` = '')) " )
2025-02-24 11:03:57 -06:00
#dbcount=$("${dbengine}" "${db}" -B -N -q -e "select count(\`id\`) from \`contact\` where \`id\` > ${lastid} and (\`photo\` like 'https:\/\/${url}/avatar/%')")
#dbcount=$("${dbengine}" "${db}" -B -N -q -e "select count(\`id\`) from \`contact\` where \`id\` > ${lastid} and ((\`photo\` = '' and not \`avatar\` = '') or (\`avatar\` = '' and not \`photo\` = ''))")
2025-02-10 03:25:14 +00:00
else
2025-02-13 18:59:32 +00:00
dbcount = $( " ${ dbengine } " " ${ db } " -B -N -q -e " select count(\`id\`) from \`contact\` where \`id\` > ${ lastid } and (\`photo\` like 'https:\/\/ ${ url } /avatar/%' or (\`photo\` = '' and not \`avatar\` = '') or (\`avatar\` = '' and not \`photo\` = '')) and (\`id\` in (select \`cid\` from \`user-contact\`) or \`id\` in (select \`uid\` from \`user\`) or \`id\` in (select \`contact-id\` from \`group_member\`)) " )
2025-02-24 11:03:57 -06:00
#dbcount=$("${dbengine}" "${db}" -B -N -q -e "select count(\`id\`) from \`contact\` where \`id\` > ${lastid} and (\`photo\` like 'https:\/\/${url}/avatar/%') and (\`id\` in (select \`cid\` from \`user-contact\`) or \`id\` in (select \`uid\` from \`user\`) or \`id\` in (select \`contact-id\` from \`group_member\`))")
#dbcount=$("${dbengine}" "${db}" -B -N -q -e "select count(\`id\`) from \`contact\` where \`id\` > ${lastid} and ((\`photo\` = '' and not \`avatar\` = '') or (\`avatar\` = '' and not \`photo\` = '')) and (\`id\` in (select \`cid\` from \`user-contact\`) or \`id\` in (select \`uid\` from \`user\`) or \`id\` in (select \`contact-id\` from \`group_member\`))")
2025-02-10 03:25:14 +00:00
fi
2025-02-09 23:29:49 +00:00
loop( ) {
2025-02-11 14:55:06 +00:00
if [ [ " ${ time_counter } " -eq 1 ] ] ; then
t_id = $(( $( date +%s%N) / 1000000 ))
fi
2025-02-10 00:32:13 +00:00
result_string = ""
nl = 0
error_found = 0
2025-02-11 14:55:06 +00:00
#Lockfile-protected read
2025-02-24 11:03:57 -06:00
if [ [ ${ lockfile_enabled } -eq 1 ] ] ; then
r = 0
if [ [ " ${ time_counter } " -eq 1 ] ] ; then
t_r = $(( $( date +%s%N) / 1000000 ))
2025-02-10 20:28:15 +00:00
fi
2025-02-24 11:03:57 -06:00
#Fallback in case the process dies
(
sleep " ${ timeout } " s
if [ [ " ${ r } " -eq 0 ] ] ; then
rm -rf " ${ nlock } "
fi
) &
while [ [ " ${ r } " -eq 0 ] ] ; do
if [ [ ! -d " ${ nfolder } " ] ] ; then
mkdir " ${ nfolder } "
fi
if [ [ ! -f " ${ nlock } " ] ] ; then
touch " ${ nlock } "
fi
if [ [ -f " ${ nlock } " && $( cat " ${ nlock } " 2>/dev/null || echo 0) = = "" ] ] ; then
rm -rf " ${ nlock } " && touch " ${ nlock } " && echo " ${ id } " | tee " ${ nlock } " & >/dev/null
if [ [ -f " ${ nlock } " && $( grep -e "[0-9]" " ${ nlock } " 2>/dev/null || echo 0) = = " ${ id } " ] ] ; then
read -r n_tmp nt_tmp <" ${ nfile } " || break
if [ [ -n " ${ n_tmp } " && -n " ${ nt_tmp } " ] ] ; then
n = " ${ n_tmp } "
nt = " ${ nt_tmp } "
if [ [ -f " ${ nlock } " ] ] ; then
rm -rf " ${ nlock } " && touch " ${ nlock } " && echo "" >" ${ nlock } "
fi
r = 1
2025-02-10 18:04:00 +00:00
fi
2025-02-24 11:03:57 -06:00
elif [ [ -f " ${ nlock } " ] ] ; then
nlm = $( grep -e "[0-9]" " ${ nlock } " 2>/dev/null || echo 0)
if [ [ -n " ${ nlm } " ] ] ; then
nlmt = $(( 10# ${ nlm } ))
if [ [ " ${ nlmt } " -lt $(( id + limit)) ] ] ; then
rm -rf " ${ nlock } " && touch " ${ nlock } " && echo "" >" ${ nlock } "
fi
else
2025-02-11 14:55:06 +00:00
rm -rf " ${ nlock } " && touch " ${ nlock } " && echo "" >" ${ nlock } "
fi
fi
2025-02-10 00:07:25 +00:00
fi
2025-02-24 11:03:57 -06:00
done
if [ [ " ${ time_counter } " -eq 1 ] ] ; then
result_string = $( printf "%s R%dms" " ${ result_string } " $(( $(( $( date +%s%N) / 1000000 )) - t_r)) )
2025-02-09 23:29:49 +00:00
fi
2025-02-11 14:55:06 +00:00
fi
2025-02-09 23:29:49 +00:00
if [ [ -n " ${ id } " ] ] ; then
while read -r avatar photo thumb micro; do
if [ [ -n " ${ photo } " && -n " ${ thumb } " && -n " ${ micro } " ] ] ; then
#If there is a photo
folderescaped = ${ folder //// \\ / }
#Substitute the URL path with the folder path so we can search for it in the local file system
#Photo is nominally 320px, actually 300px
k_photo = $( sed -e " s/https:\/\/ ${ url } / ${ folderescaped } /g " -e "s/\?ts=.*//g" <<< " ${ photo } " )
#Thumb is 80px
k_thumb = $( sed -e " s/https:\/\/ ${ url } / ${ folderescaped } /g " -e "s/\?ts=.*//g" <<< " ${ thumb } " )
#Micro is 48px
k_micro = $( sed -e " s/https:\/\/ ${ url } / ${ folderescaped } /g " -e "s/\?ts=.*//g" <<< " ${ micro } " )
#If any of the images is not found in the filesystem
if [ [ ! -e " ${ k_photo } " || ! -e " ${ k_thumb } " || ! -e " ${ k_micro } " ] ] ; then
2025-02-07 18:59:53 +00:00
#If the avatar uses the standard fallback picture or is local, we cannot use it as a base
#If we have a remote avatar as a fallback, download it
2025-02-09 23:29:49 +00:00
if [ [ -n " ${ avatar } " && $( grep -q -v -e " ${ url } " -e "images/person" <( echo " ${ avatar } " ) ) -gt 0 ] ] ; then
result_string = $( printf "%s Remote %s" " ${ result_string } " " ${ avatar } " )
2025-02-09 02:31:07 +00:00
nl = 1
2025-02-07 18:59:53 +00:00
sudo -u " ${ user } " curl " ${ avatar } " -s -o " ${ k_photo } "
#If the file is a valid picture (not empty, not text)
if file " ${ k_photo } " | grep -q -v -e "text" -e "empty" -e "symbolic link" -e "directory" ; then
#Also fetch for thumb/micro and resize
#As the photo is the largest version we have, we will use it as the base, and leave it last to convert
2025-02-10 17:49:28 +00:00
convert " ${ k_photo } " -resize 80x80 -depth 16 " ${ k_thumb } " && chmod " ${ fileperm } " " ${ k_thumb } " && chown " ${ user } : ${ group } " " ${ k_thumb } "
convert " ${ k_photo } " -resize 48x48 -depth 16 " ${ k_micro } " && chmod " ${ fileperm } " " ${ k_micro } " && chown " ${ user } : ${ group } " " ${ k_micro } "
convert " ${ k_photo } " -resize 300x300 -depth 16 " ${ k_photo } " && chmod " ${ fileperm } " " ${ k_photo } " && chown " ${ user } : ${ group } " " ${ k_photo } "
2025-02-07 18:59:53 +00:00
result_string = $( printf "%s (generated)" " ${ result_string } " )
2025-02-09 02:31:07 +00:00
error_found = 1
2025-02-07 18:59:53 +00:00
else
#If the avatar is not valid, set it as blank in the database
2025-02-10 17:49:28 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \" ${ id } \" "
rm -rf " ${ k_photo } " " ${ k_thumb } " " ${ k_micro } "
2025-02-07 18:59:53 +00:00
result_string = $( printf "%s (blanked)" " ${ result_string } " )
2025-02-09 02:31:07 +00:00
error_found = 1
2025-02-07 18:59:53 +00:00
fi
else
2025-02-09 02:31:07 +00:00
result_string = $( printf "%s No remote" " ${ result_string } " )
2025-02-09 23:29:49 +00:00
#If no remote avatar is found, then we blank the photo/thumb/micro and let the avatar cache process fix them later
2025-02-10 17:49:28 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " update contact set photo = \"\", thumb = \"\", micro = \"\" where id = \" ${ id } \" "
2025-02-09 23:29:49 +00:00
result_string = $( printf "%s (blanked)" " ${ result_string } " )
2025-02-09 02:31:07 +00:00
error_found = 1
2025-02-06 14:39:52 +00:00
fi
2025-02-09 23:29:49 +00:00
else
2025-02-11 14:55:06 +00:00
if [ [ " ${ time_counter } " -eq 1 ] ] ; then
t = $(( $( date +%s%N) / 1000000 ))
fi
2025-02-09 23:29:49 +00:00
#If the images are all found in the filesystem, but fetching any of the images causes an error
if [ [ -s $( curl --fail-early \
-s " ${ photo } " -X HEAD -I --http2-prior-knowledge -4 -N --next \
-s " ${ thumb } " -X HEAD -I --http2-prior-knowledge -4 -N --next \
-s " ${ micro } " -X HEAD -I --http2-prior-knowledge -4 -N |
grep -q "content-type: image" ) ] ] ; then
2025-02-11 14:55:06 +00:00
if [ [ " ${ time_counter } " -eq 1 ] ] ; then
result_string = $( printf "%s F%dms" " ${ result_string } " $(( $(( $( date +%s%N) / 1000000 )) - t)) )
fi
2025-02-09 23:29:49 +00:00
result_string = $( printf " ${ result_string } Fetch error: %s " " ${ photo } " )
2025-02-10 17:49:28 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \" ${ id } \" "
2025-02-09 23:29:49 +00:00
result_string = $( printf "%s (blanked)" " ${ result_string } " )
nl = 1
error_found = 1
else
2025-02-11 14:55:06 +00:00
if [ [ " ${ time_counter } " -eq 1 ] ] ; then
result_string = $( printf "%s F%dms" " ${ result_string } " $(( $(( $( date +%s%N) / 1000000 )) - t)) )
fi
2025-02-09 23:29:49 +00:00
result_string = $( printf "%s (FOUND)" " ${ result_string } " )
error_found = 0
fi
2025-02-05 15:03:28 +00:00
fi
2025-02-09 23:29:49 +00:00
else
#If there is no photo
result_string = $( printf "%s No local" " ${ result_string } " )
#If the avatar uses the standard fallback picture or is local, we cannot use it as a base
#If we have a remote avatar as a fallback, download it
if [ [ -n " ${ avatar } " && $( grep -q -v -e " ${ url } " -e "images/person" <( echo " ${ avatar } " ) ) -gt 0 ] ] ; then
result_string = $( printf " ${ result_string } Remote %s " " ${ avatar } " )
2025-02-09 02:31:07 +00:00
nl = 1
2025-02-09 23:29:49 +00:00
sudo -u " ${ user } " curl " ${ avatar } " -s -o " ${ k_photo } "
#If the file is a valid picture (not empty, not text)
if file " ${ k_photo } " | grep -q -v -e "text" -e "empty" -e "symbolic link" -e "directory" ; then
#Also fetch for thumb/micro and resize
#As the photo is the largest version we have, we will use it as the base, and leave it last to convert
2025-02-10 17:49:28 +00:00
convert " ${ k_photo } " -resize 80x80 -depth 16 " ${ k_thumb } " && chmod " ${ fileperm } " " ${ k_thumb } " && chown " ${ user } : ${ group } " " ${ k_thumb } "
convert " ${ k_photo } " -resize 48x48 -depth 16 " ${ k_micro } " && chmod " ${ fileperm } " " ${ k_micro } " && chown " ${ user } : ${ group } " " ${ k_micro } "
convert " ${ k_photo } " -resize 300x300 -depth 16 " ${ k_photo } " && chmod " ${ fileperm } " " ${ k_photo } " && chown " ${ user } : ${ group } " " ${ k_photo } "
2025-02-09 23:29:49 +00:00
result_string = $( printf "%s (generated)" " ${ result_string } " )
error_found = 1
else
#If the avatar is not valid, set it as blank in the database
2025-02-10 17:49:28 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \" ${ id } \" "
rm -rf " ${ k_photo } " " ${ k_thumb } " "{k_micro}"
2025-02-09 23:29:49 +00:00
result_string = $( printf "%s (blanked)" " ${ result_string } " )
error_found = 1
fi
else
result_string = $( printf "%s No remote" " ${ result_string } " )
2025-02-10 03:25:14 +00:00
#If the avatar is not valid, set it as blank in the database
2025-02-10 17:49:28 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \" ${ id } \" "
2025-02-10 03:25:14 +00:00
result_string = $( printf "%s (blanked)" " ${ result_string } " )
2025-02-09 23:29:49 +00:00
#If no remote avatar is found, we would blank the photo/thumb/micro and let the avatar cache process fix them later, but it's empty already here
error_found = 1
2025-02-07 18:59:53 +00:00
fi
2025-02-09 23:29:49 +00:00
fi
if [ [ " ${ error_found } " -gt 0 ] ] ; then
2025-02-10 17:49:28 +00:00
" ${ dbengine } " " ${ db } " -N -B -q -e " insert ignore into workerqueue (command, parameter, priority, created) \
values ( \" UpdateContact\" , \" [ ${ id } ] \" , 20, concat( curdate( ) , \" \" , curtime( ) ) ) ; "
2025-02-09 23:29:49 +00:00
result_string = $( printf "%s (added)" " ${ result_string } " )
nl = 1
fi
lastid = " ${ id } "
2025-02-10 17:49:28 +00:00
done < <( " ${ dbengine } " " ${ db } " -B -N -q -e " select \`avatar\`, \`photo\`, \`thumb\`, \`micro\` from \`contact\` where \`id\` = ${ id } " )
2025-02-09 23:29:49 +00:00
fi
2025-02-24 11:03:57 -06:00
if [ [ ${ lockfile_enabled } -eq 1 ] ] ; then
w = 0
if [ [ " ${ time_counter } " -eq 1 ] ] ; then
t_w = $(( $( date +%s%N) / 1000000 ))
2025-02-11 14:55:06 +00:00
fi
2025-02-24 11:03:57 -06:00
while [ [ " ${ w } " -eq 0 ] ] ; do
if [ [ ! -d " ${ nfolder } " ] ] ; then
mkdir " ${ nfolder } "
fi
if [ [ ! -f " ${ nlock } " ] ] ; then
#n is increased only if error_found = 1
touch " ${ nlock } "
fi
if [ [ -f " ${ nlock } " && $( cat " ${ nlock } " 2>/dev/null || echo "" ) = = "" ] ] ; then
rm -rf " ${ nlock } " && touch " ${ nlock } " && echo " ${ id } " | tee " ${ nlock } " & >/dev/null
if [ [ -f " ${ nlock } " && $( grep -e "[0-9]" " ${ nlock } " 2>/dev/null || echo 0) = = " ${ id } " ] ] ; then
read -r n_tmp nt_tmp <" ${ nfile } " || break
if [ [ -n " ${ n_tmp } " && -n " ${ nt_tmp } " ] ] ; then
if [ [ $( grep -e "[0-9]" " ${ nlock } " 2>/dev/null || echo 0) = = " ${ id } " ] ] ; then
if [ [ " ${ n_tmp } " -ge " ${ n } " ] ] ; then
n = $(( n_tmp + error_found))
else
n = $(( n + error_found))
fi
if [ [ " ${ nt_tmp } " -ge " ${ nt } " ] ] ; then
nt = $(( nt_tmp + 1 ))
else
nt = $(( nt + 1 ))
fi
echo " ${ n } ${ nt } " >" ${ nfile } "
if [ [ -f " ${ nlock } " ] ] ; then
rm -rf " ${ nlock } " && touch " ${ nlock } " && echo "" >" ${ nlock } "
fi
w = 1
2025-02-10 18:04:00 +00:00
fi
2025-02-10 00:07:25 +00:00
fi
fi
fi
2025-02-24 11:03:57 -06:00
done
if [ [ " ${ time_counter } " -eq 1 ] ] ; then
result_string = $( printf "%s W%dms" " ${ result_string } " $(( $(( $( date +%s%N) / 1000000 )) - t_w)) )
2025-02-05 15:03:28 +00:00
fi
2025-02-24 11:03:57 -06:00
fi
2025-02-11 14:55:06 +00:00
if [ [ " ${ time_counter } " -eq 1 ] ] ; then
result_string = $( printf "%s T%dms" " ${ result_string } " $(( $(( $( date +%s%N) / 1000000 )) - t_id)) )
fi
2025-02-24 11:03:57 -06:00
final_string = ""
if [ [ ${ lockfile_enabled } -eq 1 ] ] ; then
final_string = $( printf "E%8d F%8d/%8d " " ${ n } " " ${ nt } " " ${ dbcount } " )
fi
final_string = $( printf "%sT%8d/%8d %s" " ${ final_string } " " ${ lastid } " " ${ maxid } " " ${ result_string } " )
2025-02-09 23:29:49 +00:00
final_string_length = " ${# final_string } "
#Previous line clearance
#Measure length of string, blank only the excess
2025-03-06 09:31:04 -06:00
#The string that will be used to insert the blanks
2025-02-09 23:29:49 +00:00
blank_string = ""
2025-03-06 09:31:04 -06:00
columns_length = " ${ COLUMNS } "
#Account for the case where the string is more than a terminal line long
while [ [ " ${ final_string_length } " -gt " ${ columns_length } " ] ] ; do
columns_length = $(( columns_length + COLUMNS))
done
blank_string_length = $(( columns_length - final_string_length))
#Add enough blank spaces to fill the rest of the line
2025-02-09 23:29:49 +00:00
for ( ( count = 0; count < " ${ blank_string_length } " ; count++) ) ; do
blank_string = $( printf "%s " " ${ blank_string } " )
done
2025-03-06 09:31:04 -06:00
#Add backspaces to align the next output
for ( ( count = 0; count < $(( final_string_length + blank_string_length)) ; count++) ) ; do
final_string = $( printf "\b%s" " ${ final_string } " )
2025-02-11 14:55:06 +00:00
done
2025-03-06 09:31:04 -06:00
final_string = $( printf "%s%s" " ${ final_string } " " ${ blank_string } " )
2025-02-09 23:29:49 +00:00
#Add a new line only when necessary
if [ [ " ${ nl } " -eq 1 ] ] ; then
final_string = $( printf "%s\n\r\n" " ${ final_string } " )
fi
printf "%s\r" " ${ final_string } "
}
#Go to the Friendica installation
cd " ${ folder } " || exit
2025-02-10 00:32:13 +00:00
echo " ${ n } ${ nt } " >" ${ nfile } "
2025-02-12 21:33:02 +00:00
#until [[ "${idcount}" -ge "${dbcount}" || "${nt}" -gt "${dbcount}" || "${lastid}" -gt "${maxid}" ]]; do
c = ""
if [ [ " ${ intensive_optimizations } " -gt 0 ] ] ; then
c = $( " ${ dbengine } " " ${ db } " -B -N -q -e " select \`id\` from \`contact\` where \`id\` > ${ lastid } and (\`photo\` like 'https:\/\/ ${ url } /avatar/%' or (\`photo\` = '' and not \`avatar\` = '') or (\`avatar\` = '' and not \`photo\` = '')) order by id limit ${ limit } " )
2025-02-24 11:03:57 -06:00
#c=$("${dbengine}" "${db}" -B -N -q -e "select \`id\` from \`contact\` where \`id\` > ${lastid} and (\`photo\` like 'https:\/\/${url}/avatar/%') order by id limit ${limit}")
#c=$("${dbengine}" "${db}" -B -N -q -e "select \`id\` from \`contact\` where \`id\` > ${lastid} and ((\`photo\` = '' and not \`avatar\` = '') or (\`avatar\` = '' and not \`photo\` = '')) order by id limit ${limit}")
2025-02-12 21:33:02 +00:00
else
c = $( " ${ dbengine } " " ${ db } " -B -N -q -e " select \`id\` from \`contact\` where \`id\` > ${ lastid } and (\`photo\` like 'https:\/\/ ${ url } /avatar/%' or (\`photo\` = '' and not \`avatar\` = '') or (\`avatar\` = '' and not \`photo\` = '')) and (id in (select cid from \`user-contact\`) or id in (select \`uid\` from \`user\`) or \`id\` in (select \`contact-id\` from \`group_member\`)) order by id limit ${ limit } " )
2025-02-24 11:03:57 -06:00
#c=$("${dbengine}" "${db}" -B -N -q -e "select \`id\` from \`contact\` where \`id\` > ${lastid} and (\`photo\` like 'https:\/\/${url}/avatar/%') and (id in (select cid from \`user-contact\`) or id in (select \`uid\` from \`user\`) or \`id\` in (select \`contact-id\` from \`group_member\`)) order by id limit ${limit}")
#c=$("${dbengine}" "${db}" -B -N -q -e "select \`id\` from \`contact\` where \`id\` > ${lastid} and ((\`photo\` = '' and not \`avatar\` = '') or (\`avatar\` = '' and not \`photo\` = '')) and (id in (select cid from \`user-contact\`) or id in (select \`uid\` from \`user\`) or \`id\` in (select \`contact-id\` from \`group_member\`)) order by id limit ${limit}")
2025-02-12 21:33:02 +00:00
fi
while read -r id; do
if [ [ -n " ${ id } " && $(( 10# ${ id } )) -ge " ${ lastid } " ] ] ; then
lastid = $(( 10# ${ id } ))
id = $(( 10# ${ id } ))
2025-02-10 03:25:14 +00:00
fi
2025-02-12 21:33:02 +00:00
if [ [ -n " ${ lastid } " ] ] ; then
idcount = $(( idcount + 1 ))
loop &
fi
until [ [ $( jobs -r -p | wc -l) -lt $(( $( getconf _NPROCESSORS_ONLN) * thread_multiplier)) ] ] ; do
wait -n
done
done < <( echo " ${ c } " )
wait
2025-02-24 11:03:57 -06:00
if [ [ ${ lockfile_enabled } -eq 1 ] ] ; then
#Read data before next iteration
rl = 0
(
sleep 60s
if [ [ " ${ rl } " -eq 0 ] ] ; then rm -rf " ${ nlock } " ; fi
) &
while [ [ " ${ rl } " -eq 0 ] ] ; do
if [ [ ! -f " ${ nlock } " ] ] ; then
touch " ${ nlock } "
fi
if [ [ -f " ${ nlock } " && $( cat " ${ nlock } " 2>/dev/null || echo "" ) = = "" ] ] ; then
rm -rf " ${ nlock } " && touch " ${ nlock } " && echo " ${ lastid } " | tee " ${ nlock } " & >/dev/null
if [ [ -f " ${ nlock } " && $( grep -e "[0-9]" " ${ nlock } " 2>/dev/null || echo 0) = = " ${ lastid } " ] ] ; then
read -r n_tmp_l nt_tmp_l <" ${ nfile } " || break
if [ [ -n " ${ n_tmp_l } " && -n " ${ nt_tmp_l } " ] ] ; then
n = " ${ n_tmp_l } "
nt = " ${ nt_tmp_l } "
if [ [ -f " ${ nlock } " ] ] ; then
rm -rf " ${ nlock } " && touch " ${ nlock } " && echo "" >" ${ nlock } "
fi
rl = 1
2025-02-11 14:55:06 +00:00
fi
2025-02-24 11:03:57 -06:00
elif [ [ -f " ${ nlock } " ] ] ; then
nlm = $( grep -e "[0-9]" " ${ nlock } " 2>/dev/null || echo 0)
if [ [ -n " ${ nlm } " ] ] ; then
nlmt = $(( 10# ${ nlm } ))
if [ [ " ${ nlmt } " -lt $(( id + limit)) ] ] ; then
rm -rf " ${ nlock } " && touch " ${ nlock } " && echo "" >" ${ nlock } "
fi
else
2025-02-11 14:55:06 +00:00
rm -rf " ${ nlock } " && touch " ${ nlock } " && echo "" >" ${ nlock } "
2025-02-10 18:04:00 +00:00
fi
fi
fi
2025-02-24 11:03:57 -06:00
done
fi
2025-02-10 03:25:14 +00:00
if [ [ -f " ${ nfile } " ] ] ; then
rm -rf " ${ nfile } "
fi
if [ [ -f " ${ nlock } " ] ] ; then
rm -rf " ${ nlock } "
fi
if [ [ ! -d " ${ nfolder } " && $( find " ${ nfolder } " | wc -l) -eq 0 ] ] ; then
rm -rf " ${ nfolder } "
fi
2025-02-11 14:55:06 +00:00
" ${ dbengine } " " ${ db } " -e "delete from workerqueue where \`id\` in (select distinct w2.\`id\` from workerqueue w1 inner join workerqueue w2 where w1.\`id\` > w2.\`id\` and w1.\`parameter\` = w2.\`parameter\` and w1.\`command\` = \"UpdateContact\" and w1.\`done\` = 0)"
if [ [ " ${ intensive_optimizations } " -gt 0 ] ] ; then
2025-02-10 17:49:28 +00:00
" ${ dbengine } " " ${ db } " -e "alter table contact drop index photo_index"
2025-02-10 03:25:14 +00:00
fi