1
0
mirror of https://github.com/donaldzou/WGDashboard.git synced 2024-11-06 16:00:28 +01:00
WGDashboard/src/wgd.sh

146 lines
5.3 KiB
Bash
Raw Normal View History

2021-05-04 07:32:34 +02:00
#!/bin/bash
app_name="dashboard.py"
2021-09-03 19:52:23 +02:00
app_official_name="Wireguard Dashboard"
2021-05-05 20:38:10 +02:00
dashes='------------------------------------------------------------'
2021-09-03 20:40:57 +02:00
equals='============================================================'
2021-05-04 07:32:34 +02:00
help () {
2021-09-08 18:39:25 +02:00
printf "=================================================================================\n"
printf "+ <Wireguard Dashboard> by Donald Zou - https://github.com/donaldzou +\n"
printf "=================================================================================\n"
printf "| Usage: ./wgd.sh <option> |\n"
printf "| |\n"
printf "| Available options: |\n"
printf "| start: To start Wireguard Dashboard |\n"
printf "| stop: To stop Wireguard Dashboard. |\n"
printf "| debug: To start Wireguard Dashboard in debug mode (i.e run in foreground). |\n"
printf "| update: To update Wireguard Dashboard to the newest version from GitHub. |\n"
printf "| install: To install Wireguard Dashboard. |\n"
printf "| Thank you for using! Your support is my motivation ;) |\n"
printf "=================================================================================\n"
2021-05-04 07:32:34 +02:00
}
2021-09-03 04:09:06 +02:00
install_wgd(){
2021-09-03 20:22:14 +02:00
# Check Python3 version
version_pass=$(python3 -c 'import sys; print("1") if (sys.version_info.major == 3 and sys.version_info.minor >= 7) else print("0");')
if [ $version_pass == "0" ]
2021-09-03 20:23:08 +02:00
then printf "| Wireguard Dashboard required Python3.7+ |\n"
2021-09-03 20:26:27 +02:00
printf "%s\n" "$dashes"
2021-09-03 20:22:14 +02:00
exit 1
2021-09-03 19:55:03 +02:00
fi
2021-09-03 04:24:07 +02:00
rm db/hi.txt > /dev/null 2>&1
2021-09-03 19:52:23 +02:00
if [ ! -d "log" ]
then mkdir "log"
fi
2021-09-03 04:09:06 +02:00
printf "| Installing latest Python dependencies |\n"
python3 -m pip install -r requirements.txt > /dev/null 2>&1
2021-09-03 04:24:07 +02:00
printf "| Wireguard Dashboard installed successfully! |\n"
printf "| Starting Dashboard |\n"
2021-09-03 04:09:06 +02:00
start_wgd
}
2021-05-04 07:32:34 +02:00
check_wgd_status(){
if ps aux | grep '[p]ython3 '$app_name > /dev/null;
then
return 0
else
return 1
fi
}
start_wgd () {
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
2021-09-03 04:24:40 +02:00
printf "| Starting Wireguard Dashboard in the background. |\n"
2021-09-03 23:32:51 +02:00
if [ ! -d "log" ]
then mkdir "log"
fi
2021-05-04 07:32:34 +02:00
d=$(date '+%Y%m%d%H%M%S')
python3 "$app_name" > log/"$d".txt 2>&1 &
2021-09-03 04:24:40 +02:00
printf "| Log files is under log/ |\n"
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
2021-05-04 07:32:34 +02:00
}
stop_wgd() {
kill "$(ps aux | grep "[p]ython3 $app_name" | awk '{print $2}')"
}
start_wgd_debug() {
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
2021-09-03 04:24:40 +02:00
printf "| Starting Wireguard Dashboard in the foreground. |\n"
2021-05-04 07:32:34 +02:00
python3 "$app_name"
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
2021-05-04 07:32:34 +02:00
}
2021-05-05 03:26:40 +02:00
update_wgd() {
2021-09-03 04:52:22 +02:00
new_ver=$(python3 -c "import json; import urllib.request; data = urllib.request.urlopen('https://api.github.com/repos/donaldzou/wireguard-dashboard/releases/latest').read(); output = json.loads(data);print(output['tag_name'])")
2021-05-05 20:38:10 +02:00
printf "%s\n" "$dashes"
2021-09-03 20:30:13 +02:00
printf "| Are you sure you want to update to the %s? (Y/N): " "$new_ver"
2021-05-05 20:38:10 +02:00
read up
if [ "$up" = "Y" ]; then
printf "| Shutting down Wireguard Dashboard... |\n"
2021-09-03 04:52:01 +02:00
kill "$(ps aux | grep "[p]ython3 $app_name" | awk '{print $2}')"
2021-05-05 20:38:10 +02:00
printf "| Downloading %s from GitHub... |\n" "$new_ver"
2021-09-03 03:56:50 +02:00
git stash > /dev/null 2>&1
2021-05-05 21:09:34 +02:00
git pull https://github.com/donaldzou/wireguard-dashboard.git $new_ver --force > /dev/null 2>&1
2021-09-03 03:56:50 +02:00
printf "| Installing latest Python dependencies |\n"
2021-09-03 04:09:06 +02:00
python3 -m pip install -r requirements.txt > /dev/null 2>&1
2021-05-05 20:38:10 +02:00
printf "| Update Successfully! |\n"
2021-09-03 04:09:06 +02:00
start_wgd
2021-05-05 03:26:40 +02:00
else
2021-07-02 19:23:04 +02:00
printf "%s\n" "$dashes"
2021-09-03 20:30:13 +02:00
printf "| Update Canceled. |\n"
2021-07-02 19:23:04 +02:00
printf "%s\n" "$dashes"
2021-05-05 03:26:40 +02:00
fi
}
2021-05-04 07:32:34 +02:00
if [ "$#" != 1 ];
then
help
else
if [ "$1" = "start" ]; then
if check_wgd_status; then
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
2021-09-03 04:27:05 +02:00
printf "| Wireguard Dashboard is already running. |\n"
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
2021-05-04 07:32:34 +02:00
else
start_wgd
fi
elif [ "$1" = "stop" ]; then
if check_wgd_status; then
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
2021-05-04 07:32:34 +02:00
stop_wgd
2021-09-03 04:27:05 +02:00
printf "| Wireguard Dashboard is stopped. |\n"
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
2021-05-04 07:32:34 +02:00
else
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
2021-09-03 04:27:05 +02:00
printf "| Wireguard Dashboard is not running. |\n"
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
2021-05-04 07:32:34 +02:00
fi
elif [ "$1" = "update" ]; then
2021-05-05 03:26:40 +02:00
update_wgd
2021-09-03 04:13:00 +02:00
elif [ "$1" = "install" ]; then
install_wgd
2021-05-04 07:32:34 +02:00
elif [ "$1" = "restart" ]; then
if check_wgd_status; then
2021-09-08 18:39:25 +02:00
printf "%s\n" "$dashes"
2021-05-04 07:32:34 +02:00
stop_wgd
2021-09-03 04:27:05 +02:00
printf "| Wireguard Dashboard is stopped. |\n"
2021-09-08 18:39:25 +02:00
sleep 2
start_wgd
2021-05-04 07:32:34 +02:00
else
start_wgd
2021-05-04 07:32:34 +02:00
fi
elif [ "$1" = "debug" ]; then
if check_wgd_status; then
2021-09-03 04:27:05 +02:00
printf "| Wireguard Dashboard is already running. |\n"
2021-05-04 07:32:34 +02:00
else
start_wgd_debug
fi
else
help
fi
fi