From 020f10502b1fc8e978309e12d3f82057136abc56 Mon Sep 17 00:00:00 2001 From: Xerbo Date: Tue, 5 Nov 2019 17:24:01 +0000 Subject: [PATCH] Address #24 Don't redownload files if they have already been downloaded Also added media file to .gitignore to prevent accidently commiting media --- .gitignore | 18 +++++++++++++++++- furaffinity-dl | 29 ++++++++++++++++++----------- 2 files changed, 35 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index a97fa56..e8a0b64 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,18 @@ - +# Pictures +*.jpg +*.png +*.bmp +*.gif +# Audio +*.mp3 +*.wav +*.wmv +# Flash +*.swf +# Documents +*.txt +*.pdf +*.doc +*.docx +# Swap files *.swp diff --git a/furaffinity-dl b/furaffinity-dl index 3827f0f..3a4cd33 100755 --- a/furaffinity-dl +++ b/furaffinity-dl @@ -30,6 +30,7 @@ Arguments: filename as on facdn -n (N)unmber of images to download, starting from the most recent submission + -w Over(Write) files if they already exist Examples: $0 gallery/mylafox @@ -54,17 +55,19 @@ prefix="https:" metadata=true rename=true maxsavefiles="0" +overwrite=false while getopts 'o:c:iphrn:' flag; do - case "${flag}" in - o) outdir=${OPTARG};; - c) cookiefile=${OPTARG};; - i) prefix="http:";; - p) metadata=false;; - r) rename=false;; - n) maxsavefiles=${OPTARG};; - h) help;; - *) help;; - esac + case "${flag}" in + w) overwrite=true;; + o) outdir=${OPTARG};; + c) cookiefile=${OPTARG};; + i) prefix="http:";; + p) metadata=false;; + r) rename=false;; + n) maxsavefiles=${OPTARG};; + h) help;; + *) help;; + esac done # Attempt to create the output directory @@ -146,7 +149,11 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2 fi # Download the image - wget "$image_url" -O "$file" + if [ ! -f "$file" ] || [ $overwrite = true ] ; then + wget "$image_url" -O "$file" + else + echo "File already exists, skipping. Use -w to skip this check" + fi # Add metadata if [ $file_type == "mp3" ] || [ $file_type == "wav" ] || [ $file_type == "wmv" ] || [ $file_type == "ogg" ] || [ $file_type == "flac" ]; then