ovdashboard/api/ovdashboard_api/routers/calendar.py

55 lines
1.5 KiB
Python
Raw Normal View History

2022-09-03 02:00:07 +00:00
from datetime import datetime, timedelta
from typing import Iterator
from fastapi import APIRouter, Depends, HTTPException, status
2022-09-02 19:21:15 +00:00
from .. import caldav_principal
from ._common import CalendarNameLister, PrefixFinder
2022-09-02 19:21:15 +00:00
router = APIRouter(prefix="/calendar", tags=["calendar"])
_lister = CalendarNameLister()
_finder = PrefixFinder(_lister)
2022-09-03 02:00:07 +00:00
@router.get("/list", response_model=list[str])
async def list_calendars(
calendar_names: Iterator[str] = Depends(_lister),
2022-09-03 02:00:07 +00:00
) -> list[str]:
return list(calendar_names)
@router.get("/find/{prefix}", response_model=list[str])
async def find_calendars(
calendar_names: Iterator[str] = Depends(_finder),
2022-09-03 02:00:07 +00:00
) -> list[str]:
return list(calendar_names)
@router.get("/get/{prefix}", response_model=list[str])
async def get_calendar(
calendar_names: Iterator[str] = Depends(_finder),
2022-09-03 02:00:07 +00:00
) -> list[str]:
calendar_names = list(calendar_names)
if not (calendar_names):
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND)
elif len(calendar_names) > 1:
raise HTTPException(status_code=status.HTTP_409_CONFLICT)
principal = await caldav_principal()
calendar = principal.calendar(name=calendar_names[0])
2022-09-03 02:00:07 +00:00
events = calendar.date_search(
start=datetime.now(),
end=datetime.now() + timedelta(days=365),
expand=True,
)
return list(
str(child.contents['summary'][0].value)
for event in events
for child in event.vobject_instance.contents['vevent']
)