ovdashboard/api/ovdashboard_api/dav_common.py

118 lines
2.7 KiB
Python
Raw Normal View History

2022-09-05 12:54:02 +00:00
"""
Definition of WebDAV and CalDAV clients.
"""
2022-09-04 22:30:40 +00:00
from functools import lru_cache
2022-09-07 00:23:31 +00:00
from logging import getLogger
from time import sleep
from typing import Any, Iterator
2022-09-04 22:30:40 +00:00
2022-09-04 22:41:46 +00:00
from caldav import DAVClient as CalDAVclient
from caldav import Principal as CalDAVPrincipal
from webdav3.client import Client as WebDAVclient
from webdav3.client import Resource as WebDAVResource
2022-09-04 22:30:40 +00:00
from .async_helpers import run_in_executor
from .settings import SETTINGS
2022-09-04 22:41:46 +00:00
_WEBDAV_CLIENT = WebDAVclient({
2022-09-05 14:39:34 +00:00
"webdav_hostname": SETTINGS.webdav.url,
"webdav_login": SETTINGS.webdav.username,
"webdav_password": SETTINGS.webdav.password,
2022-09-04 22:30:40 +00:00
})
2022-09-07 00:23:31 +00:00
_logger = getLogger(__name__)
def webdav_check() -> bool:
"""
Checks if base resources are available.
"""
_logger.info(
"Production mode is %s.",
"enabled" if SETTINGS.production_mode else "disabled",
)
if SETTINGS.production_mode:
for _ in range(SETTINGS.webdav_retries):
if _WEBDAV_CLIENT.check(""):
break
_logger.warning(
"Waiting for WebDAV connection to %s ...",
repr(SETTINGS.webdav.url),
)
sleep(30)
2022-09-07 12:57:38 +00:00
_logger.debug("WebDAV connection ok.")
2022-09-07 00:23:31 +00:00
2022-09-07 12:57:38 +00:00
elif not _WEBDAV_CLIENT.check(""):
2022-09-07 00:23:31 +00:00
_logger.error(
"WebDAV connection to %s FAILED!",
repr(SETTINGS.webdav.url),
)
return False
2022-09-07 12:57:38 +00:00
_logger.debug("WebDAV connection ok.")
2022-09-07 00:23:31 +00:00
2022-09-07 12:57:38 +00:00
if not _WEBDAV_CLIENT.check(SETTINGS.webdav_prefix):
2022-09-07 00:23:31 +00:00
_logger.error(
"WebDAV prefix directory %s NOT FOUND, please create it!",
repr(SETTINGS.webdav_prefix),
)
return False
2022-09-07 12:57:38 +00:00
_logger.debug("WebDAV prefix directory found.")
2022-09-07 00:23:31 +00:00
return True
2022-09-04 22:30:40 +00:00
2022-09-06 07:54:44 +00:00
@lru_cache(maxsize=SETTINGS.cache_size)
2022-09-04 22:41:46 +00:00
def webdav_resource(remote_path: Any) -> WebDAVResource:
2022-09-05 12:54:02 +00:00
"""
Gets a resource using the main WebDAV client.
"""
2022-09-05 20:17:27 +00:00
return _WEBDAV_CLIENT.resource(
f"{SETTINGS.webdav_prefix}/{remote_path}"
)
2022-09-04 22:30:40 +00:00
@run_in_executor
2022-09-05 12:54:02 +00:00
def webdav_list(remote_path: str) -> list[str]:
"""
2022-09-07 12:21:26 +00:00
Asynchronously lists a WebDAV path using the main WebDAV client.
2022-09-05 12:54:02 +00:00
"""
2022-09-05 20:17:27 +00:00
return _WEBDAV_CLIENT.list(
f"{SETTINGS.webdav_prefix}/{remote_path}"
)
2022-09-04 22:30:40 +00:00
2022-09-04 22:41:46 +00:00
_CALDAV_CLIENT = CalDAVclient(
2022-09-05 14:39:34 +00:00
url=SETTINGS.caldav.url,
username=SETTINGS.caldav.username,
password=SETTINGS.caldav.password,
2022-09-04 22:30:40 +00:00
)
2022-09-04 22:41:46 +00:00
def caldav_principal() -> CalDAVPrincipal:
2022-09-05 12:54:02 +00:00
"""
Gets the `Principal` object of the main CalDAV client.
"""
2022-09-04 22:30:40 +00:00
return _CALDAV_CLIENT.principal()
@run_in_executor
def caldav_list() -> Iterator[str]:
"""
2022-09-07 12:21:26 +00:00
Asynchronously lists all calendars using the main WebDAV client.
"""
return (
2022-09-08 00:24:36 +00:00
str(cal.name)
for cal in caldav_principal().calendars()
)