1
0
mirror of https://github.com/donaldzou/WGDashboard.git synced 2024-07-02 23:40:43 +02:00
This commit is contained in:
Donald Cheng Hong Zou 2021-05-05 14:38:10 -04:00
parent fe7b9730d3
commit 0fa4759c3a
4 changed files with 80 additions and 37 deletions

View File

@ -16,20 +16,40 @@
## 📣 What's New: Version 2.0 ## 📣 What's New: Version 2.0
### ⚠️ **Update from v1.x.x**
1. Stop the dashboard if it is running.
2. You can use `git pull https://github.com/donaldzou/Wireguard-Dashboard.git v2.0` to get the new update inside `Wireguard-Dashboard` directory.
3. Proceed **Step 2 & 3** in the Install step down below.
<hr>
- Added login function to dashboard - Added login function to dashboard
- ***I'm not using the most ideal way to store the username and password, feel free to provide a better way to do this if you any good idea!*** - ***I'm not using the most ideal way to store the username and password, feel free to provide a better way to do this if you any good idea!***
- Added a config file to the dashboard - Added a config file to the dashboard
- Dashboard config can be change within the **Setting** tab on the side bar - Dashboard config can be change within the **Setting** tab on the side bar
- Adjusted UI - Adjusted UI
- And much more! - And much more!
## 💡 Features ## 💡 Features
- Add peers for each WireGuard configuration - Add peers for each WireGuard configuration
- Manage peer - Manage peer
- Delete peers - Delete peers
- And many more coming up! Welcome to contribute to this project! - And many more coming up! Welcome to contribute to this project!
## 📝 Requirement ## 📝 Requirement
- Ubuntu or Debian based OS, other might work, but haven't test yet. Tested on the following OS: - Ubuntu or Debian based OS, other might work, but haven't test yet. Tested on the following OS:
@ -45,12 +65,14 @@
$ sudo apt-get install python3 python3-pip $ sudo apt-get install python3 python3-pip
``` ```
## 🛠 Install ## 🛠 Install
1. Download Wireguard Dashboard 1. Download Wireguard Dashboard
``` ```
$ git clone https://github.com/donaldzou/Wireguard-Dashboard.git $ git clone -b v2.0 https://github.com/donaldzou/Wireguard-Dashboard.git
``` ```
**2. Install Python Dependencies** **2. Install Python Dependencies**
@ -68,6 +90,8 @@ $ sudo sh wgd.sh start
Access your server with port `10086` ! e.g (http://your_server_ip:10086), continue to read to on how to change port and ip that dashboard is running with. Access your server with port `10086` ! e.g (http://your_server_ip:10086), continue to read to on how to change port and ip that dashboard is running with.
## 🪜 Usage ## 🪜 Usage
**1. Start/Stop/Restart Wireguard Dashboard** **1. Start/Stop/Restart Wireguard Dashboard**
@ -81,39 +105,37 @@ $ sudo sh wgd.sh restart # Restart the dasboard
$ sudo sh wgd.sh update # Update the dashboard $ sudo sh wgd.sh update # Update the dashboard
``` ```
⚠️ **For first time user please also read the next section.** ⚠️ **For first time user please also read the next section.**
## ✂️ Dashboard Configuration ## ✂️ Dashboard Configuration
Since version 2.0, Wireguard Dashboard will be using a configuration file called `wg-dashboard.ini`, (It will generate automatically after first time running the dashboard). More options will include in future versions, and for now it included the following config: Since version 2.0, Wireguard Dashboard will be using a configuration file called `wg-dashboard.ini`, (It will generate automatically after first time running the dashboard). More options will include in future versions, and for now it included the following config:
- `[Account]` ### `[Account]`
- `username` - Username (Default: `admin`)
- `password` - Password, will be hash with SHA256 (Default: `admin`).
- `[Server]`
- `app_ip` - IP address the flask will run with (Default: `0.0.0.0`)
- `app_port` - Port the flask will run with (Default: `10086`)
- `auth_req` - Does the dashboard need authentication (Default: `true`)
- If `auth_req = false` , user will not be access the **Setting** tab due to security consideration. **Can only changing the file directly in system**.
- `version` - Dashboard Version
All these settings***** will be able to configure within the dashboard in **Settings** on the sidebar, without changing the actual file. `username` - Username (Default: `admin`)
- Example `password` - Password, will be hash with SHA256 (Default: `admin`).
``` ### `[Server]`
[Account]
username = admin `wg_conf_path` - The path of all the Wireguard configurations (Default: `/etc/wireguard`)
password = 8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918
`app_ip` - IP address the flask will run with (Default: `0.0.0.0`)
`app_port` - Port the flask will run with (Default: `10086`)
`auth_req` - Does the dashboard need authentication (Default: `true`)
- If `auth_req = false` , user will not be access the **Setting** tab due to security consideration. **User can only change the file directly in system**.
`version` - Dashboard Version
All these settings will be able to configure within the dashboard in **Settings** on the sidebar, without changing the actual file. **Except `version` and `auth_req` due to security consideration.**
[Server]
app_ip = 0.0.0.0
app_port = 10086
auth_req = true
version = v2.0
```
**: Except `version` and `auth_req` due to security consideration.*
## ❓ How to update the dashboard? ## ❓ How to update the dashboard?
@ -125,7 +147,7 @@ $ sudo sh wgd.sh start # Start dashboard
## 🔍 Example ## 🔍 Screenshot
![Index Image](https://github.com/donaldzou/Wireguard-Dashboard/raw/main/src/static/index.png) ![Index Image](https://github.com/donaldzou/Wireguard-Dashboard/raw/main/src/static/index.png)

View File

@ -1,3 +1,6 @@
dashboard_version = 'v2.0'
# Python Built-in Library # Python Built-in Library
import os import os
from flask import Flask, request, render_template, redirect, url_for, session, abort from flask import Flask, request, render_template, redirect, url_for, session, abort
@ -11,10 +14,8 @@ import configparser
# PIP installed library # PIP installed library
import ifcfg import ifcfg
from tinydb import TinyDB, Query from tinydb import TinyDB, Query
dashboard_version = 'v2.0'
dashboard_conf = 'wg-dashboard.ini' dashboard_conf = 'wg-dashboard.ini'
update = "" update = ""
app = Flask("Wireguard Dashboard") app = Flask("Wireguard Dashboard")
app.secret_key = secrets.token_urlsafe(16) app.secret_key = secrets.token_urlsafe(16)
app.config['TEMPLATES_AUTO_RELOAD'] = True app.config['TEMPLATES_AUTO_RELOAD'] = True
@ -254,8 +255,8 @@ def auth_req():
request.endpoint != "signout" and \ request.endpoint != "signout" and \
request.endpoint != "auth" and \ request.endpoint != "auth" and \
"username" not in session: "username" not in session:
print(request.path)
print("not loggedin") print("not loggedin")
session['message'] = "You need to sign in first!"
return redirect(url_for("signin")) return redirect(url_for("signin"))
else: else:
if request.endpoint in ['signin', 'signout', 'auth', 'settings', 'update_acct', 'update_pwd', 'update_app_ip_port', 'update_wg_conf_path']: if request.endpoint in ['signin', 'signout', 'auth', 'settings', 'update_acct', 'update_pwd', 'update_app_ip_port', 'update_wg_conf_path']:

View File

@ -8,7 +8,7 @@
<li class="nav-item"><a class="nav-link sb-settings-url" href="/settings">Settings</a></li> <li class="nav-item"><a class="nav-link sb-settings-url" href="/settings">Settings</a></li>
{% endif %} {% endif %}
{% if session['update'] == "true" %} {% if session['update'] == "true" %}
<li class="nav-item sb-update-li"><a class="nav-link sb-update-url" href="/">New Update Available!<span class="dot dot-running"></span></a></li> <li class="nav-item sb-update-li"><a class="nav-link sb-update-url" href="https://github.com/donaldzou/wireguard-dashboard/#-how-to-update-the-dashboard">New Update Available!<span class="dot dot-running"></span></a></li>
{% endif %} {% endif %}
</ul> </ul>
<hr> <hr>

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
app_name="dashboard.py" app_name="dashboard.py"
dashes='------------------------------------------------------------'
help () { help () {
printf "<Wireguard Dashboard> by Donald Zou - https://github.com/donaldzou \n" printf "<Wireguard Dashboard> by Donald Zou - https://github.com/donaldzou \n"
printf "Usage: sh wg-dashboard.sh <option>" printf "Usage: sh wg-dashboard.sh <option>"
@ -44,14 +44,34 @@ start_wgd_debug() {
} }
update_wgd() { update_wgd() {
git pull
if check_wgd_status; then new_ver=$(python3 -c "import json; import urllib.request; data = urllib.request.urlopen('https://api.github.com/repos/donaldzou/wireguard-dashboard/releases').read(); output = json.loads(data);print(output[0]['tag_name'])")
stop_wgd printf "%s\n" "$dashes"
sleep 2 printf "Are you sure you want to update to the %s? (Y/N): " "$new_ver"
printf "Wireguard Dashboard is stopped. \n" read up
start_wgd_debug if [ "$up" = "Y" ]; then
printf "%s\n" "$dashes"
printf "| Shutting down Wireguard Dashboard... |\n"
printf "%s\n" "$dashes"
printf "| Downloading %s from GitHub... |\n" "$new_ver"
printf "%s\n" "$dashes"
git pull https://github.com/donaldzou/wireguard-dashboard.git $new_ver > /dev/null 2>&1
printf "| Update Successfully! |\n"
printf "%s\n" "$dashes"
printf "| Now you can start the dashboard with >> sh wgd.sh start |\n"
printf "%s\n" "$dashes"
# if check_wgd_status; then
# stop_wgd
# sleep 2
# printf "Wireguard Dashboard is stopped. \n"
# start_wgd_debug
# else
# start_wgd_debug
# fi
else else
start_wgd_debug printf "%s\n" "$dashes"
printf "Cancel update. \n"
printf "%s\n" "$dashes"
fi fi
} }