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

211 lines
7.2 KiB
Bash
Raw Normal View History

2021-05-04 07:32:34 +02:00
#!/bin/bash
2022-01-13 01:53:36 +01:00
# wgd.sh - Copyright(C) 2021 Donald Zou [https://github.com/donaldzou]
# Under Apache-2.0 License
2021-05-04 07:32:34 +02:00
app_name="dashboard.py"
app_official_name="WGDashboard"
2022-01-18 16:42:23 +01:00
PID_FILE=./gunicorn.pid
2021-10-18 01:40:08 +02:00
environment=$(if [[ $ENVIRONMENT ]]; then echo $ENVIRONMENT; else echo 'develop'; fi)
2021-10-25 00:16:02 +02:00
if [[ $CONFIGURATION_PATH ]]; then
cb_work_dir=$CONFIGURATION_PATH/letsencrypt/work-dir
cb_config_dir=$CONFIGURATION_PATH/letsencrypt/config-dir
else
cb_work_dir=/etc/letsencrypt
cb_config_dir=/var/lib/letsencrypt
fi
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"
2021-12-25 23:13:21 +01:00
printf "+ <WGDashboard> by Donald Zou - https://github.com/donaldzou +\n"
2021-09-08 18:39:25 +02:00
printf "=================================================================================\n"
printf "| Usage: ./wgd.sh <option> |\n"
printf "| |\n"
printf "| Available options: |\n"
printf "| start: To start WGDashboard. |\n"
printf "| stop: To stop WGDashboard. |\n"
printf "| debug: To start WGDashboard in debug mode (i.e run in foreground). |\n"
printf "| update: To update WGDashboard to the newest version from GitHub. |\n"
printf "| install: To install WGDashboard. |\n"
2021-09-08 18:39:25 +02:00
printf "| Thank you for using! Your support is my motivation ;) |\n"
printf "=================================================================================\n"
2021-05-04 07:32:34 +02:00
}
_check_and_set_venv(){
# This function will not be using in v3.0
# deb/ubuntu users: might need a 'apt install python3.8-venv'
# set up the local environment
APP_ROOT=`pwd`
VIRTUAL_ENV="${APP_ROOT%/*}/venv"
if [ ! -d $VIRTUAL_ENV ]; then
python3 -m venv $VIRTUAL_ENV
fi
2021-12-21 01:54:53 +01:00
. ${VIRTUAL_ENV}/bin/activate
}
2021-09-03 04:09:06 +02:00
install_wgd(){
2021-12-25 23:07:33 +01:00
printf "| Starting to install WGDashboard |\n"
2021-12-25 22:08:30 +01:00
version_pass=$(python3 -c 'import sys; print("1") if (sys.version_info.major == 3 and sys.version_info.minor >= 7) else print("0");')
2021-09-03 20:22:14 +02:00
if [ $version_pass == "0" ]
2021-12-25 23:07:33 +01:00
then printf "| WGDashboard required Python 3.7 or above |\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-12-25 23:07:33 +01:00
if [ ! -d "db" ]
then mkdir "db"
fi
2021-09-03 19:52:23 +02:00
if [ ! -d "log" ]
then mkdir "log"
fi
2021-12-25 23:07:33 +01:00
printf "| Upgrading pip |\n"
2021-12-28 03:01:02 +01:00
python3 -m pip install -U pip > /dev/null 2>&1
2021-12-25 23:07:33 +01:00
printf "| Installing latest Python dependencies |\n"
2021-12-28 03:01:02 +01:00
python3 -m pip install -U -r requirements.txt > /dev/null 2>&1
2022-01-18 16:49:41 +01:00
printf "| WGDashboard installed successfully! |\n"
printf "| Enter ./wgd.sh start to start the dashboard |\n"
2021-09-03 04:09:06 +02:00
}
2021-05-04 07:32:34 +02:00
check_wgd_status(){
2022-01-18 16:42:23 +01:00
if test -f "$PID_FILE"; then
if ps aux | grep -v grep | grep $(cat ./gunicorn.pid) > /dev/null; then
return 0
2021-10-18 02:10:50 +02:00
else
return 1
fi
else
2021-10-18 02:13:01 +02:00
if ps aux | grep -v grep | grep '[p]ython3 '$app_name > /dev/null; then
2021-05-04 07:32:34 +02:00
return 0
2021-10-18 02:10:50 +02:00
else
return 1
fi
2021-05-04 07:32:34 +02:00
fi
}
2021-10-25 00:16:02 +02:00
certbot_create_ssl () {
certbot certonly --config ./certbot.ini --email "$EMAIL" --work-dir $cb_work_dir --config-dir $cb_config_dir --domain "$SERVERURL"
}
certbot_renew_ssl () {
certbot renew --work-dir $cb_work_dir --config-dir $cb_config_dir
}
2021-10-24 23:24:49 +02:00
gunicorn_start () {
2021-10-25 00:16:02 +02:00
printf "%s\n" "$dashes"
2022-01-18 16:42:23 +01:00
printf "| Starting WGDashboard with Gunicorn in the background. |\n"
2021-10-25 00:16:02 +02:00
if [ ! -d "log" ]; then
mkdir "log"
fi
d=$(date '+%Y%m%d%H%M%S')
if [[ $USER == root ]]; then
export PATH=$PATH:/usr/local/bin:$HOME/.local/bin
fi
2022-01-17 02:35:24 +01:00
gunicorn --access-logfile log/access_"$d".log \
2024-06-17 21:40:25 +02:00
--error-logfile log/error_"$d".log 'dashboard:runGunicorn()'
2021-10-25 00:16:02 +02:00
printf "| Log files is under log/ |\n"
printf "%s\n" "$dashes"
2021-10-24 23:24:49 +02:00
}
gunicorn_stop () {
kill $(cat ./gunicorn.pid)
2021-05-04 07:32:34 +02:00
}
start_wgd () {
2022-01-18 16:42:23 +01:00
gunicorn_start
2021-05-04 07:32:34 +02:00
}
stop_wgd() {
2022-01-18 16:42:23 +01:00
if test -f "$PID_FILE"; then
2021-10-24 23:24:49 +02:00
gunicorn_stop
2021-10-18 01:40:08 +02:00
else
kill "$(ps aux | grep "[p]ython3 $app_name" | awk '{print $2}')"
fi
2021-05-04 07:32:34 +02:00
}
start_wgd_debug() {
2021-09-03 20:30:13 +02:00
printf "%s\n" "$dashes"
printf "| Starting WGDashboard 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-09 18:43:49 +02:00
new_ver=$(python3 -c "import json; import urllib.request; data = urllib.request.urlopen('https://api.github.com/repos/donaldzou/WGDashboard/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 WGDashboard... |\n"
2021-12-25 23:37:43 +01:00
if check_wgd_status; then
stop_wgd
2021-12-25 23:38:13 +01:00
fi
2021-12-25 23:07:33 +01:00
mv wgd.sh wgd.sh.old
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
2022-01-13 15:37:23 +01:00
git pull https://github.com/donaldzou/WGDashboard.git $new_ver --force > /dev/null 2>&1
2021-12-25 23:45:47 +01:00
printf "| Upgrading pip |\n"
2021-12-28 03:01:02 +01:00
python3 -m pip install -U pip > /dev/null 2>&1
2021-12-25 23:45:47 +01:00
printf "| Installing latest Python dependencies |\n"
2021-12-28 03:01:02 +01:00
python3 -m pip install -U -r requirements.txt > /dev/null 2>&1
2021-12-25 23:40:08 +01:00
printf "| Update Successfully! |\n"
2021-12-25 23:35:36 +01:00
printf "%s\n" "$dashes"
rm wgd.sh.old
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"
printf "| WGDashboard 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
printf "| WGDashboard 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"
printf "| WGDashboard 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
2021-12-25 23:35:36 +01:00
printf "%s\n" "$dashes"
2021-09-03 04:13:00 +02:00
install_wgd
2021-12-25 23:35:36 +01:00
printf "%s\n" "$dashes"
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
printf "| WGDashboard is stopped. |\n"
2022-01-18 18:16:10 +01:00
sleep 4
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
printf "| WGDashboard is already running. |\n"
2021-05-04 07:32:34 +02:00
else
start_wgd_debug
fi
else
help
fi
fi