Fixed unknown category trashboxes

Added specific error for trashboxes token expiration
This commit is contained in:
Dmitriy Shishkov 2023-09-14 01:30:51 +03:00
parent 1f7f69e933
commit a2b0b25233
Signed by: dm1sh
GPG Key ID: 027994B0AA357688

View File

@ -267,12 +267,18 @@ async def get_trashboxes(data: pydantic_schemas.TrashboxRequest = Depends()): #
'limit' : '1'
}
# Перевод категории с фронта на категорию с сайта
list_of_category = trashboxes_category[data.Category]
try:
list_of_category = trashboxes_category[data.Category]
except:
list_of_category = trashboxes_category['other_things']
# Получение ответа от стороннего апи
response = requests.post(TRASHBOXES_BASE_URL + "/nearest_recycling/get", headers=head, data=my_data, timeout=10)
infos = response.json()
if 'error' in infos and infos['error_description'] == 'Invalid bearer token':
raise HTTPException(status_code=502, detail="Invalid trashboxes token")
# Чтение ответа
trashboxes = []
for trashbox in infos["results"]: