import os import subprocess import sqlite3 import asyncio from fastapi import FastAPI, WebSocket, BackgroundTasks, Request, Form, WebSocketDisconnect from fastapi.responses import RedirectResponse from fastapi.templating import Jinja2Templates app = FastAPI() templates = Jinja2Templates(directory="templates") SSH_KEY = os.path.expanduser("~/.ssh/id_rsa") DB_PATH = "cluster.db" # --- DATENBANK INITIALISIERUNG (WICHTIG!) --- def init_db(): conn = sqlite3.connect(DB_PATH) # Wir stellen sicher, dass die Tabelle existiert conn.execute(''' CREATE TABLE IF NOT EXISTS nodes ( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, ip TEXT UNIQUE, user TEXT, status TEXT ) ''') conn.commit() conn.close() # Diese Funktion wird JETZT beim Start aufgerufen init_db() def get_db(): conn = sqlite3.connect(DB_PATH) conn.row_factory = sqlite3.Row return conn # --- WebSocket Manager --- class ConnectionManager: def __init__(self): self.active_connections: list[WebSocket] = [] async def connect(self, websocket: WebSocket): await websocket.accept() self.active_connections.append(websocket) def disconnect(self, websocket: WebSocket): self.active_connections.remove(websocket) async def broadcast(self, message: str): for connection in self.active_connections: await connection.send_text(message) manager = ConnectionManager() # --- DB & SSH Helper --- def get_db(): conn = sqlite3.connect(DB_PATH) conn.row_factory = sqlite3.Row return conn # Nur SSH-Key kopieren, nichts installieren async def bootstrap_ssh_only(ip, user, password): await manager.broadcast(f"๐Ÿ”‘ Initialisiere SSH-Handshake fรผr {ip}...") ssh_copy_cmd = f"sshpass -p '{password}' ssh-copy-id -o StrictHostKeyChecking=no -i {SSH_KEY}.pub {user}@{ip}" process = subprocess.Popen(ssh_copy_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True) for line in process.stdout: await manager.broadcast(f"SSH: {line.strip()}") conn = get_db() conn.execute('UPDATE nodes SET status = "Bereit (Kein Docker)" WHERE ip = ?', (ip,)) conn.commit() conn.close() await manager.broadcast(f"โœ… Node {ip} ist verbunden. KI kann nun Befehle senden.") # --- Routen --- @app.get("/") async def index(request: Request): conn = get_db() nodes = conn.execute('SELECT * FROM nodes').fetchall() conn.close() return templates.TemplateResponse("index.html", {"request": request, "nodes": nodes}) @app.post("/add_node") async def add_node(background_tasks: BackgroundTasks, name: str = Form(...), ip: str = Form(...), user: str = Form(...), password: str = Form(...)): conn = get_db() try: conn.execute('INSERT INTO nodes (name, ip, user, status) VALUES (?, ?, ?, ?)', (name, ip, user, "Kopplung...")) conn.commit() background_tasks.add_task(bootstrap_ssh_only, ip, user, password) except sqlite3.IntegrityError: pass finally: conn.close() return RedirectResponse(url="/", status_code=303) @app.post("/remove_node/{node_id}") async def remove_node(node_id: int): conn = get_db() conn.execute('DELETE FROM nodes WHERE id = ?', (node_id,)) conn.commit() conn.close() return RedirectResponse(url="/", status_code=303) # --- Chat & KI Logik --- @app.websocket("/ws/chat") async def chat_endpoint(websocket: WebSocket): await websocket.accept() while True: user_msg = await websocket.receive_text() user_msg_lower = user_msg.lower() # Logik: "Installiere Docker auf [Name]" if "installiere docker" in user_msg_lower: conn = get_db() nodes = conn.execute('SELECT * FROM nodes').fetchall() conn.close() target = next((n for n in nodes if n['name'].lower() in user_msg_lower or n['ip'] in user_msg_lower), None) if target: await websocket.send_text(f"๐Ÿค– Verstanden. Ich installiere Docker auf {target['name']} ({target['ip']})...") # Hier rufen wir die Installation via SSH-Key auf cmd = "curl -sSL https://get.docker.com | sh && sudo usermod -aG docker " + target['user'] # Wir schicken das Ergebnis an die Log-Konsole asyncio.create_task(run_remote_task(target['ip'], target['user'], cmd, "Docker Installation")) else: await websocket.send_text("๐Ÿค– Ich konnte den Node nicht finden. Bitte nenne den Namen korrekt.") else: await websocket.send_text(f"๐Ÿค– Empfangen: {user_msg}. Soll ich Docker oder Ollama auf einem Node installieren?") async def run_remote_task(ip, user, cmd, task_name): await manager.broadcast(f"๐Ÿš€ KI-Task gestartet: {task_name} auf {ip}") # Nutzung von SSH-Key (kein Passwort nรถtig) ssh_cmd = f"ssh -o StrictHostKeyChecking=no {user}@{ip} '{cmd}'" process = subprocess.Popen(ssh_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True) for line in process.stdout: await manager.broadcast(f"๐Ÿ› ๏ธ {line.strip()[:80]}") await manager.broadcast(f"โœ… {task_name} auf {ip} abgeschlossen.")