20 lines
772 B
Python
20 lines
772 B
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
from fastapi import APIRouter, Depends, HTTPException
|
|
|
|
from classquiz.auth import get_current_user
|
|
from classquiz.db.models import User, GameInLobby
|
|
from classquiz.config import redis
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/game_waiting")
|
|
async def get_game_in_lobby(user: User = Depends(get_current_user)):
|
|
game_in_lobby_raw = await redis.get(f"game_in_lobby:{user.id.hex}")
|
|
if game_in_lobby_raw is None:
|
|
raise HTTPException(status_code=404, detail="No game waiting")
|
|
game_in_lobby = GameInLobby.parse_raw(game_in_lobby_raw)
|
|
return game_in_lobby
|