mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-06 00:04:38 +00:00
Merge pull request #48 from brandonmoss99/add-bashMaxDuplicateChecker
Add bash max duplicate checker
This commit is contained in:
commit
aa5bb5b406
1 changed files with 17 additions and 2 deletions
|
@ -8,6 +8,7 @@ prefix="https:"
|
||||||
metadata=true
|
metadata=true
|
||||||
rename=true
|
rename=true
|
||||||
maxsavefiles="0"
|
maxsavefiles="0"
|
||||||
|
maxduplicatecount="0"
|
||||||
overwrite=false
|
overwrite=false
|
||||||
textmeta=false
|
textmeta=false
|
||||||
classic=false
|
classic=false
|
||||||
|
@ -26,8 +27,10 @@ Arguments:
|
||||||
-p (P)lain file without any additional metadata
|
-p (P)lain file without any additional metadata
|
||||||
-r Don't (R)ename files, just give them the same
|
-r Don't (R)ename files, just give them the same
|
||||||
filename as on facdn
|
filename as on facdn
|
||||||
-n (N)unmber of images to download, starting from
|
-n (N)umber of images to download, starting from
|
||||||
the most recent submission
|
the most recent submission
|
||||||
|
-d Number of consecutive (D)uplicate files to register
|
||||||
|
before exiting
|
||||||
-w Over(Write) files if they already exist
|
-w Over(Write) files if they already exist
|
||||||
-s (S)eperate metadata files, to make sure all
|
-s (S)eperate metadata files, to make sure all
|
||||||
metadata is downloaded regardless of file
|
metadata is downloaded regardless of file
|
||||||
|
@ -49,7 +52,7 @@ DISCLAIMER: It is your own responsibility to check whether batch downloading is
|
||||||
[[ $# -eq 0 ]] && help
|
[[ $# -eq 0 ]] && help
|
||||||
|
|
||||||
# Options via arguments
|
# Options via arguments
|
||||||
while getopts 'o:c:n:iphrwst' flag; do
|
while getopts 'o:c:n:d:iphrwst' flag; do
|
||||||
case "${flag}" in
|
case "${flag}" in
|
||||||
t) classic=true;;
|
t) classic=true;;
|
||||||
w) overwrite=true;;
|
w) overwrite=true;;
|
||||||
|
@ -59,6 +62,7 @@ while getopts 'o:c:n:iphrwst' flag; do
|
||||||
p) metadata=false;;
|
p) metadata=false;;
|
||||||
r) rename=false;;
|
r) rename=false;;
|
||||||
n) maxsavefiles=${OPTARG};;
|
n) maxsavefiles=${OPTARG};;
|
||||||
|
d) maxduplicatecount=${OPTARG};;
|
||||||
h) help;;
|
h) help;;
|
||||||
s) textmeta=true;;
|
s) textmeta=true;;
|
||||||
*) help;;
|
*) help;;
|
||||||
|
@ -105,6 +109,7 @@ fi
|
||||||
|
|
||||||
url="https://www.furaffinity.net/${*: -1}"
|
url="https://www.furaffinity.net/${*: -1}"
|
||||||
download_count="0"
|
download_count="0"
|
||||||
|
duplicate_count="0"
|
||||||
|
|
||||||
# Iterate over the gallery pages with thumbnails and links to artwork view pages
|
# Iterate over the gallery pages with thumbnails and links to artwork view pages
|
||||||
while true; do
|
while true; do
|
||||||
|
@ -172,8 +177,18 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
|
||||||
# Download the image
|
# Download the image
|
||||||
if [ ! -f "$file" ] || [ $overwrite = true ] ; then
|
if [ ! -f "$file" ] || [ $overwrite = true ] ; then
|
||||||
wget --quiet --show-progress "$image_url" -O "$file"
|
wget --quiet --show-progress "$image_url" -O "$file"
|
||||||
|
# reset the duplicate counter, another non-duplicate file has been found
|
||||||
|
duplicate_count=0
|
||||||
else
|
else
|
||||||
echo "File already exists, skipping. Use -w to skip this check"
|
echo "File already exists, skipping. Use -w to skip this check"
|
||||||
|
# increment the duplicate counter
|
||||||
|
duplicate_count="$((duplicate_count + 1))"
|
||||||
|
# If we've reached the max number of consecutive duplicates,
|
||||||
|
# should output message and exit
|
||||||
|
if [ "$maxduplicatecount" -ne "0" ] && [ "$duplicate_count" -ge "$maxduplicatecount" ]; then
|
||||||
|
echo "Reached set maximum of consecutive duplicate files"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mime_type="$(file -- "$file")"
|
mime_type="$(file -- "$file")"
|
||||||
|
|
Loading…
Add table
Reference in a new issue