pyhOn/pyhon/connection/handler/anonym.py

27 lines
862 B
Python
Raw Normal View History

2023-04-15 14:22:04 +02:00
import logging
from collections.abc import AsyncIterator
from contextlib import asynccontextmanager
2023-06-28 19:02:11 +02:00
from typing import Dict, Any
import aiohttp
2023-04-15 14:22:04 +02:00
from pyhon import const
from pyhon.connection.handler.base import ConnectionHandler
2023-06-28 19:02:11 +02:00
from pyhon.typedefs import Callback
2023-04-15 14:22:04 +02:00
_LOGGER = logging.getLogger(__name__)
class HonAnonymousConnectionHandler(ConnectionHandler):
2023-06-28 19:02:11 +02:00
_HEADERS: Dict[str, str] = ConnectionHandler._HEADERS | {"x-api-key": const.API_KEY}
2023-04-15 14:22:04 +02:00
@asynccontextmanager
2023-06-28 19:02:11 +02:00
async def _intercept(
self, method: Callback, *args: Any, **kwargs: Any
) -> AsyncIterator[aiohttp.ClientResponse]:
2023-04-15 14:22:04 +02:00
kwargs["headers"] = kwargs.pop("headers", {}) | self._HEADERS
async with method(*args, **kwargs) as response:
if response.status == 403:
_LOGGER.error("Can't authenticate anymore")
yield response