2018-06-09 22:22:54 +03:00
|
|
|
import abc
|
2018-06-09 22:03:48 +03:00
|
|
|
import asyncio
|
|
|
|
import itertools
|
2017-06-08 14:12:57 +03:00
|
|
|
import logging
|
2018-03-02 22:05:09 +03:00
|
|
|
import platform
|
2018-06-09 22:10:23 +03:00
|
|
|
import warnings
|
2017-09-29 21:50:27 +03:00
|
|
|
from datetime import timedelta, datetime
|
2018-06-08 22:52:59 +03:00
|
|
|
|
2018-06-09 22:22:54 +03:00
|
|
|
from .. import version, errors, utils
|
|
|
|
from ..crypto import rsa
|
|
|
|
from ..extensions import markdown
|
|
|
|
from ..network import MTProtoSender, ConnectionTcpFull
|
|
|
|
from ..network.mtprotostate import MTProtoState
|
|
|
|
from ..sessions import Session, SQLiteSession
|
|
|
|
from ..tl import TLObject, types, functions
|
|
|
|
from ..tl.all_tlobjects import LAYER
|
|
|
|
from ..update_state import UpdateState
|
2017-06-08 14:12:57 +03:00
|
|
|
|
2017-12-28 03:04:11 +03:00
|
|
|
DEFAULT_DC_ID = 4
|
2017-11-16 15:30:18 +03:00
|
|
|
DEFAULT_IPV4_IP = '149.154.167.51'
|
|
|
|
DEFAULT_IPV6_IP = '[2001:67c:4e8:f002::a]'
|
|
|
|
DEFAULT_PORT = 443
|
|
|
|
|
2017-12-20 14:47:10 +03:00
|
|
|
__log__ = logging.getLogger(__name__)
|
|
|
|
|
2017-11-16 15:30:18 +03:00
|
|
|
|
2018-06-09 22:22:54 +03:00
|
|
|
class TelegramBaseClient(abc.ABC):
|
2018-06-08 22:52:59 +03:00
|
|
|
"""
|
2018-06-09 22:22:54 +03:00
|
|
|
This is the abstract base class for the client. It defines some
|
|
|
|
basic stuff like connecting, switching data center, etc, and
|
|
|
|
leaves the `__call__` unimplemented.
|
2018-06-08 22:52:59 +03:00
|
|
|
|
|
|
|
Args:
|
|
|
|
session (`str` | `telethon.sessions.abstract.Session`, `None`):
|
|
|
|
The file name of the session file to be used if a string is
|
|
|
|
given (it may be a full path), or the Session instance to be
|
|
|
|
used otherwise. If it's ``None``, the session will not be saved,
|
|
|
|
and you should call :meth:`.log_out()` when you're done.
|
|
|
|
|
|
|
|
Note that if you pass a string it will be a file in the current
|
|
|
|
working directory, although you can also pass absolute paths.
|
|
|
|
|
|
|
|
The session file contains enough information for you to login
|
|
|
|
without re-sending the code, so if you have to enter the code
|
|
|
|
more than once, maybe you're changing the working directory,
|
|
|
|
renaming or removing the file, or using random names.
|
|
|
|
|
|
|
|
api_id (`int` | `str`):
|
|
|
|
The API ID you obtained from https://my.telegram.org.
|
|
|
|
|
|
|
|
api_hash (`str`):
|
|
|
|
The API ID you obtained from https://my.telegram.org.
|
|
|
|
|
|
|
|
connection (`telethon.network.connection.common.Connection`, optional):
|
|
|
|
The connection instance to be used when creating a new connection
|
|
|
|
to the servers. If it's a type, the `proxy` argument will be used.
|
|
|
|
|
|
|
|
Defaults to `telethon.network.connection.tcpfull.ConnectionTcpFull`.
|
|
|
|
|
|
|
|
use_ipv6 (`bool`, optional):
|
|
|
|
Whether to connect to the servers through IPv6 or not.
|
|
|
|
By default this is ``False`` as IPv6 support is not
|
|
|
|
too widespread yet.
|
|
|
|
|
|
|
|
proxy (`tuple` | `dict`, optional):
|
|
|
|
A tuple consisting of ``(socks.SOCKS5, 'host', port)``.
|
|
|
|
See https://github.com/Anorov/PySocks#usage-1 for more.
|
|
|
|
|
|
|
|
timeout (`int` | `float` | `timedelta`, optional):
|
|
|
|
The timeout to be used when receiving responses from
|
|
|
|
the network. Defaults to 5 seconds.
|
|
|
|
|
|
|
|
report_errors (`bool`, optional):
|
|
|
|
Whether to report RPC errors or not. Defaults to ``True``,
|
|
|
|
see :ref:`api-status` for more information.
|
|
|
|
|
|
|
|
device_model (`str`, optional):
|
|
|
|
"Device model" to be sent when creating the initial connection.
|
|
|
|
Defaults to ``platform.node()``.
|
|
|
|
|
|
|
|
system_version (`str`, optional):
|
|
|
|
"System version" to be sent when creating the initial connection.
|
|
|
|
Defaults to ``platform.system()``.
|
|
|
|
|
|
|
|
app_version (`str`, optional):
|
|
|
|
"App version" to be sent when creating the initial connection.
|
|
|
|
Defaults to `telethon.version.__version__`.
|
|
|
|
|
|
|
|
lang_code (`str`, optional):
|
|
|
|
"Language code" to be sent when creating the initial connection.
|
|
|
|
Defaults to ``'en'``.
|
|
|
|
|
|
|
|
system_lang_code (`str`, optional):
|
|
|
|
"System lang code" to be sent when creating the initial connection.
|
|
|
|
Defaults to `lang_code`.
|
2017-06-08 14:12:57 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
# Current TelegramClient version
|
2017-10-28 13:21:07 +03:00
|
|
|
__version__ = version.__version__
|
2017-06-08 14:12:57 +03:00
|
|
|
|
2018-06-08 22:52:59 +03:00
|
|
|
# Server configuration (with .dc_options)
|
|
|
|
_config = None
|
2017-09-17 15:30:23 +03:00
|
|
|
|
2017-06-08 14:12:57 +03:00
|
|
|
# region Initialization
|
|
|
|
|
2017-06-22 12:43:42 +03:00
|
|
|
def __init__(self, session, api_id, api_hash,
|
2018-05-10 15:22:19 +03:00
|
|
|
*,
|
|
|
|
connection=ConnectionTcpFull,
|
2017-11-16 15:30:18 +03:00
|
|
|
use_ipv6=False,
|
2017-09-07 19:49:08 +03:00
|
|
|
proxy=None,
|
2017-09-29 21:50:27 +03:00
|
|
|
timeout=timedelta(seconds=5),
|
2018-03-15 12:22:21 +03:00
|
|
|
report_errors=True,
|
2018-03-02 22:05:09 +03:00
|
|
|
device_model=None,
|
|
|
|
system_version=None,
|
|
|
|
app_version=None,
|
|
|
|
lang_code='en',
|
|
|
|
system_lang_code='en'):
|
2017-09-29 21:50:27 +03:00
|
|
|
"""Refer to TelegramClient.__init__ for docs on this method"""
|
|
|
|
if not api_id or not api_hash:
|
2017-12-28 02:22:28 +03:00
|
|
|
raise ValueError(
|
2017-09-29 21:50:27 +03:00
|
|
|
"Your API ID or Hash cannot be empty or None. "
|
2018-01-08 16:04:04 +03:00
|
|
|
"Refer to telethon.rtfd.io for more information.")
|
2017-09-29 21:50:27 +03:00
|
|
|
|
2017-11-16 15:30:18 +03:00
|
|
|
self._use_ipv6 = use_ipv6
|
2018-03-02 00:34:32 +03:00
|
|
|
|
2017-09-29 21:50:27 +03:00
|
|
|
# Determine what session object we have
|
|
|
|
if isinstance(session, str) or session is None:
|
2018-03-02 00:34:32 +03:00
|
|
|
session = SQLiteSession(session)
|
2017-09-29 21:50:27 +03:00
|
|
|
elif not isinstance(session, Session):
|
2017-12-28 02:22:28 +03:00
|
|
|
raise TypeError(
|
2017-09-29 21:50:27 +03:00
|
|
|
'The given session must be a str or a Session instance.'
|
|
|
|
)
|
|
|
|
|
2017-11-16 15:40:25 +03:00
|
|
|
# ':' in session.server_address is True if it's an IPv6 address
|
|
|
|
if (not session.server_address or
|
|
|
|
(':' in session.server_address) != use_ipv6):
|
2017-12-28 03:04:11 +03:00
|
|
|
session.set_dc(
|
|
|
|
DEFAULT_DC_ID,
|
|
|
|
DEFAULT_IPV6_IP if self._use_ipv6 else DEFAULT_IPV4_IP,
|
|
|
|
DEFAULT_PORT
|
|
|
|
)
|
2017-11-16 15:30:18 +03:00
|
|
|
|
2018-03-15 12:22:21 +03:00
|
|
|
session.report_errors = report_errors
|
2017-06-08 14:12:57 +03:00
|
|
|
self.session = session
|
2017-06-11 23:42:04 +03:00
|
|
|
self.api_id = int(api_id)
|
2017-06-08 14:12:57 +03:00
|
|
|
self.api_hash = api_hash
|
2017-09-21 14:43:33 +03:00
|
|
|
|
2017-09-30 12:45:35 +03:00
|
|
|
# This is the main sender, which will be used from the thread
|
|
|
|
# that calls .connect(). Every other thread will spawn a new
|
|
|
|
# temporary connection. The connection on this one is always
|
|
|
|
# kept open so Telegram can send us updates.
|
2018-05-10 15:22:19 +03:00
|
|
|
if isinstance(connection, type):
|
|
|
|
connection = connection(proxy=proxy, timeout=timeout)
|
|
|
|
|
2018-06-09 22:03:48 +03:00
|
|
|
# Used on connection - the user may modify these and reconnect
|
|
|
|
system = platform.uname()
|
|
|
|
state = MTProtoState(self.session.auth_key)
|
|
|
|
first = functions.InvokeWithLayerRequest(
|
|
|
|
LAYER, functions.InitConnectionRequest(
|
|
|
|
api_id=self.api_id,
|
|
|
|
device_model=device_model or system.system or 'Unknown',
|
|
|
|
system_version=system_version or system.release or '1.0',
|
|
|
|
app_version=app_version or self.__version__,
|
|
|
|
lang_code=lang_code,
|
|
|
|
system_lang_code=system_lang_code,
|
|
|
|
lang_pack='', # "langPacks are for official apps only"
|
|
|
|
query=functions.help.GetConfigRequest()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self._sender = MTProtoSender(state, connection, first_query=first)
|
2017-09-22 13:20:38 +03:00
|
|
|
|
2017-09-30 17:32:10 +03:00
|
|
|
# Cache "exported" sessions as 'dc_id: Session' not to recreate
|
|
|
|
# them all the time since generating a new key is a relatively
|
|
|
|
# expensive operation.
|
|
|
|
self._exported_sessions = {}
|
2017-07-04 11:21:15 +03:00
|
|
|
|
2017-09-07 19:49:08 +03:00
|
|
|
# This member will process updates if enabled.
|
|
|
|
# One may change self.updates.enabled at any later point.
|
2018-06-09 22:03:48 +03:00
|
|
|
self.updates = UpdateState()
|
2017-09-29 21:50:27 +03:00
|
|
|
|
|
|
|
# Save whether the user is authorized here (a.k.a. logged in)
|
2017-10-18 13:17:13 +03:00
|
|
|
self._authorized = None # None = We don't know yet
|
2017-09-29 21:50:27 +03:00
|
|
|
|
2017-12-28 03:13:24 +03:00
|
|
|
# The first request must be in invokeWithLayer(initConnection(X)).
|
|
|
|
# See https://core.telegram.org/api/invoking#saving-client-info.
|
|
|
|
self._first_request = True
|
|
|
|
|
2017-09-29 21:50:27 +03:00
|
|
|
# Default PingRequest delay
|
|
|
|
self._last_ping = datetime.now()
|
|
|
|
self._ping_delay = timedelta(minutes=1)
|
|
|
|
|
2018-02-15 13:41:32 +03:00
|
|
|
# Also have another delay for GetStateRequest.
|
|
|
|
#
|
|
|
|
# If the connection is kept alive for long without invoking any
|
|
|
|
# high level request the server simply stops sending updates.
|
|
|
|
# TODO maybe we can have ._last_request instead if any req works?
|
|
|
|
self._last_state = datetime.now()
|
|
|
|
self._state_delay = timedelta(hours=1)
|
|
|
|
|
2018-06-08 22:52:59 +03:00
|
|
|
# Some further state for subclasses
|
|
|
|
self._event_builders = []
|
|
|
|
self._events_pending_resolve = []
|
2017-06-08 14:12:57 +03:00
|
|
|
|
2018-06-08 22:52:59 +03:00
|
|
|
# Default parse mode
|
|
|
|
self._parse_mode = markdown
|
2017-06-08 14:12:57 +03:00
|
|
|
|
2018-06-08 22:52:59 +03:00
|
|
|
# Some fields to easy signing in. Let {phone: hash} be
|
|
|
|
# a dictionary because the user may change their mind.
|
|
|
|
self._phone_code_hash = {}
|
|
|
|
self._phone = None
|
|
|
|
self._tos = None
|
2017-06-09 11:35:19 +03:00
|
|
|
|
2018-06-08 22:52:59 +03:00
|
|
|
# Sometimes we need to know who we are, cache the self peer
|
|
|
|
self._self_input_peer = None
|
2017-09-30 17:32:10 +03:00
|
|
|
|
2018-06-08 22:52:59 +03:00
|
|
|
# endregion
|
2017-12-20 14:47:10 +03:00
|
|
|
|
2018-06-08 22:52:59 +03:00
|
|
|
# region Connecting
|
2017-09-29 21:50:27 +03:00
|
|
|
|
2018-06-09 22:03:48 +03:00
|
|
|
async def connect(self):
|
2018-06-08 22:52:59 +03:00
|
|
|
"""
|
|
|
|
Connects to Telegram.
|
|
|
|
"""
|
|
|
|
await self._sender.connect(
|
|
|
|
self.session.server_address, self.session.port)
|
2017-06-08 14:12:57 +03:00
|
|
|
|
2017-09-17 17:39:29 +03:00
|
|
|
def is_connected(self):
|
2018-06-08 22:52:59 +03:00
|
|
|
"""
|
|
|
|
Returns ``True`` if the user has connected.
|
|
|
|
"""
|
2017-09-21 14:43:33 +03:00
|
|
|
return self._sender.is_connected()
|
2017-09-17 17:39:29 +03:00
|
|
|
|
2018-06-08 22:52:59 +03:00
|
|
|
async def disconnect(self):
|
|
|
|
"""
|
|
|
|
Disconnects from Telegram.
|
|
|
|
"""
|
|
|
|
await self._sender.disconnect()
|
|
|
|
# TODO What to do with the update state? Does it belong here?
|
|
|
|
# self.session.set_update_state(0, self.updates.get_update_state(0))
|
2018-01-26 11:59:49 +03:00
|
|
|
self.session.close()
|
2017-09-29 21:50:27 +03:00
|
|
|
|
2018-06-08 22:52:59 +03:00
|
|
|
def _switch_dc(self, new_dc):
|
2017-06-08 17:51:20 +03:00
|
|
|
"""
|
2018-06-09 22:03:48 +03:00
|
|
|
Permanently switches the current connection to the new data center.
|
2018-06-08 22:52:59 +03:00
|
|
|
"""
|
|
|
|
# TODO Implement
|
|
|
|
raise NotImplementedError
|
|
|
|
dc = self._get_dc(new_dc)
|
|
|
|
__log__.info('Reconnecting to new data center %s', dc)
|
|
|
|
|
|
|
|
self.session.set_dc(dc.id, dc.ip_address, dc.port)
|
|
|
|
# auth_key's are associated with a server, which has now changed
|
|
|
|
# so it's not valid anymore. Set to None to force recreating it.
|
|
|
|
self.session.auth_key = None
|
|
|
|
self.session.save()
|
|
|
|
self.disconnect()
|
|
|
|
return self.connect()
|
2017-06-08 14:12:57 +03:00
|
|
|
|
|
|
|
# endregion
|
|
|
|
|
2017-09-29 21:50:27 +03:00
|
|
|
# region Working with different connections/Data Centers
|
|
|
|
|
2018-06-09 22:03:48 +03:00
|
|
|
async def _get_dc(self, dc_id, cdn=False):
|
2017-06-08 14:12:57 +03:00
|
|
|
"""Gets the Data Center (DC) associated to 'dc_id'"""
|
2018-06-09 22:22:54 +03:00
|
|
|
if not TelegramBaseClient._config:
|
|
|
|
TelegramBaseClient._config =\
|
2018-06-09 22:03:48 +03:00
|
|
|
await self(functions.help.GetConfigRequest())
|
2017-06-08 14:12:57 +03:00
|
|
|
|
2017-08-24 14:02:48 +03:00
|
|
|
try:
|
2017-09-05 17:11:02 +03:00
|
|
|
if cdn:
|
|
|
|
# Ensure we have the latest keys for the CDNs
|
2018-06-09 22:03:48 +03:00
|
|
|
result = await self(functions.help.GetCdnConfigRequest())
|
|
|
|
for pk in result.public_keys:
|
2017-09-05 17:11:02 +03:00
|
|
|
rsa.add_key(pk.public_key)
|
|
|
|
|
2017-08-29 14:49:41 +03:00
|
|
|
return next(
|
2018-06-09 22:22:54 +03:00
|
|
|
dc for dc in TelegramBaseClient._config.dc_options
|
2018-06-09 22:03:48 +03:00
|
|
|
if dc.id == dc_id
|
|
|
|
and bool(dc.ipv6) == self._use_ipv6 and bool(dc.cdn) == cdn
|
2017-08-29 14:49:41 +03:00
|
|
|
)
|
2017-08-24 14:02:48 +03:00
|
|
|
except StopIteration:
|
|
|
|
if not cdn:
|
|
|
|
raise
|
|
|
|
|
2017-09-05 17:11:02 +03:00
|
|
|
# New configuration, perhaps a new CDN was added?
|
2018-06-09 22:22:54 +03:00
|
|
|
TelegramBaseClient._config =\
|
2018-06-09 22:03:48 +03:00
|
|
|
await self(functions.help.GetConfigRequest())
|
|
|
|
|
2017-11-16 15:30:18 +03:00
|
|
|
return self._get_dc(dc_id, cdn=cdn)
|
2017-06-08 14:12:57 +03:00
|
|
|
|
2018-06-09 22:03:48 +03:00
|
|
|
async def _get_exported_client(self, dc_id):
|
2017-09-30 17:32:10 +03:00
|
|
|
"""Creates and connects a new TelegramBareClient for the desired DC.
|
2017-07-04 11:21:15 +03:00
|
|
|
|
2017-09-30 17:32:10 +03:00
|
|
|
If it's the first time calling the method with a given dc_id,
|
|
|
|
a new session will be first created, and its auth key generated.
|
|
|
|
Exporting/Importing the authorization will also be done so that
|
|
|
|
the auth is bound with the key.
|
2017-07-04 11:21:15 +03:00
|
|
|
"""
|
2018-06-09 22:03:48 +03:00
|
|
|
# TODO Implement
|
|
|
|
raise NotImplementedError
|
2017-07-04 11:21:15 +03:00
|
|
|
# Thanks badoualy/kotlogram on /telegram/api/DefaultTelegramClient.kt
|
|
|
|
# for clearly showing how to export the authorization! ^^
|
2017-09-30 17:32:10 +03:00
|
|
|
session = self._exported_sessions.get(dc_id)
|
|
|
|
if session:
|
|
|
|
export_auth = None # Already bound with the auth key
|
2017-07-04 11:21:15 +03:00
|
|
|
else:
|
2017-09-30 17:32:10 +03:00
|
|
|
# TODO Add a lock, don't allow two threads to create an auth key
|
2017-09-30 18:51:07 +03:00
|
|
|
# (when calling .connect() if there wasn't a previous session).
|
2017-09-30 17:32:10 +03:00
|
|
|
# for the same data center.
|
2017-07-04 11:21:15 +03:00
|
|
|
dc = self._get_dc(dc_id)
|
|
|
|
|
|
|
|
# Export the current authorization to the new DC.
|
2017-12-20 14:47:10 +03:00
|
|
|
__log__.info('Exporting authorization for data center %s', dc)
|
2018-06-09 22:03:48 +03:00
|
|
|
export_auth =\
|
|
|
|
await self(functions.auth.ExportAuthorizationRequest(dc_id))
|
2017-07-04 11:21:15 +03:00
|
|
|
|
|
|
|
# Create a temporary session for this IP address, which needs
|
|
|
|
# to be different because each auth_key is unique per DC.
|
|
|
|
#
|
|
|
|
# Construct this session with the connection parameters
|
|
|
|
# (system version, device model...) from the current one.
|
2018-03-02 00:34:32 +03:00
|
|
|
session = self.session.clone()
|
2017-12-28 03:04:11 +03:00
|
|
|
session.set_dc(dc.id, dc.ip_address, dc.port)
|
2017-09-30 17:32:10 +03:00
|
|
|
self._exported_sessions[dc_id] = session
|
2017-07-04 11:21:15 +03:00
|
|
|
|
2017-12-20 14:47:10 +03:00
|
|
|
__log__.info('Creating exported new client')
|
2017-09-30 17:32:10 +03:00
|
|
|
client = TelegramBareClient(
|
|
|
|
session, self.api_id, self.api_hash,
|
|
|
|
proxy=self._sender.connection.conn.proxy,
|
|
|
|
timeout=self._sender.connection.get_timeout()
|
|
|
|
)
|
2017-10-24 16:40:51 +03:00
|
|
|
client.connect(_sync_updates=False)
|
|
|
|
if isinstance(export_auth, ExportedAuthorization):
|
|
|
|
client(ImportAuthorizationRequest(
|
|
|
|
id=export_auth.id, bytes=export_auth.bytes
|
|
|
|
))
|
|
|
|
elif export_auth is not None:
|
2017-12-20 14:47:10 +03:00
|
|
|
__log__.warning('Unknown export auth type %s', export_auth)
|
2017-10-24 16:40:51 +03:00
|
|
|
|
2017-09-30 19:33:34 +03:00
|
|
|
client._authorized = True # We exported the auth, so we got auth
|
2017-09-30 17:32:10 +03:00
|
|
|
return client
|
2017-07-04 11:21:15 +03:00
|
|
|
|
2018-06-09 22:03:48 +03:00
|
|
|
async def _get_cdn_client(self, cdn_redirect):
|
2017-09-30 18:51:07 +03:00
|
|
|
"""Similar to ._get_exported_client, but for CDNs"""
|
2018-06-09 22:03:48 +03:00
|
|
|
# TODO Implement
|
|
|
|
raise NotImplementedError
|
2017-09-30 18:51:07 +03:00
|
|
|
session = self._exported_sessions.get(cdn_redirect.dc_id)
|
|
|
|
if not session:
|
2018-06-09 22:03:48 +03:00
|
|
|
dc = await self._get_dc(cdn_redirect.dc_id, cdn=True)
|
2018-03-02 00:34:32 +03:00
|
|
|
session = self.session.clone()
|
2017-12-28 03:04:11 +03:00
|
|
|
session.set_dc(dc.id, dc.ip_address, dc.port)
|
2017-09-30 18:51:07 +03:00
|
|
|
self._exported_sessions[cdn_redirect.dc_id] = session
|
|
|
|
|
2017-12-20 14:47:10 +03:00
|
|
|
__log__.info('Creating new CDN client')
|
2017-09-30 18:51:07 +03:00
|
|
|
client = TelegramBareClient(
|
|
|
|
session, self.api_id, self.api_hash,
|
|
|
|
proxy=self._sender.connection.conn.proxy,
|
|
|
|
timeout=self._sender.connection.get_timeout()
|
|
|
|
)
|
|
|
|
|
|
|
|
# This will make use of the new RSA keys for this specific CDN.
|
|
|
|
#
|
2017-10-24 16:40:51 +03:00
|
|
|
# We won't be calling GetConfigRequest because it's only called
|
|
|
|
# when needed by ._get_dc, and also it's static so it's likely
|
|
|
|
# set already. Avoid invoking non-CDN methods by not syncing updates.
|
|
|
|
client.connect(_sync_updates=False)
|
2017-09-30 19:33:34 +03:00
|
|
|
client._authorized = self._authorized
|
2017-09-30 18:51:07 +03:00
|
|
|
return client
|
|
|
|
|
2017-06-08 14:12:57 +03:00
|
|
|
# endregion
|
|
|
|
|
|
|
|
# region Invoking Telegram requests
|
|
|
|
|
2018-06-09 22:22:54 +03:00
|
|
|
@abc.abstractmethod
|
|
|
|
def __call__(self, request, retries=5, ordered=False):
|
2018-05-09 11:19:45 +03:00
|
|
|
"""
|
|
|
|
Invokes (sends) one or more MTProtoRequests and returns (receives)
|
|
|
|
their result.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
request (`TLObject` | `list`):
|
|
|
|
The request or requests to be invoked.
|
|
|
|
|
|
|
|
ordered (`bool`, optional):
|
|
|
|
Whether the requests (if more than one was given) should be
|
|
|
|
executed sequentially on the server. They run in arbitrary
|
|
|
|
order by default.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The result of the request (often a `TLObject`) or a list of
|
|
|
|
results if more than one request was given.
|
2017-06-08 14:12:57 +03:00
|
|
|
"""
|
2018-06-09 22:22:54 +03:00
|
|
|
raise NotImplementedError
|
2017-09-30 12:45:35 +03:00
|
|
|
|
2017-10-01 17:04:14 +03:00
|
|
|
# Let people use client.invoke(SomeRequest()) instead client(...)
|
2018-06-09 22:10:23 +03:00
|
|
|
async def invoke(self, *args, **kwargs):
|
|
|
|
warnings.warn('client.invoke(...) is deprecated, '
|
|
|
|
'use client(...) instead')
|
|
|
|
return await self(*args, **kwargs)
|
2017-10-01 17:04:14 +03:00
|
|
|
|
2017-09-29 21:50:27 +03:00
|
|
|
# endregion
|