ovdashboard/api/ovdashboard_api/app.py

59 lines
1.3 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.
"""
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
from .core.settings import SETTINGS
from .dav_common import webdav_check
2022-09-19 09:35:18 +00:00
from .routers import v1_router
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-16 18:06:55 +00:00
webdav_check()
if SETTINGS.production_mode:
# Mount frontend in production mode
app.mount(
path="/",
app=StaticFiles(
directory=SETTINGS.ui_directory,
html=True,
),
name="frontend",
)
else:
# Allow CORS in debug mode
app.add_middleware(
CORSMiddleware,
allow_origins=[
"*",
],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
expose_headers=["*"],
)