28 lines
1007 B
Python
28 lines
1007 B
Python
import random
|
|
|
|
from dependency_injector.wiring import inject, Provide
|
|
from fastapi import APIRouter, Path, Query, Depends
|
|
|
|
from app.middlewares import Authorized, IsAuthenticatedViaBearerToken
|
|
from app.configs.constants import EducationalContent
|
|
from app.controllers.abc import IWritingController
|
|
|
|
controller = "writing_controller"
|
|
writing_router = APIRouter()
|
|
|
|
|
|
@writing_router.get(
|
|
'/{task}',
|
|
dependencies=[Depends(Authorized([IsAuthenticatedViaBearerToken]))]
|
|
)
|
|
@inject
|
|
async def generate_writing(
|
|
task: int = Path(..., ge=1, le=2),
|
|
difficulty: str = Query(default=None),
|
|
topic: str = Query(default=None),
|
|
writing_controller: IWritingController = Depends(Provide[controller])
|
|
):
|
|
difficulty = random.choice(EducationalContent.DIFFICULTIES) if not difficulty else difficulty
|
|
topic = random.choice(EducationalContent.MTI_TOPICS) if not topic else topic
|
|
return await writing_controller.get_writing_task_general_question(task, topic, difficulty)
|