diff --git a/back/api.py b/back/api.py index 8811152..8b444b7 100644 --- a/back/api.py +++ b/back/api.py @@ -196,6 +196,21 @@ def read_users_me(current_user: Annotated[pydantic_schemas.User, Depends(auth_ut return current_user +# ендпоинт для генерации refresh token. Генерируется при каждом входе юзера +# на сайт +@app.post("/api/token/refresh", response_model=pydantic_schemas.Token) +async def generate_refresh_token( + current_user: Annotated[pydantic_schemas.User, Depends(auth_utils.get_current_active_user)] +): + # задаем временной интервал, в течение которого токен можно использовать + access_token_expires = auth_utils.timedelta(minutes=auth_utils.ACCESS_TOKEN_EXPIRE_MINUTES) + # создаем новый токен токен + access_token = auth_utils.create_access_token( + data={"user_id": current_user.id}, expires_delta=access_token_expires + ) + return {"access_token":access_token} + + # изменяем рейтинг пользователя @app.post("/api/user/rating") async def add_points(data: pydantic_schemas.AddRating, current_user: Annotated[pydantic_schemas.User, Depends(auth_utils.get_current_user)], db: Annotated[Session, Depends(auth_utils.get_session)]):