MTPyroger/pyrogram/connection/transport/tcp/tcp.py

117 lines
3.4 KiB
Python
Raw Normal View History

2017-12-05 11:37:30 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2018-01-01 12:21:23 +00:00
# Copyright (C) 2017-2018 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/>.
2018-06-09 17:36:23 +00:00
import asyncio
2018-09-22 17:41:33 +00:00
import ipaddress
2017-12-05 11:37:30 +00:00
import logging
import socket
2018-03-26 00:03:36 +00:00
try:
import socks
except ImportError as e:
e.msg = (
2018-03-26 00:03:36 +00:00
"PySocks is missing and Pyrogram can't run without. "
"Please install it using \"pip3 install pysocks\"."
)
raise e
2017-12-05 11:37:30 +00:00
log = logging.getLogger(__name__)
2018-06-09 17:36:23 +00:00
class TCP:
2018-06-17 17:20:22 +00:00
TIMEOUT = 10
def __init__(self, ipv6: bool, proxy: dict):
self.socket = None
2018-06-09 17:36:23 +00:00
self.reader = None # type: asyncio.StreamReader
self.writer = None # type: asyncio.StreamWriter
2018-06-30 09:03:55 +00:00
self.lock = asyncio.Lock()
2018-09-22 12:31:28 +00:00
if proxy.get("enabled", False):
hostname = proxy.get("hostname", None)
port = proxy.get("port", None)
2018-06-30 09:04:17 +00:00
2018-09-22 12:31:28 +00:00
try:
2018-09-22 12:44:12 +00:00
ip_address = ipaddress.ip_address(hostname)
except ValueError:
self.socket = socks.socksocket(socket.AF_INET)
2018-09-22 12:44:12 +00:00
else:
if isinstance(ip_address, ipaddress.IPv6Address):
self.socket = socks.socksocket(socket.AF_INET6)
2018-09-22 12:44:12 +00:00
else:
self.socket = socks.socksocket(socket.AF_INET)
2018-01-16 21:05:19 +00:00
2018-06-09 17:36:23 +00:00
self.socket.set_proxy(
2018-01-16 21:05:19 +00:00
proxy_type=socks.SOCKS5,
2018-09-22 12:31:28 +00:00
addr=hostname,
port=port,
2018-05-24 19:19:57 +00:00
username=proxy.get("username", None),
password=proxy.get("password", None)
2018-01-16 21:05:19 +00:00
)
2017-12-05 11:37:30 +00:00
2018-09-22 12:31:28 +00:00
log.info("Using proxy {}:{}".format(hostname, port))
else:
2018-09-22 17:41:33 +00:00
self.socket = socks.socksocket(
2018-09-22 12:31:28 +00:00
socket.AF_INET6 if ipv6
else socket.AF_INET
)
self.socket.settimeout(TCP.TIMEOUT)
2018-02-21 12:34:27 +00:00
2018-06-09 17:36:23 +00:00
async def connect(self, address: tuple):
self.socket.connect(address)
self.reader, self.writer = await asyncio.open_connection(sock=self.socket)
2017-12-17 12:50:43 +00:00
def close(self):
try:
2018-06-09 17:36:23 +00:00
self.writer.close()
except AttributeError:
try:
self.socket.shutdown(socket.SHUT_RDWR)
except OSError:
pass
finally:
self.socket.close()
async def send(self, data: bytes):
2018-06-30 09:03:55 +00:00
with await self.lock:
self.writer.write(data)
await self.writer.drain()
2017-12-17 12:50:43 +00:00
2018-06-09 17:36:23 +00:00
async def recv(self, length: int = 0):
2017-12-05 11:37:30 +00:00
data = b""
while len(data) < length:
try:
2018-06-17 17:20:22 +00:00
chunk = await asyncio.wait_for(
self.reader.read(length - len(data)),
TCP.TIMEOUT
)
except (OSError, asyncio.TimeoutError):
2017-12-05 11:37:30 +00:00
return None
else:
2018-06-09 17:36:23 +00:00
if chunk:
data += chunk
2017-12-05 11:37:30 +00:00
else:
return None
return data