added sha1 sums

This commit is contained in:
Niklas 2020-03-26 15:28:37 +01:00
parent 11bd1c8269
commit 2decbf015c
1 changed files with 7 additions and 3 deletions

View File

@ -22,6 +22,8 @@ if ! [ -x "$(command -v strings)" ]; then
exit 1
fi
declare -A SHASUMS
echo "===== ===== ===== GENERATE .ZSYNC ===== ===== ====="
FILELIST=$(find . -type f ! -path "*/.sync*" ! -path "*.zsync")
while IFS= read -r line; do
@ -60,10 +62,12 @@ while IFS= read -r line; do
echo "Nothing changed for $line"
fi
SHA=$(strings "${zsyncfile}" | grep -m 1 SHA-1 | cut -d" " -f2)
SHASUMS[$(echo "${line}" | sed 's|^./||')]="${SHA}"
done <<< "$FILELIST"
echo -e "===== ===== ===== ===== ===== =====\n"
echo "===== ===== ===== DELETE SINGLE ZFILE WITHOUT FILE ===== ===== ====="
ZSYNCLIST=$(find . -name "*.zsync")
while IFS= read -r zfile; do
@ -90,14 +94,14 @@ while IFS= read -r folder; do
filebyte=$(wc -c < "${folderfile}")
foldersize=$(expr $foldersize + $filebyte)
name=$(echo "${folderfile}" | cut -d"/" -f2-)
x="\"${name}\":${filebyte},${x}"
x="\"${name}\":{\"size\": ${filebyte}, \"sha1\": \"${SHASUMS[$folderfile]}\"},${x}"
done <<< "$FILEFOLDER"
x=$(echo ${x} | rev | cut -c2- | rev)
JSONDATA+=( "\"${folder}\": {\"size\":${foldersize},\"content\":{${x}}}" )
else
echo "is file"
filebyte=$(wc -c < "${folder}")
JSONDATA+=( "\"${folder}\": {\"size\":${filebyte}}" )
JSONDATA+=( "\"${folder}\": {\"size\":${filebyte}, \"sha1\": \"${SHASUMS[$folder]}\"}" )
fi
done <<< "$FILELIST"