59 lines
2.2 KiB
Python
59 lines
2.2 KiB
Python
|
from fastapi import FastAPI, Request, Response
|
||
|
from fastapi.routing import APIRoute
|
||
|
from fastapi.middleware.cors import CORSMiddleware
|
||
|
from fastapi.staticfiles import StaticFiles
|
||
|
from typing import Callable
|
||
|
from voice_changer.VoiceChangerManager import VoiceChangerManager
|
||
|
|
||
|
from restapi.MMVC_Rest_Hello import MMVC_Rest_Hello
|
||
|
from restapi.MMVC_Rest_VoiceChanger import MMVC_Rest_VoiceChanger
|
||
|
|
||
|
class ValidationErrorLoggingRoute(APIRoute):
|
||
|
def get_route_handler(self) -> Callable:
|
||
|
original_route_handler = super().get_route_handler()
|
||
|
|
||
|
async def custom_route_handler(request: Request) -> Response:
|
||
|
try:
|
||
|
return await original_route_handler(request)
|
||
|
except Exception as exc:
|
||
|
print("Exception", request.url, str(exc))
|
||
|
body = await request.body()
|
||
|
detail = {"errors": exc.errors(), "body": body.decode()}
|
||
|
raise HTTPException(status_code=422, detail=detail)
|
||
|
|
||
|
return custom_route_handler
|
||
|
|
||
|
class MMVC_Rest:
|
||
|
|
||
|
@classmethod
|
||
|
def get_instance(cls, voiceChangerManager:VoiceChangerManager):
|
||
|
if not hasattr(cls, "_instance"):
|
||
|
app_fastapi = FastAPI()
|
||
|
app_fastapi.router.route_class = ValidationErrorLoggingRoute
|
||
|
app_fastapi.add_middleware(
|
||
|
CORSMiddleware,
|
||
|
allow_origins=["*"],
|
||
|
allow_credentials=True,
|
||
|
allow_methods=["*"],
|
||
|
allow_headers=["*"],
|
||
|
)
|
||
|
|
||
|
app_fastapi.mount(
|
||
|
"/front", StaticFiles(directory="../frontend/dist", html=True), name="static")
|
||
|
|
||
|
app_fastapi.mount(
|
||
|
"/trainer", StaticFiles(directory="../frontend/dist", html=True), name="static")
|
||
|
|
||
|
app_fastapi.mount(
|
||
|
"/recorder", StaticFiles(directory="../frontend/dist", html=True), name="static")
|
||
|
|
||
|
restHello = MMVC_Rest_Hello()
|
||
|
app_fastapi.include_router(restHello.router)
|
||
|
restVoiceChanger = MMVC_Rest_VoiceChanger(voiceChangerManager)
|
||
|
app_fastapi.include_router(restVoiceChanger.router)
|
||
|
|
||
|
cls._instance = app_fastapi
|
||
|
return cls._instance
|
||
|
|
||
|
return cls._instance
|