Refresh token endpoint created
This commit is contained in:
parent
a60ff39c43
commit
0e7dd90646
15
back/api.py
15
back/api.py
@ -196,6 +196,21 @@ def read_users_me(current_user: Annotated[pydantic_schemas.User, Depends(auth_ut
|
|||||||
return current_user
|
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")
|
@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)]):
|
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)]):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user