mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 07:44:37 +00:00
Initial login support. Login works, download fails
This commit is contained in:
parent
94ee702ec5
commit
858dd7f366
1 changed files with 29 additions and 8 deletions
|
@ -1,23 +1,44 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# wget wrapper with custom user agent
|
||||
# cookies also should be added here
|
||||
fwget() {
|
||||
wget --user-agent="Mozilla/5.0 furaffinity-dl" $*
|
||||
}
|
||||
|
||||
if [ "$1" = "" ] || [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
|
||||
echo "Usage: $0 SECTION/USER
|
||||
echo "Usage: $0 SECTION/USER [YOUR_USERNAME]
|
||||
Downloads the entire gallery/scraps/favorites of furaffinity.net user.
|
||||
|
||||
Examples:
|
||||
$0 gallery/ymxa
|
||||
$0 scraps/---
|
||||
$0 favorites/kivuli"
|
||||
$0 favorites/kivuli
|
||||
|
||||
You can also log in to FurAffinity to download restricted content, like this:
|
||||
$0 gallery/simoom your_username_here"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
LOGIN_NAME="$2"
|
||||
if [ "$LOGIN_NAME" = "" ]; then
|
||||
# set a wget wrapper with custom user agent
|
||||
fwget() {
|
||||
wget --user-agent="Mozilla/5.0 furaffinity-dl (https://github.com/Shnatsel/furaffinity-dl)" $*
|
||||
}
|
||||
else
|
||||
# prompt the user for their password
|
||||
read -r -s -e -p "Password for $LOGIN_NAME (will not be displayed): " PASSWORD
|
||||
|
||||
# log in to FurAffinity
|
||||
wget --user-agent="Mozilla/5.0 furaffinity-dl (https://github.com/Shnatsel/furaffinity-dl)" \
|
||||
--referer="https://www.furaffinity.net/login/" \
|
||||
--save-cookies cookies.txt \
|
||||
--post-data "action=login&retard_protection=1&name=$LOGIN_NAME&pass=$PASSWORD&login=Login+to%C2%A0FurAffinity" \
|
||||
"https://www.furaffinity.net/login/"
|
||||
|
||||
# set a wget wrapper with custom user agent and cookies
|
||||
fwget() {
|
||||
wget --user-agent="Mozilla/5.0 furaffinity-dl (https://github.com/Shnatsel/furaffinity-dl)" \
|
||||
--load-cookies cookies.txt $*
|
||||
}
|
||||
fi
|
||||
|
||||
tempfile="$(mktemp)"
|
||||
|
||||
base_url=https://www.furaffinity.net/"$1"
|
||||
|
|
Loading…
Add table
Reference in a new issue