mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
161 lines
5.1 KiB
Python
161 lines
5.1 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import (
|
|
TYPE_CHECKING,
|
|
Any,
|
|
AsyncGenerator,
|
|
Dict,
|
|
Iterable,
|
|
List,
|
|
Optional,
|
|
Tuple,
|
|
Type,
|
|
TypeVar,
|
|
Union,
|
|
cast,
|
|
)
|
|
|
|
from aiohttp import BasicAuth, ClientSession, FormData, TCPConnector
|
|
|
|
from aiogram.api.methods import Request, TelegramMethod
|
|
|
|
from .base import BaseSession
|
|
|
|
if TYPE_CHECKING: # pragma: no cover
|
|
from ..bot import Bot
|
|
|
|
T = TypeVar("T")
|
|
_ProxyBasic = Union[str, Tuple[str, BasicAuth]]
|
|
_ProxyChain = Iterable[_ProxyBasic]
|
|
_ProxyType = Union[_ProxyChain, _ProxyBasic]
|
|
|
|
|
|
def _retrieve_basic(basic: _ProxyBasic) -> Dict[str, Any]:
|
|
from aiohttp_socks.utils import parse_proxy_url # type: ignore
|
|
|
|
proxy_auth: Optional[BasicAuth] = None
|
|
|
|
if isinstance(basic, str):
|
|
proxy_url = basic
|
|
else:
|
|
proxy_url, proxy_auth = basic
|
|
|
|
proxy_type, host, port, username, password = parse_proxy_url(proxy_url)
|
|
if isinstance(proxy_auth, BasicAuth):
|
|
username = proxy_auth.login
|
|
password = proxy_auth.password
|
|
|
|
return dict(
|
|
proxy_type=proxy_type,
|
|
host=host,
|
|
port=port,
|
|
username=username,
|
|
password=password,
|
|
rdns=True,
|
|
)
|
|
|
|
|
|
def _prepare_connector(chain_or_plain: _ProxyType) -> Tuple[Type["TCPConnector"], Dict[str, Any]]:
|
|
from aiohttp_socks import ProxyInfo, ProxyConnector, ChainProxyConnector # type: ignore
|
|
|
|
# since tuple is Iterable(compatible with _ProxyChain) object, we assume that
|
|
# user wants chained proxies if tuple is a pair of string(url) and BasicAuth
|
|
if isinstance(chain_or_plain, str) or (
|
|
isinstance(chain_or_plain, tuple) and len(chain_or_plain) == 2
|
|
):
|
|
chain_or_plain = cast(_ProxyBasic, chain_or_plain)
|
|
return ProxyConnector, _retrieve_basic(chain_or_plain)
|
|
|
|
chain_or_plain = cast(_ProxyChain, chain_or_plain)
|
|
infos: List[ProxyInfo] = []
|
|
for basic in chain_or_plain:
|
|
infos.append(ProxyInfo(**_retrieve_basic(basic)))
|
|
|
|
return ChainProxyConnector, dict(proxy_infos=infos)
|
|
|
|
|
|
class AiohttpSession(BaseSession):
|
|
def __init__(self, proxy: Optional[_ProxyType] = None):
|
|
self._session: Optional[ClientSession] = None
|
|
self._connector_type: Type[TCPConnector] = TCPConnector
|
|
self._connector_init: Dict[str, Any] = {}
|
|
self._should_reset_connector = True # flag determines connector state
|
|
self._proxy: Optional[_ProxyType] = None
|
|
|
|
if proxy is not None:
|
|
try:
|
|
self._setup_proxy_connector(proxy)
|
|
except ImportError as exc: # pragma: no cover
|
|
raise UserWarning(
|
|
"In order to use aiohttp client for proxy requests, install "
|
|
"https://pypi.org/project/aiohttp-socks/"
|
|
) from exc
|
|
|
|
def _setup_proxy_connector(self, proxy: _ProxyType) -> None:
|
|
self._connector_type, self._connector_init = _prepare_connector(proxy)
|
|
self._proxy = proxy
|
|
|
|
@property
|
|
def proxy(self) -> Optional[_ProxyType]:
|
|
return self._proxy
|
|
|
|
@proxy.setter
|
|
def proxy(self, proxy: _ProxyType) -> None:
|
|
self._setup_proxy_connector(proxy)
|
|
self._should_reset_connector = True
|
|
|
|
async def create_session(self) -> ClientSession:
|
|
if self._should_reset_connector:
|
|
await self.close()
|
|
|
|
if self._session is None or self._session.closed:
|
|
self._session = ClientSession(connector=self._connector_type(**self._connector_init))
|
|
self._should_reset_connector = False
|
|
|
|
return self._session
|
|
|
|
async def close(self) -> None:
|
|
if self._session is not None and not self._session.closed:
|
|
await self._session.close()
|
|
|
|
def build_form_data(self, request: Request) -> FormData:
|
|
form = FormData(quote_fields=False)
|
|
for key, value in request.data.items():
|
|
if value is None:
|
|
continue
|
|
form.add_field(key, self.prepare_value(value))
|
|
if request.files:
|
|
for key, value in request.files.items():
|
|
form.add_field(key, value, filename=value.filename or key)
|
|
return form
|
|
|
|
async def make_request(
|
|
self, bot: Bot, call: TelegramMethod[T], timeout: Optional[int] = None
|
|
) -> T:
|
|
session = await self.create_session()
|
|
|
|
request = call.build_request(bot)
|
|
url = self.api.api_url(token=bot.token, method=request.method)
|
|
form = self.build_form_data(request)
|
|
|
|
async with session.post(
|
|
url, data=form, timeout=self.timeout if timeout is None else timeout
|
|
) as resp:
|
|
raw_result = await resp.json(loads=self.json_loads)
|
|
|
|
response = call.build_response(raw_result)
|
|
self.raise_for_status(response)
|
|
return cast(T, response.result)
|
|
|
|
async def stream_content(
|
|
self, url: str, timeout: int, chunk_size: int
|
|
) -> AsyncGenerator[bytes, None]:
|
|
session = await self.create_session()
|
|
|
|
async with session.get(url, timeout=timeout) as resp:
|
|
async for chunk in resp.content.iter_chunked(chunk_size):
|
|
yield chunk
|
|
|
|
async def __aenter__(self) -> AiohttpSession:
|
|
await self.create_session()
|
|
return self
|