mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-06 00:04:38 +00:00
Add option to limit number of submissions downloaded (Starts from most recent submission)
This commit is contained in:
parent
1c1bccdc68
commit
6cf640f6f1
1 changed files with 14 additions and 1 deletions
15
furaffinity-dl
Executable file → Normal file
15
furaffinity-dl
Executable file → Normal file
|
@ -51,13 +51,15 @@ outdir="."
|
||||||
prefix="https:"
|
prefix="https:"
|
||||||
metadata=true
|
metadata=true
|
||||||
rename=true
|
rename=true
|
||||||
while getopts 'o:c:iphr' flag; do
|
maxsavefiles="0"
|
||||||
|
while getopts 'o:c:iphrn:' flag; do
|
||||||
case "${flag}" in
|
case "${flag}" in
|
||||||
o) outdir=${OPTARG};;
|
o) outdir=${OPTARG};;
|
||||||
c) cookiefile=${OPTARG};;
|
c) cookiefile=${OPTARG};;
|
||||||
i) prefix="http:";;
|
i) prefix="http:";;
|
||||||
p) metadata=false;;
|
p) metadata=false;;
|
||||||
r) rename=false;;
|
r) rename=false;;
|
||||||
|
n) maxsavefiles=${OPTARG};;
|
||||||
h) help;;
|
h) help;;
|
||||||
*) help;;
|
*) help;;
|
||||||
esac
|
esac
|
||||||
|
@ -87,6 +89,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
url="https://www.furaffinity.net/${@: -1}"
|
url="https://www.furaffinity.net/${@: -1}"
|
||||||
|
download_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
|
||||||
|
@ -157,6 +160,16 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
|
||||||
exiftool "$file" -description="$description" -title="$title" -overwrite_original
|
exiftool "$file" -description="$description" -title="$title" -overwrite_original
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
#If there is a file download limit then keep track of it
|
||||||
|
if [ "$maxsavefiles" -ne "0" ]; then
|
||||||
|
download_count=$((download_count + 1))
|
||||||
|
|
||||||
|
if [ "$download_count" -ge "$maxsavefiles" ]; then
|
||||||
|
echo "Reached set file download limit."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
[ -z "$next_page_url" ] && break
|
[ -z "$next_page_url" ] && break
|
||||||
|
|
Loading…
Add table
Reference in a new issue