forked from clajiness/qBittorrent-PIA-Port-Forwarder
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.sh
executable file
·34 lines (24 loc) · 1.2 KB
/
main.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
set -e
qbt_username="${QBT_USERNAME:-admin}"
qbt_password="${QBT_PASSWORD:-adminadmin}"
qbt_addr="${QBT_ADDR:-http://localhost:8080}" # ex. http://10.0.1.48:8080
port_file="${PORT_FILE:-/config/forwarded_port.txt}" # ex. /config/forwarded_port.txt
if [ ! -e "$port_file" ]; then
echo "Port file $port_file does not exist"
exit 1
fi
port_number=$(cat $port_file)
curl --fail --silent --show-error --cookie-jar /tmp/cookies.txt --cookie /tmp/cookies.txt --header "Referer: $qbt_addr" --data "username=$qbt_username" --data "password=$qbt_password" $qbt_addr/api/v2/auth/login 1> /dev/null
listen_port=$(curl --fail --silent --show-error --cookie-jar /tmp/cookies.txt --cookie /tmp/cookies.txt $qbt_addr/api/v2/app/preferences | jq '.listen_port')
if [ ! "$listen_port" ]; then
echo "Could not get current listen port, exiting..."
exit 1
fi
if [ "$port_number" = "$listen_port" ]; then
echo "Port already set, exiting..."
exit 0
fi
echo "Updating port to $port_number"
curl --fail --silent --show-error --cookie-jar /tmp/cookies.txt --cookie /tmp/cookies.txt --data-urlencode "json={\"listen_port\": $port_number}" $qbt_addr/api/v2/app/setPreferences
echo "Successfully updated port"