modified: app.py
This commit is contained in:
121
app.py
121
app.py
@@ -93,6 +93,25 @@ def make_discord_session(token=None, state=None):
|
|||||||
scope=["identify"]
|
scope=["identify"]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def is_admin():
|
||||||
|
"""Überprüft, ob der Benutzer Admin-Rechte hat."""
|
||||||
|
if "discord_user" in session:
|
||||||
|
user_info = session["discord_user"]
|
||||||
|
user_id = user_info["id"]
|
||||||
|
|
||||||
|
# Überprüfe die Admin-Rechte des Benutzers
|
||||||
|
connection = get_db_connection()
|
||||||
|
cursor = connection.cursor(dictionary=True)
|
||||||
|
|
||||||
|
cursor.execute("SELECT permission FROM user_data WHERE user_id = %s", (user_id,))
|
||||||
|
user_data = cursor.fetchone()
|
||||||
|
|
||||||
|
cursor.close()
|
||||||
|
connection.close()
|
||||||
|
|
||||||
|
if user_data and user_data["permission"] >= 8:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
@app.route("/")
|
@app.route("/")
|
||||||
def landing_page():
|
def landing_page():
|
||||||
@@ -183,7 +202,7 @@ def admin_dashboard():
|
|||||||
return render_template("admin_dashboard.html", user_info=user_info)
|
return render_template("admin_dashboard.html", user_info=user_info)
|
||||||
else:
|
else:
|
||||||
return redirect(url_for("user_dashboard"))
|
return redirect(url_for("user_dashboard"))
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
@app.route("/user_dashboard")
|
@app.route("/user_dashboard")
|
||||||
def user_dashboard():
|
def user_dashboard():
|
||||||
@@ -204,7 +223,7 @@ def user_dashboard():
|
|||||||
return render_template("user_dashboard.html", user_info=user_info, user_data=user_data)
|
return render_template("user_dashboard.html", user_info=user_info, user_data=user_data)
|
||||||
else:
|
else:
|
||||||
return "User data not found", 404
|
return "User data not found", 404
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
@app.route("/logout")
|
@app.route("/logout")
|
||||||
def logout():
|
def logout():
|
||||||
@@ -215,21 +234,24 @@ def logout():
|
|||||||
|
|
||||||
@app.route("/start_bot")
|
@app.route("/start_bot")
|
||||||
def start():
|
def start():
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
|
user_info = session["discord_user"]
|
||||||
start_bot()
|
start_bot()
|
||||||
return redirect(url_for("admin_dashboard"))
|
return render_template("admin_dashboard", user_info=user_info)
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
|
|
||||||
@app.route("/stop_bot")
|
@app.route("/stop_bot")
|
||||||
def stop():
|
def stop():
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
|
user_info = session["discord_user"]
|
||||||
stop_bot()
|
stop_bot()
|
||||||
return redirect(url_for("admin_dashboard"))
|
return render_template("admin_dashboard", user_info=user_info)
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
@app.route("/settings", methods=["GET", "POST"])
|
@app.route("/settings", methods=["GET", "POST"])
|
||||||
def settings():
|
def settings():
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
if request.method == "POST":
|
if request.method == "POST":
|
||||||
introduction = request.form.get("introduction")
|
introduction = request.form.get("introduction")
|
||||||
asknotes_introduction = request.form.get("asknotes_introduction")
|
asknotes_introduction = request.form.get("asknotes_introduction")
|
||||||
@@ -245,12 +267,12 @@ def settings():
|
|||||||
asknotes_introduction = load_text_file(ASKNOTES_INTRO_FILE)
|
asknotes_introduction = load_text_file(ASKNOTES_INTRO_FILE)
|
||||||
|
|
||||||
return render_template("settings.html", introduction=introduction, asknotes_introduction=asknotes_introduction)
|
return render_template("settings.html", introduction=introduction, asknotes_introduction=asknotes_introduction)
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
@app.route("/users")
|
@app.route("/users")
|
||||||
def users():
|
def users():
|
||||||
"""Zeigt eine Liste aller Benutzer an."""
|
"""Zeigt eine Liste aller Benutzer an."""
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
connection = get_db_connection()
|
connection = get_db_connection()
|
||||||
cursor = connection.cursor(dictionary=True)
|
cursor = connection.cursor(dictionary=True)
|
||||||
|
|
||||||
@@ -260,12 +282,12 @@ def users():
|
|||||||
cursor.close()
|
cursor.close()
|
||||||
connection.close()
|
connection.close()
|
||||||
return render_template("users.html", users=users)
|
return render_template("users.html", users=users)
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
@app.route("/ban_user/<int:user_id>")
|
@app.route("/ban_user/<int:user_id>")
|
||||||
def ban_user(user_id):
|
def ban_user(user_id):
|
||||||
"""Banned einen Benutzer."""
|
"""Banned einen Benutzer."""
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
connection = get_db_connection()
|
connection = get_db_connection()
|
||||||
cursor = connection.cursor()
|
cursor = connection.cursor()
|
||||||
|
|
||||||
@@ -280,12 +302,12 @@ def ban_user(user_id):
|
|||||||
finally:
|
finally:
|
||||||
cursor.close()
|
cursor.close()
|
||||||
connection.close()
|
connection.close()
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
@app.route("/update_points/<int:user_id>", methods=["POST"])
|
@app.route("/update_points/<int:user_id>", methods=["POST"])
|
||||||
def update_points(user_id):
|
def update_points(user_id):
|
||||||
"""Aktualisiert die Punkte eines Benutzers."""
|
"""Aktualisiert die Punkte eines Benutzers."""
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
points_change = int(request.form["points_change"])
|
points_change = int(request.form["points_change"])
|
||||||
connection = get_db_connection()
|
connection = get_db_connection()
|
||||||
cursor = connection.cursor()
|
cursor = connection.cursor()
|
||||||
@@ -301,12 +323,12 @@ def update_points(user_id):
|
|||||||
finally:
|
finally:
|
||||||
cursor.close()
|
cursor.close()
|
||||||
connection.close()
|
connection.close()
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
@app.route("/unban_user/<int:user_id>")
|
@app.route("/unban_user/<int:user_id>")
|
||||||
def unban_user(user_id):
|
def unban_user(user_id):
|
||||||
"""Entbannt einen Benutzer."""
|
"""Entbannt einen Benutzer."""
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
connection = get_db_connection()
|
connection = get_db_connection()
|
||||||
cursor = connection.cursor()
|
cursor = connection.cursor()
|
||||||
|
|
||||||
@@ -321,12 +343,12 @@ def unban_user(user_id):
|
|||||||
finally:
|
finally:
|
||||||
cursor.close()
|
cursor.close()
|
||||||
connection.close()
|
connection.close()
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
@app.route("/update_role/<int:user_id>", methods=["POST"])
|
@app.route("/update_role/<int:user_id>", methods=["POST"])
|
||||||
def update_role(user_id):
|
def update_role(user_id):
|
||||||
"""Aktualisiert die Rolle (Berechtigung) eines Benutzers."""
|
"""Aktualisiert die Rolle (Berechtigung) eines Benutzers."""
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
new_permission = request.form["permission"]
|
new_permission = request.form["permission"]
|
||||||
connection = get_db_connection()
|
connection = get_db_connection()
|
||||||
cursor = connection.cursor()
|
cursor = connection.cursor()
|
||||||
@@ -342,80 +364,33 @@ def update_role(user_id):
|
|||||||
finally:
|
finally:
|
||||||
cursor.close()
|
cursor.close()
|
||||||
connection.close()
|
connection.close()
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
@app.route("/logs")
|
@app.route("/logs")
|
||||||
def view_logs():
|
def view_logs():
|
||||||
"""Zeigt die Logs des Bots im Admin-Panel an."""
|
"""Zeigt die Logs des Bots im Admin-Panel an."""
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
return render_template("logs.html")
|
return render_template("logs.html")
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
@app.route("/get_logs")
|
@app.route("/get_logs")
|
||||||
def get_logs():
|
def get_logs():
|
||||||
"""Liest den Inhalt der Log-Datei und gibt ihn zurück."""
|
"""Liest den Inhalt der Log-Datei und gibt ihn zurück."""
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
try:
|
try:
|
||||||
with open(LOG_FILE_PATH, 'r', encoding='utf-8') as file:
|
with open(LOG_FILE_PATH, 'r', encoding='utf-8') as file:
|
||||||
logs = file.read()
|
logs = file.read()
|
||||||
return jsonify({"logs": logs})
|
return jsonify({"logs": logs})
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
return jsonify({"logs": "Log file not found."})
|
return jsonify({"logs": "Log file not found."})
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
def get_bot_statistics():
|
|
||||||
"""Berechnet grundlegende Statistiken für den Bot."""
|
|
||||||
connection = get_db_connection()
|
|
||||||
cursor = connection.cursor(dictionary=True)
|
|
||||||
|
|
||||||
# Beispielabfragen, anpassen je nach Datenbankstruktur
|
|
||||||
cursor.execute("SELECT COUNT(*) AS total_messages FROM chat_history")
|
|
||||||
total_messages = cursor.fetchone()["total_messages"]
|
|
||||||
|
|
||||||
cursor.execute("""
|
|
||||||
SELECT command_name, COUNT(*) AS usage_count
|
|
||||||
FROM command_log
|
|
||||||
GROUP BY command_name
|
|
||||||
ORDER BY usage_count DESC
|
|
||||||
LIMIT 1
|
|
||||||
""")
|
|
||||||
most_used_command = cursor.fetchone()["command_name"]
|
|
||||||
|
|
||||||
cursor.close()
|
|
||||||
connection.close()
|
|
||||||
|
|
||||||
return {
|
|
||||||
"total_messages": total_messages,
|
|
||||||
"most_used_command": most_used_command,
|
|
||||||
}
|
|
||||||
|
|
||||||
@app.route("/download_logs")
|
@app.route("/download_logs")
|
||||||
def download_logs():
|
def download_logs():
|
||||||
"""Bietet die Log-Datei zum Download an."""
|
"""Bietet die Log-Datei zum Download an."""
|
||||||
if "username" in session:
|
if is_admin():
|
||||||
return send_file(LOG_FILE_PATH, as_attachment=True)
|
return send_file(LOG_FILE_PATH, as_attachment=True)
|
||||||
return redirect(url_for("login"))
|
return redirect(url_for("landing_page"))
|
||||||
|
|
||||||
import shutil
|
|
||||||
|
|
||||||
ARCHIVE_DIR = "archive_logs"
|
|
||||||
if not os.path.exists(ARCHIVE_DIR):
|
|
||||||
os.makedirs(ARCHIVE_DIR)
|
|
||||||
|
|
||||||
@app.route("/archive_logs", methods=["POST"])
|
|
||||||
def archive_logs():
|
|
||||||
"""Archiviert die aktuelle Log-Datei und beginnt eine neue Log-Datei."""
|
|
||||||
if "username" in session:
|
|
||||||
if os.path.exists(LOG_FILE_PATH):
|
|
||||||
timestamp = datetime.now().strftime('%Y-%m-%d_%H-%M-%S')
|
|
||||||
archive_file = os.path.join(ARCHIVE_DIR, f"log_{timestamp}.log")
|
|
||||||
shutil.move(LOG_FILE_PATH, archive_file)
|
|
||||||
with open(LOG_FILE_PATH, 'w', encoding='utf-8') as file:
|
|
||||||
file.write("") # Neue leere Log-Datei starten
|
|
||||||
return jsonify({"status": "success", "message": "Logs archived successfully."})
|
|
||||||
else:
|
|
||||||
return jsonify({"status": "error", "message": "Log file not found."})
|
|
||||||
return redirect(url_for("login"))
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
app.run(host="0.0.0.0", port=5000, debug=True)
|
app.run(host="0.0.0.0", port=5000, debug=True)
|
||||||
|
|||||||
Reference in New Issue
Block a user