mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-23 08:13:01 +00:00
Jörn-Michael Miehe
3316bf2822
- `routers`: `admin`, `days`, `general`, `user` -> `admin`, `images` - `core.depends`: cleanup - `core.*_helpers`: joined in `core.helpers`
63 lines
1.3 KiB
Python
63 lines
1.3 KiB
Python
import secrets
|
|
from datetime import date
|
|
|
|
from fastapi import Depends, HTTPException, status
|
|
from fastapi.security import HTTPBasic, HTTPBasicCredentials
|
|
|
|
from ..core.config import Config, get_config
|
|
|
|
security = HTTPBasic()
|
|
|
|
|
|
async def user_is_admin(
|
|
credentials: HTTPBasicCredentials = Depends(security),
|
|
cfg: Config = Depends(get_config),
|
|
) -> bool:
|
|
"""
|
|
True iff der user "admin" ist
|
|
"""
|
|
|
|
username_correct = secrets.compare_digest(credentials.username, cfg.admin.name)
|
|
password_correct = secrets.compare_digest(credentials.password, cfg.admin.password)
|
|
|
|
return username_correct and password_correct
|
|
|
|
|
|
async def require_admin(
|
|
is_admin: bool = Depends(user_is_admin),
|
|
) -> None:
|
|
"""
|
|
HTTP 401 iff der user nicht "admin" ist
|
|
"""
|
|
|
|
if not is_admin:
|
|
raise HTTPException(status.HTTP_401_UNAUTHORIZED)
|
|
|
|
|
|
async def user_visible_doors() -> int:
|
|
"""
|
|
Anzahl der user-sichtbaren Türchen
|
|
"""
|
|
|
|
today = date.today()
|
|
|
|
if today.month == 12:
|
|
return today.day
|
|
|
|
if today.month in (1, 2, 3):
|
|
return 24
|
|
|
|
return 0
|
|
|
|
|
|
async def user_can_view_day(
|
|
day: int,
|
|
) -> bool:
|
|
"""
|
|
True iff das Türchen von Tag `day` user-sichtbar ist
|
|
"""
|
|
|
|
if day < 0:
|
|
raise HTTPException(status.HTTP_422_UNPROCESSABLE_ENTITY)
|
|
|
|
return day < await user_visible_doors()
|