MTPyroger/pyrogram/connection/connection.py

86 lines
2.6 KiB
Python
Raw Normal View History

2020-03-21 14:43:32 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2020 Dan <https://github.com/delivrance>
2017-12-05 11:37:30 +00:00
#
2020-03-21 14:43:32 +00:00
# This file is part of Pyrogram.
2017-12-05 11:37:30 +00:00
#
2020-03-21 14:43:32 +00:00
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
2017-12-05 11:37:30 +00:00
#
2020-03-21 14:43:32 +00:00
# Pyrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
2017-12-05 11:37:30 +00:00
#
2020-03-21 14:43:32 +00:00
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
2017-12-05 11:37:30 +00:00
import asyncio
2017-12-05 11:37:30 +00:00
import logging
from typing import Optional
2017-12-05 11:37:30 +00:00
from .transport import *
from ..session.internals import DataCenter
2017-12-05 11:37:30 +00:00
log = logging.getLogger(__name__)
2017-12-05 11:37:30 +00:00
class Connection:
2018-05-25 12:26:01 +00:00
MAX_RETRIES = 3
2017-12-05 11:37:30 +00:00
MODES = {
2018-05-19 13:50:10 +00:00
0: TCPFull,
1: TCPAbridged,
2018-05-29 10:20:42 +00:00
2: TCPIntermediate,
3: TCPAbridgedO,
4: TCPIntermediateO
2017-12-05 11:37:30 +00:00
}
def __init__(self, dc_id: int, test_mode: bool, ipv6: bool, proxy: dict, mode: int = 3):
2018-09-08 17:33:47 +00:00
self.dc_id = dc_id
self.test_mode = test_mode
self.ipv6 = ipv6
2018-01-16 21:05:19 +00:00
self.proxy = proxy
self.address = DataCenter(dc_id, test_mode, ipv6)
2018-05-19 13:50:10 +00:00
self.mode = self.MODES.get(mode, TCPAbridged)
self.protocol = None # type: TCP
2017-12-05 11:37:30 +00:00
async def connect(self):
for i in range(Connection.MAX_RETRIES):
self.protocol = self.mode(self.ipv6, self.proxy)
2017-12-05 11:37:30 +00:00
try:
log.info("Connecting...")
await self.protocol.connect(self.address)
except OSError as e:
log.warning(f"Unable to connect due to network issues: {e}")
self.protocol.close()
await asyncio.sleep(1)
2017-12-05 11:37:30 +00:00
else:
log.info("Connected! {} DC{} - IPv{} - {}".format(
"Test" if self.test_mode else "Production",
2018-09-08 17:33:47 +00:00
self.dc_id,
2018-08-29 20:20:00 +00:00
"6" if self.ipv6 else "4",
self.mode.__name__
))
2017-12-05 11:37:30 +00:00
break
else:
log.warning("Connection failed! Trying again...")
raise TimeoutError
2017-12-05 11:37:30 +00:00
def close(self):
self.protocol.close()
log.info("Disconnected")
2017-12-05 11:37:30 +00:00
async def send(self, data: bytes):
try:
await self.protocol.send(data)
except Exception:
raise OSError
2017-12-05 11:37:30 +00:00
async def recv(self) -> Optional[bytes]:
return await self.protocol.recv()