feat: features for bad internet connections

This commit is contained in:
julius 2025-02-20 08:52:48 +01:00
parent 1a1b44743a
commit 8e91724462
Signed by: julius
GPG Key ID: C80A63E6A5FD7092
2 changed files with 9 additions and 5 deletions

2
db.py
View File

@ -12,7 +12,7 @@ from sqlmodel import (
with open("db.secrets", "r") as f:
db_secrets = f.readline().strip()
engine = create_engine(db_secrets)
engine = create_engine(db_secrets, connect_args={"connect_timeout": 8})
del db_secrets

View File

@ -9,6 +9,7 @@ from db import engine, User
from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
from pydantic_settings import BaseSettings, SettingsConfigDict
from passlib.context import CryptContext
from sqlalchemy.exc import OperationalError
class Config(BaseSettings):
@ -47,10 +48,13 @@ def get_password_hash(password):
def get_user(username: str | None):
if username:
with Session(engine) as session:
return session.exec(
select(User).where(User.username == username)
).one_or_none()
try:
with Session(engine) as session:
return session.exec(
select(User).where(User.username == username)
).one_or_none()
except OperationalError:
return
def authenticate_user(username: str, password: str):