rework _security to respect EventDates
This commit is contained in:
parent
558f8d22ff
commit
be6c03c84a
4 changed files with 32 additions and 24 deletions
|
@ -130,14 +130,18 @@ async def gen_day_auto_image(
|
||||||
|
|
||||||
async def get_day_image(
|
async def get_day_image(
|
||||||
day: int,
|
day: int,
|
||||||
|
days: list[int] = Depends(get_all_sorted_days),
|
||||||
cfg: Config = Depends(get_config),
|
cfg: Config = Depends(get_config),
|
||||||
auto_image_names: dict[int, str] = Depends(get_all_auto_image_names),
|
auto_image_names: dict[int, str] = Depends(get_all_auto_image_names),
|
||||||
day_parts: dict[int, str] = Depends(get_all_parts),
|
day_parts: dict[int, str] = Depends(get_all_parts),
|
||||||
) -> Image.Image:
|
) -> Image.Image | None:
|
||||||
"""
|
"""
|
||||||
Bild für einen Tag abrufen
|
Bild für einen Tag abrufen
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
if day not in days:
|
||||||
|
return None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# Versuche, aus "manual"-Ordner zu laden
|
# Versuche, aus "manual"-Ordner zu laden
|
||||||
img = await load_image(f"images_manual/{day}.jpg")
|
img = await load_image(f"images_manual/{day}.jpg")
|
||||||
|
|
|
@ -77,16 +77,18 @@ class EventDates:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__overall_duration: timedelta
|
__overall_duration: timedelta
|
||||||
dates: list[date]
|
dates: dict[int, date]
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def first(self) -> date:
|
def first(self) -> date:
|
||||||
"""Datum des ersten Ereignisses"""
|
"""Datum des ersten Ereignisses"""
|
||||||
return self.dates[0]
|
return self.dates[min(self.dates.keys())]
|
||||||
|
|
||||||
def get_next(self, *, today: date) -> date | None:
|
def get_next(self, *, today: date) -> date | None:
|
||||||
"""Datum des nächsten Ereignisses"""
|
"""Datum des nächsten Ereignisses"""
|
||||||
return next((event for event in self.dates if event > today), None)
|
return next(
|
||||||
|
(event for event in sorted(self.dates.values()) if event > today), None
|
||||||
|
)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def next(self) -> date | None:
|
def next(self) -> date | None:
|
||||||
|
@ -96,7 +98,7 @@ class EventDates:
|
||||||
@property
|
@property
|
||||||
def last(self) -> date:
|
def last(self) -> date:
|
||||||
"""Datum des letzten Ereignisses"""
|
"""Datum des letzten Ereignisses"""
|
||||||
return self.dates[-1]
|
return self.dates[max(self.dates.keys())]
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def end(self) -> date:
|
def end(self) -> date:
|
||||||
|
@ -133,4 +135,4 @@ class EventDates:
|
||||||
)
|
)
|
||||||
|
|
||||||
# all event dates
|
# all event dates
|
||||||
self.dates = [begin + timedelta(days=event - 1) for event in events]
|
self.dates = {event: begin + timedelta(days=event - 1) for event in events}
|
||||||
|
|
|
@ -5,6 +5,8 @@ from fastapi import Depends, HTTPException, status
|
||||||
from fastapi.security import HTTPBasic, HTTPBasicCredentials
|
from fastapi.security import HTTPBasic, HTTPBasicCredentials
|
||||||
|
|
||||||
from ..core.config import Config, get_config
|
from ..core.config import Config, get_config
|
||||||
|
from ..core.depends import get_all_event_dates
|
||||||
|
from ..core.helpers import EventDates
|
||||||
|
|
||||||
security = HTTPBasic()
|
security = HTTPBasic()
|
||||||
|
|
||||||
|
@ -31,33 +33,27 @@ async def require_admin(
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if not is_admin:
|
if not is_admin:
|
||||||
raise HTTPException(status.HTTP_401_UNAUTHORIZED)
|
raise HTTPException(status.HTTP_401_UNAUTHORIZED, "Wie unhöflich!!!")
|
||||||
|
|
||||||
|
|
||||||
async def user_visible_doors() -> int:
|
async def user_visible_days(
|
||||||
|
event_dates: EventDates = Depends(get_all_event_dates),
|
||||||
|
) -> list[int]:
|
||||||
"""
|
"""
|
||||||
Anzahl der user-sichtbaren Türchen
|
Anzahl der user-sichtbaren Türchen
|
||||||
"""
|
"""
|
||||||
|
|
||||||
today = date.today()
|
today = date.today()
|
||||||
|
|
||||||
if today.month == 12:
|
return [event for event, date in event_dates.dates.items() if date <= today]
|
||||||
return today.day
|
|
||||||
|
|
||||||
if today.month in (1, 2, 3):
|
|
||||||
return 24
|
|
||||||
|
|
||||||
return 0
|
|
||||||
|
|
||||||
|
|
||||||
async def user_can_view_day(
|
async def user_can_view_day(
|
||||||
day: int,
|
day: int,
|
||||||
|
visible_days: list[int] = Depends(user_visible_days),
|
||||||
) -> bool:
|
) -> bool:
|
||||||
"""
|
"""
|
||||||
True iff das Türchen von Tag `day` user-sichtbar ist
|
True iff das Türchen von Tag `day` user-sichtbar ist
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if day < 1:
|
return day in visible_days
|
||||||
raise HTTPException(status.HTTP_422_UNPROCESSABLE_ENTITY)
|
|
||||||
|
|
||||||
return day <= await user_visible_doors()
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ from PIL import Image
|
||||||
from ..core.calendar_config import CalendarConfig, DoorsSaved, get_calendar_config
|
from ..core.calendar_config import CalendarConfig, DoorsSaved, get_calendar_config
|
||||||
from ..core.depends import get_all_event_dates, get_day_image
|
from ..core.depends import get_all_event_dates, get_day_image
|
||||||
from ..core.helpers import EventDates, api_return_image, load_image
|
from ..core.helpers import EventDates, api_return_image, load_image
|
||||||
from ._security import user_can_view_day, user_is_admin
|
from ._security import user_can_view_day, user_is_admin, user_visible_days
|
||||||
|
|
||||||
router = APIRouter(prefix="/user", tags=["user"])
|
router = APIRouter(prefix="/user", tags=["user"])
|
||||||
|
|
||||||
|
@ -31,29 +31,35 @@ async def get_background_image(
|
||||||
response_class=StreamingResponse,
|
response_class=StreamingResponse,
|
||||||
)
|
)
|
||||||
async def get_image_for_day(
|
async def get_image_for_day(
|
||||||
image: Image.Image = Depends(get_day_image),
|
user_can_view: bool = Depends(user_can_view_day),
|
||||||
can_view: bool = Depends(user_can_view_day),
|
|
||||||
is_admin: bool = Depends(user_is_admin),
|
is_admin: bool = Depends(user_is_admin),
|
||||||
|
image: Image.Image | None = Depends(get_day_image),
|
||||||
) -> StreamingResponse:
|
) -> StreamingResponse:
|
||||||
"""
|
"""
|
||||||
Bild für einen Tag erstellen
|
Bild für einen Tag erstellen
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if not (can_view or is_admin):
|
if not (user_can_view or is_admin):
|
||||||
raise HTTPException(status.HTTP_401_UNAUTHORIZED, "Wie unhöflich!!!")
|
raise HTTPException(status.HTTP_401_UNAUTHORIZED, "Wie unhöflich!!!")
|
||||||
|
|
||||||
|
if image is None:
|
||||||
|
raise HTTPException(
|
||||||
|
status.HTTP_404_NOT_FOUND, "Ich habe heute leider kein Foto für dich."
|
||||||
|
)
|
||||||
|
|
||||||
return await api_return_image(image)
|
return await api_return_image(image)
|
||||||
|
|
||||||
|
|
||||||
@router.get("/doors")
|
@router.get("/doors")
|
||||||
async def get_doors(
|
async def get_doors(
|
||||||
cal_cfg: CalendarConfig = Depends(get_calendar_config),
|
cal_cfg: CalendarConfig = Depends(get_calendar_config),
|
||||||
|
visible_days: list[int] = Depends(user_visible_days),
|
||||||
) -> DoorsSaved:
|
) -> DoorsSaved:
|
||||||
"""
|
"""
|
||||||
User-sichtbare Türchen lesen
|
User-sichtbare Türchen lesen
|
||||||
"""
|
"""
|
||||||
|
|
||||||
return [door for door in cal_cfg.doors if await user_can_view_day(door.day)]
|
return [door for door in cal_cfg.doors if door.day in visible_days]
|
||||||
|
|
||||||
|
|
||||||
@router.get("/next_door")
|
@router.get("/next_door")
|
||||||
|
|
Loading…
Reference in a new issue