stable/freqtrade/rpc/api_server/web_ui.py

32 lines
1016 B
Python
Raw Normal View History

2021-01-10 09:31:05 +00:00
from pathlib import Path
from fastapi import APIRouter
from fastapi.exceptions import HTTPException
from starlette.responses import FileResponse
router_ui = APIRouter()
@router_ui.get('/favicon.ico', include_in_schema=False)
async def favicon():
return FileResponse(Path(__file__).parent / 'ui/favicon.ico')
@router_ui.get('/{rest_of_path:path}', include_in_schema=False)
async def index_html(rest_of_path: str):
"""
Emulate path fallback to index.html.
"""
if rest_of_path.startswith('api') or rest_of_path.startswith('.'):
raise HTTPException(status_code=404, detail="Not Found")
2021-01-31 14:37:57 +00:00
uibase = Path(__file__).parent / 'ui/installed/'
2021-01-10 09:31:05 +00:00
if (uibase / rest_of_path).is_file():
return FileResponse(str(uibase / rest_of_path))
2021-01-10 09:31:05 +00:00
2021-01-16 09:27:15 +00:00
index_file = uibase / 'index.html'
if not index_file.is_file():
2021-01-31 14:37:57 +00:00
return FileResponse(str(uibase.parent / 'fallback_file.html'))
2021-01-10 09:31:05 +00:00
# Fall back to index.html, as indicated by vue router docs
return FileResponse(str(index_file))