Add flag for classic theme

This commit is contained in:
Xerbo 2020-01-19 12:01:06 +00:00
parent 4f6cfb1631
commit 5b4bcee3db

View file

@ -33,6 +33,7 @@ Arguments:
-w Over(Write) files if they already exist
-s (S)eperate metadata files, to make sure all
metadata is downloaded regardless of file
-t Not using the \"beta\" (T)heme
Examples:
$0 gallery/mylafox
@ -59,8 +60,10 @@ rename=true
maxsavefiles="0"
overwrite=false
textmeta=false
while getopts 'o:c:n:iphrws' flag; do
classic=false
while getopts 'o:c:n:iphrwst' flag; do
case "${flag}" in
t) classic=true;;
w) overwrite=true;;
o) outdir=${OPTARG};;
c) cookiefile=${OPTARG};;
@ -119,8 +122,12 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
fi
# Get URL for next page out of "Next" button. Required for favorites, pages of which are not numbered
next_page_url="$(grep -B 1 'type="submit">Next' "$tempfile" | grep form | cut -d '"' -f 2 | uniq)"
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)"
else
next_page_url="$(grep -B 1 'type="submit">Next' "$tempfile" | grep form | cut -d '"' -f 2 | uniq)"
fi
# Extract links to pages with individual artworks and iterate over them
artwork_pages="$(grep '<a href="/view/' "$tempfile" | grep -E --only-matching '/view/[[:digit:]]+/' | uniq)"
for page in $artwork_pages; do
@ -135,7 +142,11 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
# Get the full size image URL.
# This will be a facdn.net link, we will default to HTTPS
# but this can be disabled with -i or --http for specific reasons
image_url="$prefix$(grep --only-matching --max-count=1 ' href="//d.facdn.net/download/art/.\+">Download' "$tempfile" | cut -d '"' -f 2)"
if [ $classic = true ]; then
image_url="$prefix$(grep --only-matching --max-count=1 ' href="//d.facdn.net/art/.\+">Download' "$tempfile" | cut -d '"' -f 2)"
else
image_url="$prefix$(grep --only-matching --max-count=1 ' href="//d.facdn.net/download/art/.\+">Download' "$tempfile" | cut -d '"' -f 2)"
fi
# Get metadata
description="$(grep 'og:description" content="' "$tempfile" | cut -d '"' -f 4)"