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
|
|
|
|
2020-08-21 05:28:27 +00:00
|
|
|
import asyncio
|
2017-12-05 11:37:30 +00:00
|
|
|
import logging
|
|
|
|
|
2020-12-20 16:05:17 +00:00
|
|
|
from typing import Optional
|
|
|
|
|
2017-12-05 11:37:30 +00:00
|
|
|
from .transport import *
|
2018-06-13 11:35:41 +00:00
|
|
|
from ..session.internals import DataCenter
|
2017-12-05 11:37:30 +00:00
|
|
|
|
2019-09-08 17:24:06 +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
|
2018-05-25 10:37:03 +00:00
|
|
|
|
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,
|
2018-05-30 17:29:45 +00:00
|
|
|
3: TCPAbridgedO,
|
|
|
|
4: TCPIntermediateO
|
2017-12-05 11:37:30 +00:00
|
|
|
}
|
|
|
|
|
2018-11-05 16:33:12 +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
|
2019-08-13 11:18:51 +00:00
|
|
|
self.test_mode = test_mode
|
2018-06-13 11:35:41 +00:00
|
|
|
self.ipv6 = ipv6
|
2018-01-16 21:05:19 +00:00
|
|
|
self.proxy = proxy
|
2018-06-13 11:35:41 +00:00
|
|
|
self.address = DataCenter(dc_id, test_mode, ipv6)
|
2018-05-19 13:50:10 +00:00
|
|
|
self.mode = self.MODES.get(mode, TCPAbridged)
|
2018-06-13 11:35:41 +00:00
|
|
|
|
2020-08-21 05:28:27 +00:00
|
|
|
self.protocol = None # type: TCP
|
2017-12-05 11:37:30 +00:00
|
|
|
|
2020-08-21 05:28:27 +00:00
|
|
|
async def connect(self):
|
2018-05-25 10:37:03 +00:00
|
|
|
for i in range(Connection.MAX_RETRIES):
|
2020-08-21 05:28:27 +00:00
|
|
|
self.protocol = self.mode(self.ipv6, self.proxy)
|
2017-12-05 11:37:30 +00:00
|
|
|
|
|
|
|
try:
|
2019-09-08 17:24:06 +00:00
|
|
|
log.info("Connecting...")
|
2020-08-21 05:28:27 +00:00
|
|
|
await self.protocol.connect(self.address)
|
2018-06-13 11:39:06 +00:00
|
|
|
except OSError as e:
|
2020-12-07 18:11:26 +00:00
|
|
|
log.warning(f"Unable to connect due to network issues: {e}")
|
2020-08-21 05:28:27 +00:00
|
|
|
self.protocol.close()
|
|
|
|
await asyncio.sleep(1)
|
2017-12-05 11:37:30 +00:00
|
|
|
else:
|
2019-09-08 17:24:06 +00:00
|
|
|
log.info("Connected! {} DC{} - IPv{} - {}".format(
|
2019-08-13 11:18:51 +00:00
|
|
|
"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
|
2018-05-25 10:37:03 +00:00
|
|
|
else:
|
2019-09-08 17:24:06 +00:00
|
|
|
log.warning("Connection failed! Trying again...")
|
2018-05-25 10:37:03 +00:00
|
|
|
raise TimeoutError
|
2017-12-05 11:37:30 +00:00
|
|
|
|
|
|
|
def close(self):
|
2020-08-21 05:28:27 +00:00
|
|
|
self.protocol.close()
|
2019-09-08 17:24:06 +00:00
|
|
|
log.info("Disconnected")
|
2017-12-05 11:37:30 +00:00
|
|
|
|
2020-08-21 05:28:27 +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
|
|
|
|
2020-12-20 16:05:17 +00:00
|
|
|
async def recv(self) -> Optional[bytes]:
|
2020-08-21 05:28:27 +00:00
|
|
|
return await self.protocol.recv()
|