From d05b70b1a108619602a2db9cf89092dd38617ae1 Mon Sep 17 00:00:00 2001 From: kirusenn Date: Tue, 11 Apr 2017 16:47:54 -0600 Subject: [PATCH 1/3] Fixed bug of calling wrong address Changed regex slightly for image_url --- .gitignore | 2 ++ furaffinity-dl | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a97fa56 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +*.swp diff --git a/furaffinity-dl b/furaffinity-dl index 17b857b..357a3b5 100755 --- a/furaffinity-dl +++ b/furaffinity-dl @@ -75,11 +75,12 @@ https://github.com/Shnatsel/furaffinity-dl/issues" >&2 echo "WARNING: $page seems to be inaccessible, skipping." continue fi - + # Get the full size image URL. # This will be a facdn.net link, we have to use HTTP # to get around DPI-based page blocking in some countries. - image_url='http:'$(grep -E --max-count=1 --only-matching '"[^"]+">Download[[:space:]]?' "$tempfile" | cut -d '"' -f 2) + #image_url='http:'$(grep -E --max-count=1 --only-matching '"[^"]+">Download[[:space:]]?' "$tempfile" | cut -d '"' -f 1) + image_url='http:'$(grep -E --max-count=1 --only-matching ' Date: Tue, 11 Apr 2017 17:06:18 -0600 Subject: [PATCH 2/3] Removed old regex --- furaffinity-dl | 1 - 1 file changed, 1 deletion(-) diff --git a/furaffinity-dl b/furaffinity-dl index 357a3b5..b8ef217 100755 --- a/furaffinity-dl +++ b/furaffinity-dl @@ -79,7 +79,6 @@ https://github.com/Shnatsel/furaffinity-dl/issues" >&2 # Get the full size image URL. # This will be a facdn.net link, we have to use HTTP # to get around DPI-based page blocking in some countries. - #image_url='http:'$(grep -E --max-count=1 --only-matching '"[^"]+">Download[[:space:]]?' "$tempfile" | cut -d '"' -f 1) image_url='http:'$(grep -E --max-count=1 --only-matching ' Date: Sun, 16 Apr 2017 12:14:35 -0600 Subject: [PATCH 3/3] Fixed regex This regex works for both logged in and not, and should work for beta and normal FA --- furaffinity-dl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/furaffinity-dl b/furaffinity-dl index b8ef217..f4358af 100755 --- a/furaffinity-dl +++ b/furaffinity-dl @@ -79,7 +79,7 @@ https://github.com/Shnatsel/furaffinity-dl/issues" >&2 # Get the full size image URL. # This will be a facdn.net link, we have to use HTTP # to get around DPI-based page blocking in some countries. - image_url='http:'$(grep -E --max-count=1 --only-matching 'Download' "$tempfile" | cut -d '"' -f 2) # TODO: Get the submission title out of the page # this trick may come in handy for avoiding slashes in filenames: