Merge pull request #36 from Kattus/cleanup

General cleanup and improvements
This commit is contained in:
Liam 2020-02-09 18:31:08 +00:00 committed by GitHub
commit adf98b25af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,16 @@
#!/bin/bash #!/bin/bash
# shellcheck disable=SC2001
set -e set -e
# Detect installed metadata injectors # Default options
eyed3=true outdir="."
if [ -z "$(command -v eyeD3)" ]; then prefix="https:"
eyed3=false metadata=true
echo "INFO: eyed3 is not installed, no metadata will be injected into music files." rename=true
fi maxsavefiles="0"
overwrite=false
exiftool=true textmeta=false
if [ -z "$(command -v exiftool)" ]; then classic=false
exiftool=false
echo "INFO: exiftool is not installed, no metadata will be injected into pictures."
fi
# Helper functions # Helper functions
help() { help() {
@ -46,21 +44,11 @@ You can also log in to FurAffinity to download restricted content, like this:
DISCLAIMER: It is your own responsibility to check whether batch downloading is allowed by FurAffinity terms of service and to abide by them." DISCLAIMER: It is your own responsibility to check whether batch downloading is allowed by FurAffinity terms of service and to abide by them."
exit 1 exit 1
} }
cleanup() {
rm -r "$tempfile"
}
# Arguments # Display help if no arguments given
[[ $# -eq 0 ]] && help [[ $# -eq 0 ]] && help
outdir="." # Options via arguments
prefix="https:"
metadata=true
rename=true
maxsavefiles="0"
overwrite=false
textmeta=false
classic=false
while getopts 'o:c:n:iphrwst' flag; do while getopts 'o:c:n:iphrwst' flag; do
case "${flag}" in case "${flag}" in
t) classic=true;; t) classic=true;;
@ -77,13 +65,28 @@ while getopts 'o:c:n:iphrwst' flag; do
esac esac
done done
# Detect installed metadata injectors
eyed3=true
if [ -z "$(command -v eyeD3)" ]; then
eyed3=false
echo "INFO: eyed3 is not installed, no metadata will be injected into music files."
fi
exiftool=true
if [ -z "$(command -v exiftool)" ]; then
exiftool=false
echo "INFO: exiftool is not installed, no metadata will be injected into pictures."
fi
cleanup() {
rm "$tempfile"
}
# Attempt to create the output directory # Attempt to create the output directory
mkdir -p "$outdir" mkdir -p "$outdir"
# Setup runtime directory # Setup temporarily file with 600 perms
runtime_dir="$HOME"'/.cache/furaffinity-dl' tempfile="$(umask u=rwx,g=,o= && mktemp --suffix=_fa-dl)"
mkdir -p "$runtime_dir"
tempfile="$(umask u=rwx,g=,o= && mktemp $runtime_dir/fa-dl.XXXXXXXXXX)"
# Call cleanup function on exit # Call cleanup function on exit
trap cleanup EXIT trap cleanup EXIT
@ -91,16 +94,16 @@ trap cleanup EXIT
if [ -z "$cookiefile" ]; then if [ -z "$cookiefile" ]; then
# Set wget with a custom user agent # Set wget with a custom user agent
fwget() { fwget() {
wget -nv --user-agent="Mozilla/5.0 furaffinity-dl (https://github.com/Xerbo/furaffinity-dl)" $* wget --quiet --user-agent="Mozilla/5.0 furaffinity-dl (https://github.com/Xerbo/furaffinity-dl)" "$@"
} }
else else
# Set wget with a custom user agent and cookies # Set wget with a custom user agent and cookies
fwget() { fwget() {
wget -nv --user-agent="Mozilla/5.0 furaffinity-dl (https://github.com/Xerbo/furaffinity-dl)" --load-cookies "$cookiefile" $* wget --quiet --user-agent="Mozilla/5.0 furaffinity-dl (https://github.com/Xerbo/furaffinity-dl)" --load-cookies "$cookiefile" "$@"
} }
fi fi
url="https://www.furaffinity.net/${@: -1}" url="https://www.furaffinity.net/${*: -1}"
download_count="0" 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
@ -125,7 +128,7 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
if [ $classic = true ]; then if [ $classic = true ]; then
next_page_url="$(grep '<a class="button-link right" href="' "$tempfile" | grep '">Next &nbsp;&#x276f;&#x276f;</a>' | cut -d '"' -f 4 | sort -u)" next_page_url="$(grep '<a class="button-link right" href="' "$tempfile" | grep '">Next &nbsp;&#x276f;&#x276f;</a>' | cut -d '"' -f 4 | sort -u)"
else else
next_page_url="$(grep -B 1 'type="submit">Next' "$tempfile" | grep form | cut -d '"' -f 2 | uniq)" next_page_url="$(grep -B 1 --max-count=1 'type="submit">Next' "$tempfile" | grep form | cut -d '"' -f 2)"
fi fi
# Extract links to pages with individual artworks and iterate over them # Extract links to pages with individual artworks and iterate over them
@ -168,7 +171,7 @@ 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 "$image_url" -O "$file" wget --quiet --show-progress "$image_url" -O "$file"
else else
echo "File already exists, skipping. Use -w to skip this check" echo "File already exists, skipping. Use -w to skip this check"
fi fi