mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-06 00:04:38 +00:00
Add flag for classic theme
This commit is contained in:
parent
4f6cfb1631
commit
5b4bcee3db
1 changed files with 15 additions and 4 deletions
|
@ -33,6 +33,7 @@ Arguments:
|
||||||
-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
|
||||||
|
-t Not using the \"beta\" (T)heme
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
$0 gallery/mylafox
|
$0 gallery/mylafox
|
||||||
|
@ -59,8 +60,10 @@ rename=true
|
||||||
maxsavefiles="0"
|
maxsavefiles="0"
|
||||||
overwrite=false
|
overwrite=false
|
||||||
textmeta=false
|
textmeta=false
|
||||||
while getopts 'o:c:n:iphrws' flag; do
|
classic=false
|
||||||
|
while getopts 'o:c:n:iphrwst' flag; do
|
||||||
case "${flag}" in
|
case "${flag}" in
|
||||||
|
t) classic=true;;
|
||||||
w) overwrite=true;;
|
w) overwrite=true;;
|
||||||
o) outdir=${OPTARG};;
|
o) outdir=${OPTARG};;
|
||||||
c) cookiefile=${OPTARG};;
|
c) cookiefile=${OPTARG};;
|
||||||
|
@ -119,8 +122,12 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get URL for next page out of "Next" button. Required for favorites, pages of which are not numbered
|
# 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 ❯❯</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
|
# 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)"
|
artwork_pages="$(grep '<a href="/view/' "$tempfile" | grep -E --only-matching '/view/[[:digit:]]+/' | uniq)"
|
||||||
for page in $artwork_pages; do
|
for page in $artwork_pages; do
|
||||||
|
@ -135,7 +142,11 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
|
||||||
# Get the full size image URL.
|
# Get the full size image URL.
|
||||||
# This will be a facdn.net link, we will default to HTTPS
|
# This will be a facdn.net link, we will default to HTTPS
|
||||||
# but this can be disabled with -i or --http for specific reasons
|
# 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
|
# Get metadata
|
||||||
description="$(grep 'og:description" content="' "$tempfile" | cut -d '"' -f 4)"
|
description="$(grep 'og:description" content="' "$tempfile" | cut -d '"' -f 4)"
|
||||||
|
|
Loading…
Add table
Reference in a new issue