mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
48d7dbe90b
This should've been in 7d21b40401
.
This completes the revert of async sessions.
173 lines
5.0 KiB
Python
173 lines
5.0 KiB
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class Session(ABC):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def clone(self, to_instance=None):
|
|
"""
|
|
Creates a clone of this session file.
|
|
"""
|
|
return to_instance or self.__class__()
|
|
|
|
@abstractmethod
|
|
def set_dc(self, dc_id, server_address, port):
|
|
"""
|
|
Sets the information of the data center address and port that
|
|
the library should connect to, as well as the data center ID,
|
|
which is currently unused.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@property
|
|
@abstractmethod
|
|
def dc_id(self):
|
|
"""
|
|
Returns the currently-used data center ID.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@property
|
|
@abstractmethod
|
|
def server_address(self):
|
|
"""
|
|
Returns the server address where the library should connect to.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@property
|
|
@abstractmethod
|
|
def port(self):
|
|
"""
|
|
Returns the port to which the library should connect to.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@property
|
|
@abstractmethod
|
|
def auth_key(self):
|
|
"""
|
|
Returns an ``AuthKey`` instance associated with the saved
|
|
data center, or `None` if a new one should be generated.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@auth_key.setter
|
|
@abstractmethod
|
|
def auth_key(self, value):
|
|
"""
|
|
Sets the ``AuthKey`` to be used for the saved data center.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@property
|
|
@abstractmethod
|
|
def takeout_id(self):
|
|
"""
|
|
Returns an ID of the takeout process initialized for this session,
|
|
or `None` if there's no were any unfinished takeout requests.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@takeout_id.setter
|
|
@abstractmethod
|
|
def takeout_id(self, value):
|
|
"""
|
|
Sets the ID of the unfinished takeout process for this session.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def get_update_state(self, entity_id):
|
|
"""
|
|
Returns the ``UpdateState`` associated with the given `entity_id`.
|
|
If the `entity_id` is 0, it should return the ``UpdateState`` for
|
|
no specific channel (the "general" state). If no state is known
|
|
it should ``return None``.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def set_update_state(self, entity_id, state):
|
|
"""
|
|
Sets the given ``UpdateState`` for the specified `entity_id`, which
|
|
should be 0 if the ``UpdateState`` is the "general" state (and not
|
|
for any specific channel).
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def get_update_states(self):
|
|
"""
|
|
Returns an iterable over all known pairs of ``(entity ID, update state)``.
|
|
"""
|
|
|
|
def close(self):
|
|
"""
|
|
Called on client disconnection. Should be used to
|
|
free any used resources. Can be left empty if none.
|
|
"""
|
|
|
|
@abstractmethod
|
|
def save(self):
|
|
"""
|
|
Called whenever important properties change. It should
|
|
make persist the relevant session information to disk.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def delete(self):
|
|
"""
|
|
Called upon client.log_out(). Should delete the stored
|
|
information from disk since it's not valid anymore.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@classmethod
|
|
def list_sessions(cls):
|
|
"""
|
|
Lists available sessions. Not used by the library itself.
|
|
"""
|
|
return []
|
|
|
|
@abstractmethod
|
|
def process_entities(self, tlo):
|
|
"""
|
|
Processes the input ``TLObject`` or ``list`` and saves
|
|
whatever information is relevant (e.g., ID or access hash).
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def get_input_entity(self, key):
|
|
"""
|
|
Turns the given key into an ``InputPeer`` (e.g. ``InputPeerUser``).
|
|
The library uses this method whenever an ``InputPeer`` is needed
|
|
to suit several purposes (e.g. user only provided its ID or wishes
|
|
to use a cached username to avoid extra RPC).
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def cache_file(self, md5_digest, file_size, instance):
|
|
"""
|
|
Caches the given file information persistently, so that it
|
|
doesn't need to be re-uploaded in case the file is used again.
|
|
|
|
The ``instance`` will be either an ``InputPhoto`` or ``InputDocument``,
|
|
both with an ``.id`` and ``.access_hash`` attributes.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def get_file(self, md5_digest, file_size, cls):
|
|
"""
|
|
Returns an instance of ``cls`` if the ``md5_digest`` and ``file_size``
|
|
match an existing saved record. The class will either be an
|
|
``InputPhoto`` or ``InputDocument``, both with two parameters
|
|
``id`` and ``access_hash`` in that order.
|
|
"""
|
|
raise NotImplementedError
|