MTPyroger/pyrogram/connection/connection.py

82 lines
2.5 KiB
Python
Raw Normal View History

2017-12-05 11:37:30 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2019-01-01 11:36:16 +00:00
# Copyright (C) 2017-2019 Dan Tès <https://github.com/delivrance>
2017-12-05 11:37:30 +00:00
#
# This file is part of Pyrogram.
#
# 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.
#
# 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.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
import logging
import threading
2017-12-05 11:37:30 +00:00
import time
from .transport import *
from ..session.internals import DataCenter
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.lock = threading.Lock()
2017-12-05 11:37:30 +00:00
self.connection = None
def connect(self):
for i in range(Connection.MAX_RETRIES):
self.connection = self.mode(self.ipv6, self.proxy)
2017-12-05 11:37:30 +00:00
try:
logging.info("Connecting...")
2017-12-05 11:37:30 +00:00
self.connection.connect(self.address)
except OSError as e:
logging.warning(e) # TODO: Remove
2017-12-05 11:37:30 +00:00
self.connection.close()
time.sleep(1)
else:
logging.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:
logging.warning("Connection failed! Trying again...")
raise TimeoutError
2017-12-05 11:37:30 +00:00
def close(self):
self.connection.close()
logging.info("Disconnected")
2017-12-05 11:37:30 +00:00
def send(self, data: bytes):
with self.lock:
self.connection.sendall(data)
2017-12-05 11:37:30 +00:00
def recv(self) -> bytes or None:
return self.connection.recvall()