ovdashboard/api/ovdashboard_api/app.py

88 lines
2.1 KiB
Python
Raw Normal View History

2022-08-28 23:59:57 +00:00
#!/usr/bin/env python3
"""
2022-09-05 12:54:02 +00:00
Main script for `ovdashboard_api` module.
2022-08-28 23:59:57 +00:00
Creates the main `FastAPI` app.
"""
2023-10-20 08:43:15 +00:00
import logging
import time
2022-08-28 23:59:57 +00:00
from fastapi import FastAPI
2022-09-09 14:19:28 +00:00
from fastapi.middleware.cors import CORSMiddleware
from fastapi.staticfiles import StaticFiles
2022-08-28 23:59:57 +00:00
2023-11-09 11:13:48 +00:00
from .core.dav.webdav import WebDAV
from .core.settings import SETTINGS
2022-09-19 09:35:18 +00:00
from .routers import v1_router
2022-08-28 23:59:57 +00:00
2023-10-20 08:43:15 +00:00
_logger = logging.getLogger(__name__)
2022-08-28 23:59:57 +00:00
app = FastAPI(
2022-08-31 18:26:07 +00:00
title="OVDashboard API",
description="This API enables the `OVDashboard` service.",
2022-08-28 23:59:57 +00:00
contact={
"name": "Jörn-Michael Miehe",
"email": "jmm@yavook.de",
2022-08-28 23:59:57 +00:00
},
license_info={
"name": "MIT License",
"url": "https://opensource.org/licenses/mit-license.php",
},
2022-08-28 23:59:57 +00:00
openapi_url=SETTINGS.openapi_url,
2022-09-07 11:58:43 +00:00
docs_url=SETTINGS.docs_url,
redoc_url=SETTINGS.redoc_url,
2022-08-28 23:59:57 +00:00
)
app.include_router(v1_router)
2023-10-20 08:43:15 +00:00
_logger.info(
"Production mode is %s.",
"enabled" if SETTINGS.production_mode else "disabled",
)
2023-10-16 18:06:55 +00:00
if SETTINGS.production_mode:
# Mount frontend in production mode
app.mount(
path="/",
app=StaticFiles(
directory=SETTINGS.ui_directory,
html=True,
),
name="frontend",
)
2023-10-20 09:50:52 +00:00
def check_webdav(retry: int) -> bool | None:
2023-10-20 08:43:15 +00:00
if WebDAV._webdav_client.check(""):
2023-10-20 09:50:52 +00:00
return True
2023-10-20 08:43:15 +00:00
_logger.warning(
2023-10-20 09:50:52 +00:00
"WebDAV connection to %s failed (try %d of %d)",
2023-10-20 08:43:15 +00:00
repr(SETTINGS.webdav.url),
2023-10-20 09:50:52 +00:00
retry + 1,
SETTINGS.webdav.retries,
2023-10-20 08:43:15 +00:00
)
2023-10-20 09:50:52 +00:00
if retry < SETTINGS.webdav.retries:
_logger.debug("Retrying in %d seconds ...", SETTINGS.webdav.retry_delay)
time.sleep(SETTINGS.webdav.retry_delay)
if not any(check_webdav(n) for n in range(SETTINGS.webdav.retries)):
raise ConnectionError("WebDAV connection failed")
2023-10-20 08:43:15 +00:00
2023-10-16 18:06:55 +00:00
else:
2023-10-20 08:43:15 +00:00
assert WebDAV._webdav_client.check("")
2023-10-16 18:06:55 +00:00
# Allow CORS in debug mode
app.add_middleware(
CORSMiddleware,
allow_credentials=True,
allow_headers=["*"],
2023-10-20 08:43:15 +00:00
allow_methods=["*"],
allow_origins=["*"],
2023-10-16 18:06:55 +00:00
expose_headers=["*"],
)
2023-10-20 08:43:15 +00:00
_logger.debug("WebDAV connection ok.")