generated from nathanwoodburn/python-webserver-template
feat: Add webserver routes and account logic
All checks were successful
Build Docker / BuildImage (push) Successful in 2m7s
All checks were successful
Build Docker / BuildImage (push) Successful in 2m7s
This commit is contained in:
27
alerts.py
27
alerts.py
@@ -15,6 +15,33 @@ SMTP_PORT = int(os.getenv('SMTP_PORT', 465))
|
|||||||
SMTP_USERNAME = os.getenv('SMTP_USERNAME', None)
|
SMTP_USERNAME = os.getenv('SMTP_USERNAME', None)
|
||||||
SMTP_PASSWORD = os.getenv('SMTP_PASSWORD', None)
|
SMTP_PASSWORD = os.getenv('SMTP_PASSWORD', None)
|
||||||
|
|
||||||
|
NOTIFICATION_TYPES = [
|
||||||
|
{
|
||||||
|
"type": "discord_webhook",
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"name": "url",
|
||||||
|
"label": "Discord Webhook URL",
|
||||||
|
"type": "text",
|
||||||
|
"required": True
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Send a notification to a Discord channel via webhook."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "email",
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"name": "email",
|
||||||
|
"label": "Email Address",
|
||||||
|
"type": "email",
|
||||||
|
"required": True
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Send an email notification."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
def handle_alert(domain: str, notification: dict, alert_data: dict):
|
def handle_alert(domain: str, notification: dict, alert_data: dict):
|
||||||
"""
|
"""
|
||||||
|
|||||||
19
domains.py
19
domains.py
@@ -115,6 +115,25 @@ def update_notification(domain: str, notification: dict):
|
|||||||
with open('data/domains.json', 'w') as f:
|
with open('data/domains.json', 'w') as f:
|
||||||
json.dump(domains, f, indent=4)
|
json.dump(domains, f, indent=4)
|
||||||
|
|
||||||
|
def delete_notification(notification_id: str, user_name: str):
|
||||||
|
"""
|
||||||
|
Delete a notification for a domain.
|
||||||
|
"""
|
||||||
|
domains = get_domains()
|
||||||
|
domains_to_delete = []
|
||||||
|
|
||||||
|
for domain in domains:
|
||||||
|
domains[domain] = [n for n in domains[domain] if n['id'] != notification_id or n.get('user_name') != user_name]
|
||||||
|
if not domains[domain]:
|
||||||
|
domains_to_delete.append(domain)
|
||||||
|
|
||||||
|
# Remove empty domains after iteration
|
||||||
|
for domain in domains_to_delete:
|
||||||
|
del domains[domain]
|
||||||
|
|
||||||
|
with open('data/domains.json', 'w') as f:
|
||||||
|
json.dump(domains, f, indent=4)
|
||||||
|
|
||||||
def get_account_notifications(user_name: str) -> list:
|
def get_account_notifications(user_name: str) -> list:
|
||||||
"""
|
"""
|
||||||
Get all notifications for a specific account.
|
Get all notifications for a specific account.
|
||||||
|
|||||||
113
server.py
113
server.py
@@ -18,6 +18,7 @@ import dotenv
|
|||||||
import threading
|
import threading
|
||||||
import time
|
import time
|
||||||
import domains
|
import domains
|
||||||
|
from alerts import NOTIFICATION_TYPES
|
||||||
|
|
||||||
dotenv.load_dotenv()
|
dotenv.load_dotenv()
|
||||||
|
|
||||||
@@ -94,6 +95,118 @@ def index():
|
|||||||
return render_template("index.html")
|
return render_template("index.html")
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/account")
|
||||||
|
def account():
|
||||||
|
# Check if the user is logged in
|
||||||
|
# Check for token cookie
|
||||||
|
token = request.cookies.get("token")
|
||||||
|
if not token:
|
||||||
|
return redirect(f"https://login.hns.au/auth?return={request.host_url}login")
|
||||||
|
|
||||||
|
user_data = requests.get(f"https://login.hns.au/auth/user?token={token}")
|
||||||
|
if user_data.status_code != 200:
|
||||||
|
return redirect(f"https://login.hns.au/auth?return={request.host_url}login")
|
||||||
|
user_data = user_data.json()
|
||||||
|
|
||||||
|
notifications = domains.get_account_notifications(user_data["username"])
|
||||||
|
if not notifications:
|
||||||
|
return render_template("account.html", user=user_data, domains=[], NOTIFICATION_TYPES=NOTIFICATION_TYPES)
|
||||||
|
|
||||||
|
|
||||||
|
return render_template("account.html", user=user_data, notifications=notifications, NOTIFICATION_TYPES=NOTIFICATION_TYPES)
|
||||||
|
|
||||||
|
@app.route("/login")
|
||||||
|
def login():
|
||||||
|
# Check if token parameter is present
|
||||||
|
token = request.args.get("token")
|
||||||
|
if not token:
|
||||||
|
return redirect(f"https://login.hns.au/auth?return={request.host_url}login")
|
||||||
|
# Set token cookie
|
||||||
|
response = make_response(redirect(f"{request.host_url}account"))
|
||||||
|
response.set_cookie("token", token, httponly=True, secure=True)
|
||||||
|
return response
|
||||||
|
|
||||||
|
@app.route("/logout")
|
||||||
|
def logout():
|
||||||
|
# Clear the token cookie
|
||||||
|
response = make_response(redirect(f"{request.host_url}"))
|
||||||
|
response.set_cookie("token", "", expires=0, httponly=True, secure=True)
|
||||||
|
return response
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/notification/<notificationtype>", methods=["POST"])
|
||||||
|
def addNotification(notificationtype: str):
|
||||||
|
"""
|
||||||
|
Add a notification for a domain.
|
||||||
|
"""
|
||||||
|
|
||||||
|
token = request.cookies.get("token")
|
||||||
|
if not token:
|
||||||
|
return redirect(f"https://login.hns.au/auth?return={request.host_url}login")
|
||||||
|
|
||||||
|
user_data = requests.get(f"https://login.hns.au/auth/user?token={token}")
|
||||||
|
if user_data.status_code != 200:
|
||||||
|
return redirect(f"https://login.hns.au/auth?return={request.host_url}login")
|
||||||
|
user_data = user_data.json()
|
||||||
|
username = user_data.get("username", None)
|
||||||
|
if not username:
|
||||||
|
return jsonify({"error": "Invalid user data"}), 400
|
||||||
|
|
||||||
|
notificationType = None
|
||||||
|
for notification in NOTIFICATION_TYPES:
|
||||||
|
if notification['type'] == notificationtype:
|
||||||
|
notificationType = notification
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
return jsonify({"error": "Invalid notification type"}), 400
|
||||||
|
|
||||||
|
# Get form data
|
||||||
|
data = request.form.to_dict()
|
||||||
|
if not data or 'domain' not in data or 'blocks' not in data:
|
||||||
|
return jsonify({"error": "Invalid request data"}), 400
|
||||||
|
|
||||||
|
domain = data['domain']
|
||||||
|
|
||||||
|
for field in notificationType['fields']:
|
||||||
|
if field['name'] not in data and field.get('required', False):
|
||||||
|
return jsonify({"error": f"Missing field: {field['name']}"}), 400
|
||||||
|
|
||||||
|
|
||||||
|
notification = data
|
||||||
|
|
||||||
|
notification['type'] = notificationtype
|
||||||
|
notification['id'] = os.urandom(16).hex() # Generate a random ID for the notification
|
||||||
|
notification['user_name'] = username
|
||||||
|
# Delete domain duplicate from data
|
||||||
|
notification.pop('domain', None)
|
||||||
|
|
||||||
|
domains.add_notification(domain, notification)
|
||||||
|
return redirect(f"{request.host_url}account")
|
||||||
|
|
||||||
|
@app.route("/notification/delete/<notification_id>")
|
||||||
|
def delete_notification(notification_id: str):
|
||||||
|
"""
|
||||||
|
Delete a notification by its ID.
|
||||||
|
"""
|
||||||
|
token = request.cookies.get("token")
|
||||||
|
if not token:
|
||||||
|
return redirect(f"https://login.hns.au/auth?return={request.host_url}login")
|
||||||
|
|
||||||
|
user_data = requests.get(f"https://login.hns.au/auth/user?token={token}")
|
||||||
|
if user_data.status_code != 200:
|
||||||
|
return redirect(f"https://login.hns.au/auth?return={request.host_url}login")
|
||||||
|
user_data = user_data.json()
|
||||||
|
|
||||||
|
domains.delete_notification(notification_id, user_data['username'])
|
||||||
|
return redirect(f"{request.host_url}account")
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/account/<domain>")
|
||||||
|
def account_domain(domain: str):
|
||||||
|
# TODO - Implement account domain logic
|
||||||
|
return redirect(f"/account")
|
||||||
|
|
||||||
|
|
||||||
@app.route("/<path:path>")
|
@app.route("/<path:path>")
|
||||||
def catch_all(path: str):
|
def catch_all(path: str):
|
||||||
if os.path.isfile("templates/" + path):
|
if os.path.isfile("templates/" + path):
|
||||||
|
|||||||
92
templates/account.html
Normal file
92
templates/account.html
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>FireAlerts</title>
|
||||||
|
<link rel="icon" href="/assets/img/favicon.png" type="image/png">
|
||||||
|
<link rel="stylesheet" href="/assets/css/index.css">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="right">
|
||||||
|
<span class="user">Logged in as {{user.username}}</span>
|
||||||
|
<a href="/logout" class="button">Logout</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h1>FireAlerts</h1>
|
||||||
|
|
||||||
|
<div class="centre">
|
||||||
|
<h2>Your Alerts</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Display existing notifications -->
|
||||||
|
{% if notifications %}
|
||||||
|
<div class="notifications-list">
|
||||||
|
{% for notification in notifications %}
|
||||||
|
<div class="notification-item">
|
||||||
|
<h4>Domain: {{notification.domain}}</h4>
|
||||||
|
<p><strong>Type:</strong> {{notification.notification.type.replace('_', ' ').title()}}</p>
|
||||||
|
<p><strong>Blocks before expiry:</strong> {{notification.notification.blocks}}</p>
|
||||||
|
{% for notificationType in NOTIFICATION_TYPES %}
|
||||||
|
{% if notificationType.type == notification.notification.type %}
|
||||||
|
{% for field in notificationType.fields %}
|
||||||
|
<p><strong>{{field.label}}:</strong> {{notification.notification[field.name]}}</p>
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
<!-- Delete notification button -->
|
||||||
|
<a href="/notification/delete/{{notification.notification.id}}" class="button delete-button">Delete</a>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<div class="no-notifications">
|
||||||
|
<p>You have no notifications set up yet.</p>
|
||||||
|
<p>Use the forms below to add new notifications.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="centre">
|
||||||
|
<h2>Setup your alerts below:</h2>
|
||||||
|
</div>
|
||||||
|
<!-- Forms to add notifications -->
|
||||||
|
{% for notificationType in NOTIFICATION_TYPES %}
|
||||||
|
<div class="notification-form">
|
||||||
|
<h3>{{notificationType.description}}</h3>
|
||||||
|
<form method="POST" action="/notification/{{notificationType.type}}">
|
||||||
|
<!-- Domain input -->
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="domain">Domain:</label>
|
||||||
|
<input type="text" id="domain" name="domain" required placeholder="exampledomain">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
{% for field in notificationType.fields %}
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="{{field.name}}">{{field.label}}:</label>
|
||||||
|
<input
|
||||||
|
type="{{field.type}}"
|
||||||
|
id="{{field.name}}"
|
||||||
|
name="{{field.name}}"
|
||||||
|
{% if field.required %}required{% endif %}
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
<!-- Add required blocks before expiry field -->
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="blocks">Blocks before expiry</label>
|
||||||
|
<input type="number" id="blocks" name="blocks" required min="1" max="10000" value="1008">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button type="submit" class="button">Add {{notificationType.type.replace('_', ' ').title()}} Notification</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@@ -18,3 +18,115 @@ a {
|
|||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
.button {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 10px 20px;
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
border-radius: 5px;
|
||||||
|
transition: background-color 0.3s ease;
|
||||||
|
}
|
||||||
|
.right {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
span.user {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #ffffff;
|
||||||
|
margin-inline-end: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notification-form {
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
border: 1px solid #333333;
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 20px;
|
||||||
|
margin: 20px auto;
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notification-form h3 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-group {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-group label {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-group input {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
background-color: #333333;
|
||||||
|
border: 1px solid #555555;
|
||||||
|
border-radius: 4px;
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 14px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-group input:focus {
|
||||||
|
outline: none;
|
||||||
|
border-color: #ffffff;
|
||||||
|
background-color: #444444;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notifications-list {
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 30px auto;
|
||||||
|
padding: 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notifications-list h2 {
|
||||||
|
color: #ffffff;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notification-item {
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
border: 1px solid #333333;
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 15px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notification-item h4 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notification-item p {
|
||||||
|
margin: 5px 0;
|
||||||
|
color: #cccccc;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notification-item p strong {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-notifications {
|
||||||
|
text-align: center;
|
||||||
|
max-width: 500px;
|
||||||
|
margin: 30px auto;
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Specific handling for long URLs and IDs */
|
||||||
|
.notification-item p:contains("URL"),
|
||||||
|
.notification-item p:contains("ID") {
|
||||||
|
font-family: monospace;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Nathan.Woodburn/</title>
|
<title>FireAlerts</title>
|
||||||
<link rel="icon" href="/assets/img/favicon.png" type="image/png">
|
<link rel="icon" href="/assets/img/favicon.png" type="image/png">
|
||||||
<link rel="stylesheet" href="/assets/css/index.css">
|
<link rel="stylesheet" href="/assets/css/index.css">
|
||||||
</head>
|
</head>
|
||||||
@@ -12,7 +12,9 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class="spacer"></div>
|
<div class="spacer"></div>
|
||||||
<div class="centre">
|
<div class="centre">
|
||||||
<h1>Nathan.Woodburn/</h1>
|
<h1>FireAlerts</h1>
|
||||||
|
<p>Get alerted before your Handshake domains expire.</p>
|
||||||
|
<a href="/account" class="button">Account</a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user