Source code for app.repository.user_game_config_repository
from contextlib import AbstractContextManager
from typing import Callable, List, Optional
from sqlalchemy.exc import NoResultFound
from sqlalchemy.orm import Session
from app.model.user_game_config import UserGameConfig
from app.repository.base_repository import BaseRepository
[docs]
class UserGameConfigRepository(BaseRepository):
"""
Repository class for managing user-specific game configurations.
Attributes:
session_factory (Callable[..., AbstractContextManager[Session]]):
Factory for creating SQLAlchemy sessions.
model: SQLAlchemy model class for user game configurations.
"""
def __init__(
self, session_factory: Callable[..., AbstractContextManager[Session]]
) -> None:
"""
Initializes the UserGameConfigRepository.
Args:
session_factory (Callable[..., AbstractContextManager[Session]]):
The session factory.
"""
super().__init__(session_factory, UserGameConfig)
[docs]
def get_all_users_by_gameId(self, gameId: str) -> List[UserGameConfig]:
"""
Get all users by gameId.
Args:
gameId: The gameId of the users to get.
Returns:
List of users with the provided gameId.
"""
with self.session_factory() as session:
return session.query(self.model).filter_by(gameId=gameId).all()