Spaces:
Sleeping
Sleeping
File size: 5,357 Bytes
d82cccb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | import contextlib
import sqlite3
import uuid
from datetime import datetime
from typing import List, Dict
from fastapi import FastAPI, WebSocket, WebSocketDisconnect, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
# --- Configuration ---
DB_FILE = "messaging_app.db"
# --- Database Setup ---
def init_db():
"""Initialize the SQLite database safely."""
try:
conn = sqlite3.connect(DB_FILE)
cursor = conn.cursor()
cursor.execute("""
CREATE TABLE IF NOT EXISTS messages (
id INTEGER PRIMARY KEY AUTOINCREMENT,
room_id TEXT NOT NULL,
username TEXT NOT NULL,
content TEXT NOT NULL,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP
)
""")
cursor.execute("CREATE INDEX IF NOT EXISTS idx_room_id ON messages(room_id)")
conn.commit()
conn.close()
print("Database initialized successfully.")
except Exception as e:
print(f"Error initializing database: {e}")
# --- Lifespan Management ---
# This ensures DB init happens only when the app actually starts,
# preventing the "Import Error" you saw.
@contextlib.asynccontextmanager
async def lifespan(app: FastAPI):
# Startup
init_db()
yield
# Shutdown (Cleanup code goes here if needed)
# --- Pydantic Models ---
class Message(BaseModel):
room_id: str
username: str
content: str
class RoomResponse(BaseModel):
room_id: str
link: str
# --- Connection Manager ---
class ConnectionManager:
def __init__(self):
self.active_connections: Dict[str, List[WebSocket]] = {}
async def connect(self, websocket: WebSocket, room_id: str):
await websocket.accept()
if room_id not in self.active_connections:
self.active_connections[room_id] = []
self.active_connections[room_id].append(websocket)
def disconnect(self, websocket: WebSocket, room_id: str):
if room_id in self.active_connections:
self.active_connections[room_id].remove(websocket)
if not self.active_connections[room_id]:
del self.active_connections[room_id]
async def broadcast(self, message: dict, room_id: str):
if room_id in self.active_connections:
for connection in self.active_connections[room_id]:
try:
await connection.send_json(message)
except Exception:
pass
manager = ConnectionManager()
# --- FastAPI App Initialization ---
# Pass the lifespan handler here
app = FastAPI(title="Room-Based Messaging API", lifespan=lifespan)
# --- CORS Middleware ---
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# --- API Endpoints ---
@app.get("/")
async def root():
return {"status": "online", "message": "Messaging Backend is running"}
@app.post("/api/room/create", response_model=RoomResponse)
async def create_room():
room_id = str(uuid.uuid4())
return {"room_id": room_id, "link": f"/room/{room_id}"}
@app.get("/api/room/{room_id}/history")
async def get_room_history(room_id: str):
conn = sqlite3.connect(DB_FILE)
conn.row_factory = sqlite3.Row
cursor = conn.cursor()
try:
cursor.execute(
"SELECT username, content, timestamp FROM messages WHERE room_id = ? ORDER BY timestamp ASC",
(room_id,)
)
rows = cursor.fetchall()
history = [
{
"username": row["username"],
"content": row["content"],
"timestamp": row["timestamp"],
"type": "history"
}
for row in rows
]
return {"room_id": room_id, "messages": history}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
finally:
conn.close()
# --- WebSocket Endpoint ---
@app.websocket("/ws/{room_id}/{username}")
async def websocket_endpoint(websocket: WebSocket, room_id: str, username: str):
await manager.connect(websocket, room_id)
async def process_message(content: str):
message_payload = {
"username": username,
"content": content,
"timestamp": datetime.now().isoformat(),
"type": "live"
}
try:
conn = sqlite3.connect(DB_FILE)
cursor = conn.cursor()
cursor.execute(
"INSERT INTO messages (room_id, username, content) VALUES (?, ?, ?)",
(room_id, username, content)
)
conn.commit()
conn.close()
except Exception as e:
print(f"Database error: {e}")
await manager.broadcast(message_payload, room_id)
try:
while True:
data = await websocket.receive_text()
await process_message(data)
except WebSocketDisconnect:
manager.disconnect(websocket, room_id)
await manager.broadcast({
"username": "System",
"content": f"{username} left the chat",
"type": "system"
}, room_id)
except Exception as e:
print(f"Error: {e}")
manager.disconnect(websocket, room_id) |