MTPyroger/pyrogram/session/session.py

385 lines
12 KiB
Python
Raw Normal View History

2020-03-21 14:43:32 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2022-01-07 09:23:45 +00:00
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
2017-12-05 11:41:07 +00:00
#
2020-03-21 14:43:32 +00:00
# This file is part of Pyrogram.
2017-12-05 11:41:07 +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:41:07 +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:41:07 +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:41:07 +00:00
import asyncio
2017-12-05 11:41:07 +00:00
import logging
import os
from hashlib import sha1
2017-12-05 11:41:07 +00:00
from io import BytesIO
import pyrogram
from pyrogram import raw
2017-12-05 11:41:07 +00:00
from pyrogram.connection import Connection
from pyrogram.crypto import mtproto
from pyrogram.errors import (
RPCError, InternalServerError, AuthKeyDuplicated, FloodWait, ServiceUnavailable, BadMsgNotification,
SecurityCheckMismatch
)
from pyrogram.raw.all import layer
from pyrogram.raw.core import TLObject, MsgContainer, Int, FutureSalts
2018-06-13 11:37:35 +00:00
from .internals import MsgId, MsgFactory
2017-12-05 11:41:07 +00:00
log = logging.getLogger(__name__)
2017-12-05 11:41:07 +00:00
class Result:
def __init__(self):
self.value = None
self.event = asyncio.Event()
2017-12-05 11:41:07 +00:00
class Session:
START_TIMEOUT = 1
2018-04-12 06:29:39 +00:00
WAIT_TIMEOUT = 15
SLEEP_THRESHOLD = 10
2017-12-05 11:41:07 +00:00
MAX_RETRIES = 5
ACKS_THRESHOLD = 8
PING_INTERVAL = 5
def __init__(
self,
client: "pyrogram.Client",
dc_id: int,
auth_key: bytes,
test_mode: bool,
is_media: bool = False,
is_cdn: bool = False
):
self.client = client
2018-05-24 19:19:57 +00:00
self.dc_id = dc_id
self.auth_key = auth_key
self.test_mode = test_mode
self.is_media = is_media
2018-02-08 18:48:01 +00:00
self.is_cdn = is_cdn
2022-01-11 14:35:38 +00:00
self.mode = client.mode
2017-12-05 11:41:07 +00:00
2018-05-24 19:19:57 +00:00
self.connection = None
2017-12-05 11:41:07 +00:00
self.auth_key_id = sha1(auth_key).digest()[-8:]
self.session_id = os.urandom(8)
2018-02-18 16:31:00 +00:00
self.msg_factory = MsgFactory()
2017-12-05 11:41:07 +00:00
self.salt = 0
2017-12-05 11:41:07 +00:00
self.pending_acks = set()
self.results = {}
2021-12-15 12:18:13 +00:00
self.stored_msg_ids = []
self.ping_task = None
self.ping_task_event = asyncio.Event()
2017-12-05 11:41:07 +00:00
self.network_task = None
self.is_connected = asyncio.Event()
2017-12-05 11:41:07 +00:00
self.loop = asyncio.get_event_loop()
async def start(self):
2017-12-05 11:41:07 +00:00
while True:
self.connection = Connection(
self.dc_id,
self.test_mode,
self.client.ipv6,
2021-04-13 13:53:53 +00:00
self.client.proxy,
2022-01-11 14:35:38 +00:00
self.is_media,
self.mode
)
2018-05-24 19:19:57 +00:00
2017-12-05 11:41:07 +00:00
try:
await self.connection.connect()
2017-12-05 11:41:07 +00:00
self.network_task = self.loop.create_task(self.network_worker())
2017-12-05 11:41:07 +00:00
await self._send(raw.functions.Ping(ping_id=0), timeout=self.START_TIMEOUT)
2017-12-05 11:41:07 +00:00
2017-12-19 10:38:15 +00:00
if not self.is_cdn:
await self._send(
raw.functions.InvokeWithLayer(
layer=layer,
query=raw.functions.InitConnection(
api_id=self.client.api_id,
app_version=self.client.app_version,
device_model=self.client.device_model,
system_version=self.client.system_version,
2018-06-26 22:42:32 +00:00
system_lang_code=self.client.lang_code,
lang_code=self.client.lang_code,
lang_pack="",
query=raw.functions.help.GetConfig(),
2017-12-19 10:38:15 +00:00
)
),
timeout=self.START_TIMEOUT
2018-03-15 11:03:02 +00:00
)
2017-12-05 11:41:07 +00:00
self.ping_task = self.loop.create_task(self.ping_worker())
2017-12-05 11:41:07 +00:00
log.info(f"Session initialized: Layer {layer}")
log.info(f"Device: {self.client.device_model} - {self.client.app_version}")
log.info(f"System: {self.client.system_version} ({self.client.lang_code.upper()})")
2018-08-28 10:39:14 +00:00
2018-06-27 22:16:12 +00:00
except AuthKeyDuplicated as e:
await self.stop()
2018-06-27 22:16:12 +00:00
raise e
except (OSError, TimeoutError, RPCError):
await self.stop()
2018-04-12 06:30:52 +00:00
except Exception as e:
await self.stop()
2018-04-12 06:30:52 +00:00
raise e
2017-12-05 11:41:07 +00:00
else:
break
self.is_connected.set()
log.info("Session started")
2017-12-05 11:41:07 +00:00
async def stop(self):
2017-12-05 11:41:07 +00:00
self.is_connected.clear()
self.ping_task_event.set()
if self.ping_task is not None:
await self.ping_task
self.ping_task_event.clear()
2017-12-05 11:41:07 +00:00
self.connection.close()
if self.network_task:
await self.network_task
2018-03-16 10:18:16 +00:00
for i in self.results.values():
i.event.set()
if not self.is_media and callable(self.client.disconnect_handler):
2018-05-23 12:27:17 +00:00
try:
await self.client.disconnect_handler(self.client)
2018-05-23 12:27:17 +00:00
except Exception as e:
log.error(e, exc_info=True)
2018-05-23 12:27:17 +00:00
log.info("Session stopped")
2017-12-09 01:21:23 +00:00
async def restart(self):
await self.stop()
await self.start()
2017-12-09 01:21:23 +00:00
async def handle_packet(self, packet):
try:
2021-12-15 18:26:54 +00:00
data = await self.loop.run_in_executor(
pyrogram.crypto_executor,
mtproto.unpack,
BytesIO(packet),
self.session_id,
self.auth_key,
self.auth_key_id,
self.stored_msg_ids
)
except SecurityCheckMismatch:
self.connection.close()
return
2017-12-05 11:41:07 +00:00
messages = (
data.body.messages
if isinstance(data.body, MsgContainer)
else [data]
)
2017-12-05 11:41:07 +00:00
# Call log.debug twice because calling it once by appending "data" to the previous string (i.e. f"Kind: {data}")
# will cause "data" to be evaluated as string every time instead of only when debug is actually enabled.
log.debug("Received:")
log.debug(data)
2017-12-05 11:41:07 +00:00
for msg in messages:
if msg.seq_no == 0:
MsgId.set_server_time(msg.msg_id / (2 ** 32))
2018-05-06 12:55:41 +00:00
if msg.seq_no % 2 != 0:
if msg.msg_id in self.pending_acks:
continue
else:
self.pending_acks.add(msg.msg_id)
2018-05-06 12:55:41 +00:00
if isinstance(msg.body, (raw.types.MsgDetailedInfo, raw.types.MsgNewDetailedInfo)):
self.pending_acks.add(msg.body.answer_msg_id)
continue
2017-12-05 11:41:07 +00:00
if isinstance(msg.body, raw.types.NewSessionCreated):
continue
2017-12-05 11:41:07 +00:00
msg_id = None
if isinstance(msg.body, (raw.types.BadMsgNotification, raw.types.BadServerSalt)):
msg_id = msg.body.bad_msg_id
elif isinstance(msg.body, (FutureSalts, raw.types.RpcResult)):
msg_id = msg.body.req_msg_id
elif isinstance(msg.body, raw.types.Pong):
msg_id = msg.body.msg_id
else:
if self.client is not None:
self.loop.create_task(self.client.handle_updates(msg.body))
if msg_id in self.results:
self.results[msg_id].value = getattr(msg.body, "result", msg.body)
self.results[msg_id].event.set()
if len(self.pending_acks) >= self.ACKS_THRESHOLD:
log.debug(f"Send {len(self.pending_acks)} acks")
try:
await self._send(raw.types.MsgsAck(msg_ids=list(self.pending_acks)), False)
except (OSError, TimeoutError):
pass
else:
self.pending_acks.clear()
async def ping_worker(self):
log.info("PingTask started")
2017-12-05 11:41:07 +00:00
while True:
try:
await asyncio.wait_for(self.ping_task_event.wait(), self.PING_INTERVAL)
except asyncio.TimeoutError:
pass
else:
2017-12-05 11:41:07 +00:00
break
try:
await self._send(
raw.functions.PingDelayDisconnect(
ping_id=0, disconnect_delay=self.WAIT_TIMEOUT + 10
), False
)
except (OSError, TimeoutError, RPCError):
2017-12-05 11:41:07 +00:00
pass
log.info("PingTask stopped")
2017-12-05 11:41:07 +00:00
async def network_worker(self):
log.info("NetworkTask started")
2017-12-05 11:41:07 +00:00
while True:
packet = await self.connection.recv()
2017-12-05 11:41:07 +00:00
2018-02-18 19:33:33 +00:00
if packet is None or len(packet) == 4:
if packet:
log.warning(f'Server sent "{Int.read(BytesIO(packet))}"')
2018-02-18 19:33:33 +00:00
2017-12-05 11:41:07 +00:00
if self.is_connected.is_set():
self.loop.create_task(self.restart())
2017-12-05 11:41:07 +00:00
break
self.loop.create_task(self.handle_packet(packet))
2017-12-05 11:41:07 +00:00
log.info("NetworkTask stopped")
2017-12-05 11:41:07 +00:00
async def _send(self, data: TLObject, wait_response: bool = True, timeout: float = WAIT_TIMEOUT):
2017-12-05 11:41:07 +00:00
message = self.msg_factory(data)
msg_id = message.msg_id
if wait_response:
self.results[msg_id] = Result()
# Call log.debug twice because calling it once by appending "data" to the previous string (i.e. f"Kind: {data}")
# will cause "data" to be evaluated as string every time instead of only when debug is actually enabled.
log.debug(f"Sent:")
log.debug(message)
payload = await self.loop.run_in_executor(
pyrogram.crypto_executor,
mtproto.pack,
message,
self.salt,
self.session_id,
self.auth_key,
self.auth_key_id
)
2017-12-05 11:41:07 +00:00
try:
await self.connection.send(payload)
2017-12-05 11:41:07 +00:00
except OSError as e:
self.results.pop(msg_id, None)
raise e
if wait_response:
try:
await asyncio.wait_for(self.results[msg_id].event.wait(), timeout)
except asyncio.TimeoutError:
pass
finally:
result = self.results.pop(msg_id).value
2017-12-05 11:41:07 +00:00
if result is None:
raise TimeoutError
elif isinstance(result, raw.types.RpcError):
if isinstance(data, (raw.functions.InvokeWithoutUpdates, raw.functions.InvokeWithTakeout)):
data = data.query
RPCError.raise_it(result, type(data))
elif isinstance(result, raw.types.BadMsgNotification):
raise BadMsgNotification(result.error_code)
elif isinstance(result, raw.types.BadServerSalt):
self.salt = result.new_server_salt
return await self._send(data, wait_response, timeout)
2017-12-05 11:41:07 +00:00
else:
return result
async def send(
self,
data: TLObject,
retries: int = MAX_RETRIES,
timeout: float = WAIT_TIMEOUT,
sleep_threshold: float = SLEEP_THRESHOLD
):
try:
await asyncio.wait_for(self.is_connected.wait(), self.WAIT_TIMEOUT)
except asyncio.TimeoutError:
pass
2017-12-05 11:41:07 +00:00
if isinstance(data, (raw.functions.InvokeWithoutUpdates, raw.functions.InvokeWithTakeout)):
query = data.query
else:
query = data
query = ".".join(query.QUALNAME.split(".")[1:])
while True:
try:
return await self._send(data, timeout=timeout)
except FloodWait as e:
amount = e.x
if amount > sleep_threshold >= 0:
raise
2022-01-31 19:45:04 +00:00
log.warning(f'[{self.client.session_name}] Waiting for {amount} seconds before continuing '
f'(required by "{query}")')
await asyncio.sleep(amount)
2021-04-12 07:21:20 +00:00
except (OSError, TimeoutError, InternalServerError, ServiceUnavailable) as e:
if retries == 0:
raise e from None
(log.warning if retries < 2 else log.info)(
2021-04-15 10:17:25 +00:00
f'[{Session.MAX_RETRIES - retries + 1}] Retrying "{query}" due to {str(e) or repr(e)}')
await asyncio.sleep(0.5)
return await self.send(data, retries - 1, timeout)