Session management fully restored

This commit is contained in:
James Ketr 2025-09-05 11:47:20 -07:00
parent 9a211c2ed4
commit a525e3467d

View File

@ -5,13 +5,14 @@ This module contains session management endpoints.
"""
from typing import TYPE_CHECKING
from fastapi import APIRouter, Request, Response
from fastapi import APIRouter, Request, Response, Cookie
import json
# Import shared models
import sys
import os
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))))
from shared.models import SessionResponse, HealthResponse
from shared.models import SessionResponse, HealthResponse, LobbyModel
from logger import logger
@ -46,50 +47,51 @@ class SessionAPI:
return HealthResponse(status="ok")
@self.router.get("/session", response_model=SessionResponse)
def get_session(request: Request, response: Response):
# Check for existing session cookie
session_id = request.cookies.get("session_id")
if session_id and self._is_valid_session_id(session_id):
# Try to get existing session
existing_session = self.session_manager.get_session(session_id)
if existing_session:
logger.info(f"Found existing session from cookie: {session_id[:8]}")
return SessionResponse(
id=existing_session.id,
name=existing_session.name or "",
lobbies=[], # Could be populated based on existing session
protected=False,
has_media=existing_session.has_media,
bot_run_id=existing_session.bot_run_id,
bot_provider_id=existing_session.bot_provider_id,
bot_instance_id=existing_session.bot_instance_id,
)
else:
# Cookie exists but session doesn't - create new session with this ID
logger.info(
f"Creating new session with cookie ID: {session_id[:8]}"
)
session = self.session_manager.create_session(session_id=session_id)
else:
# No valid cookie - create completely new session
async def get_session(
request: Request,
response: Response,
session_id: str | None = Cookie(default=None),
):
if session_id is None:
# Create new session
session = self.session_manager.create_session()
session_id = session.id
logger.info(f"Created new session: {session.getName()}")
response.set_cookie(key="session_id", value=session_id)
else:
# Validate that session_id is a hex string of length 32
if not self._is_valid_session_id(session_id):
from fastapi import Response as FastAPIResponse
# Set the session cookie (expires in 30 days)
response.set_cookie(
key="session_id",
value=session.id,
max_age=30 * 24 * 60 * 60, # 30 days in seconds
httponly=True,
secure=False, # Set to True in production with HTTPS
samesite="lax",
)
return FastAPIResponse(
content=json.dumps({"error": "Invalid session_id"}),
status_code=400,
media_type="application/json",
)
logger.info(f"[{session_id[:8]}]: Browser hand-shake achieved.")
session = self.session_manager.get_session(session_id)
if not session:
# Create new session with the provided ID
session = self.session_manager.create_session(session_id=session_id)
logger.info(f"{session.getName()}: New session created.")
else:
session.update_last_used() # Update activity on session resumption
logger.info(f"{session.getName()}: Existing session resumed.")
# Note: Original implementation parts all lobbies for this session that have no active websocket
# This would require implementing the part() method and websocket management
# For now, we'll just log the session resumption
# Return session response with lobby information
return SessionResponse(
id=session.id,
name=session.name or "",
lobbies=[], # New sessions start with no lobbies
id=session_id,
name=session.name if session.name else "",
lobbies=[
LobbyModel(id=lobby.id, name=lobby.name, private=lobby.private)
for lobby in session.lobbies
],
protected=False,
has_media=session.has_media,
bot_run_id=session.bot_run_id,