L iG dZddlmZmZddlmZmZmZmZddl m Z ddl m Z ddl mZmZmZmZmZmZGddeZGd d eeeeefZy ) z/This module contains the BasePersistence class.)ABCabstractmethod)Generic NamedTupleNoReturnOptional)Bot)ExtBot)BDCDUDCDCDataConversationDictConversationKeycJeZdZUdZdZeed<dZeed<dZeed<dZ eed<y)PersistenceInputa@Convenience wrapper to group boolean input for the :paramref:`~BasePersistence.store_data` parameter for :class:`BasePersistence`. Args: bot_data (:obj:`bool`, optional): Whether the setting should be applied for ``bot_data``. Defaults to :obj:`True`. chat_data (:obj:`bool`, optional): Whether the setting should be applied for ``chat_data``. Defaults to :obj:`True`. user_data (:obj:`bool`, optional): Whether the setting should be applied for ``user_data``. Defaults to :obj:`True`. callback_data (:obj:`bool`, optional): Whether the setting should be applied for ``callback_data``. Defaults to :obj:`True`. Attributes: bot_data (:obj:`bool`): Whether the setting should be applied for ``bot_data``. chat_data (:obj:`bool`): Whether the setting should be applied for ``chat_data``. user_data (:obj:`bool`): Whether the setting should be applied for ``user_data``. callback_data (:obj:`bool`): Whether the setting should be applied for ``callback_data``. Tbot_data chat_data user_data callback_dataN) __name__ __module__ __qualname____doc__rbool__annotations__rrrc/mnt/ssd/data/python-lab/Trading/venv/lib/python3.12/site-packages/telegram/ext/_basepersistence.pyrrs1*HdItItM4rrc DeZdZdZdZ d&deedefdZe defdZ e jd e de fd Z d eddfd Zedeeeffd ZedeeeffdZedefdZedeefdZededefdZedededee ddfdZedededdfdZ edededdfdZ!ededdfdZ"ededdfdZ#ededdfdZ$ededdfdZ%edededdfd Z&eded!eddfd"Z'ed#eddfd$Z(ed'd%Z)y)(BasePersistenceaInterface class for adding persistence to your bot. Subclass this object for different implementations of a persistent bot. Attention: The interface provided by this class is intended to be accessed exclusively by :class:`~telegram.ext.Application`. Calling any of the methods below manually might interfere with the integration of persistence into :class:`~telegram.ext.Application`. All relevant methods must be overwritten. This includes: * :meth:`get_bot_data` * :meth:`update_bot_data` * :meth:`refresh_bot_data` * :meth:`get_chat_data` * :meth:`update_chat_data` * :meth:`refresh_chat_data` * :meth:`drop_chat_data` * :meth:`get_user_data` * :meth:`update_user_data` * :meth:`refresh_user_data` * :meth:`drop_user_data` * :meth:`get_callback_data` * :meth:`update_callback_data` * :meth:`get_conversations` * :meth:`update_conversation` * :meth:`flush` If you don't actually need one of those methods, a simple :keyword:`pass` is enough. For example, if you don't store ``bot_data``, you don't need :meth:`get_bot_data`, :meth:`update_bot_data` or :meth:`refresh_bot_data`. Note: You should avoid saving :class:`telegram.Bot` instances. This is because if you change e.g. the bots token, this won't propagate to the serialized instances and may lead to exceptions. To prevent this, the implementation may use :attr:`bot` to replace bot instances with a placeholder before serialization and insert :attr:`bot` back when loading the data. Since :attr:`bot` will be set when the process starts, this will be the up-to-date bot instance. If the persistence implementation does not take care of this, you should make sure not to store any bot instances in the data that will be persisted. E.g. in case of :class:`telegram.TelegramObject`, one may call :meth:`set_bot` to ensure that shortcuts like :meth:`telegram.Message.reply_text` are available. This class is a :class:`~typing.Generic` class and accepts three type variables: 1. The type of the second argument of :meth:`update_user_data`, which must coincide with the type of the second argument of :meth:`refresh_user_data` and the values in the dictionary returned by :meth:`get_user_data`. 2. The type of the second argument of :meth:`update_chat_data`, which must coincide with the type of the second argument of :meth:`refresh_chat_data` and the values in the dictionary returned by :meth:`get_chat_data`. 3. The type of the argument of :meth:`update_bot_data`, which must coincide with the type of the argument of :meth:`refresh_bot_data` and the return value of :meth:`get_bot_data`. .. seealso:: :wiki:`Architecture Overview `, :wiki:`Making Your Bot Persistent ` .. versionchanged:: 20.0 * The parameters and attributes ``store_*_data`` were replaced by :attr:`store_data`. * ``insert/replace_bot`` was dropped. Serialization of bot instances now needs to be handled by the specific implementation - see above note. Args: store_data (:class:`~telegram.ext.PersistenceInput`, optional): Specifies which kinds of data will be saved by this persistence instance. By default, all available kinds of data will be saved. update_interval (:obj:`int` | :obj:`float`, optional): The :class:`~telegram.ext.Application` will update the persistence in regular intervals. This parameter specifies the time (in seconds) to wait between two consecutive runs of updating the persistence. Defaults to ``60`` seconds. .. versionadded:: 20.0 Attributes: store_data (:class:`~telegram.ext.PersistenceInput`): Specifies which kinds of data will be saved by this persistence instance. bot (:class:`telegram.Bot`): The bot associated with the persistence. )_update_intervalbot store_dataNr$update_intervalcF|xs t|_||_d|_y)N)rr$r"r#)selfr$r%s r__init__zBasePersistence.__init__s# -7,L:J:L'6rreturnc|jS)z:obj:`float`: Time (in seconds) that the :class:`~telegram.ext.Application` will wait between two consecutive runs of updating the persistence. .. versionadded:: 20.0 )r"r's rr%zBasePersistence.update_intervals$$$r_ctd)NzGYou can not assign a new value to update_interval after initialization.)AttributeError)r'r,s rr%zBasePersistence.update_intervals U  rr#ct|jjrt|ts t d||_y)aBSet the Bot to be used by this persistence instance. Args: bot (:class:`telegram.Bot`): The bot. Raises: :exc:`TypeError`: If :attr:`PersistenceInput.callback_data` is :obj:`True` and the :paramref:`bot` is not an instance of :class:`telegram.ext.ExtBot`. z@callback_data can only be stored when using telegram.ext.ExtBot.N)r$r isinstancer TypeErrorr#)r'r#s rset_botzBasePersistence.set_bots- ?? ( (*S&2I^_ _rc Kyw)aWill be called by :class:`telegram.ext.Application` upon creation with a persistence object. It should return the ``user_data`` if stored, or an empty :obj:`dict`. In the latter case, the dictionary should produce values corresponding to one of the following: - :obj:`dict` - The type from :attr:`telegram.ext.ContextTypes.user_data` if :class:`telegram.ext.ContextTypes` is used. .. versionchanged:: 20.0 This method may now return a :obj:`dict` instead of a :obj:`collections.defaultdict` Returns: dict[:obj:`int`, :obj:`dict` | :attr:`telegram.ext.ContextTypes.user_data`]: The restored user data. Nrr+s r get_user_datazBasePersistence.get_user_datac Kyw)aWill be called by :class:`telegram.ext.Application` upon creation with a persistence object. It should return the ``chat_data`` if stored, or an empty :obj:`dict`. In the latter case, the dictionary should produce values corresponding to one of the following: - :obj:`dict` - The type from :attr:`telegram.ext.ContextTypes.chat_data` if :class:`telegram.ext.ContextTypes` is used. .. versionchanged:: 20.0 This method may now return a :obj:`dict` instead of a :obj:`collections.defaultdict` Returns: dict[:obj:`int`, :obj:`dict` | :attr:`telegram.ext.ContextTypes.chat_data`]: The restored chat data. Nrr+s r get_chat_datazBasePersistence.get_chat_datar5r6c Kyw)aIWill be called by :class:`telegram.ext.Application` upon creation with a persistence object. It should return the ``bot_data`` if stored, or an empty :obj:`dict`. In the latter case, the :obj:`dict` should produce values corresponding to one of the following: - :obj:`dict` - The type from :attr:`telegram.ext.ContextTypes.bot_data` if :class:`telegram.ext.ContextTypes` are used. Returns: dict[:obj:`int`, :obj:`dict` | :attr:`telegram.ext.ContextTypes.bot_data`]: The restored bot data. Nrr+s r get_bot_datazBasePersistence.get_bot_datar5r6c Kyw)a Will be called by :class:`telegram.ext.Application` upon creation with a persistence object. If callback data was stored, it should be returned. .. versionadded:: 13.6 .. versionchanged:: 20.0 Changed this method into an :external:func:`~abc.abstractmethod`. Returns: tuple[list[tuple[:obj:`str`, :obj:`float`, dict[:obj:`str`, :class:`object`]]], dict[:obj:`str`, :obj:`str`]] | :obj:`None`: The restored metadata or :obj:`None`, if no data was stored. Nrr+s rget_callback_dataz!BasePersistence.get_callback_datar5r6namec Kyw)aWill be called by :class:`telegram.ext.Application` when a :class:`telegram.ext.ConversationHandler` is added if :attr:`telegram.ext.ConversationHandler.persistent` is :obj:`True`. It should return the conversations for the handler with :paramref:`name` or an empty :obj:`dict`. Args: name (:obj:`str`): The handlers name. Returns: :obj:`dict`: The restored conversations for the handler. Nr)r'r=s rget_conversationsz!BasePersistence.get_conversationsr5r6key new_statec Kyw)akWill be called when a :class:`telegram.ext.ConversationHandler` changes states. This allows the storage of the new state in the persistence. Args: name (:obj:`str`): The handler's name. key (:obj:`tuple`): The key the state is changed for. new_state (:class:`object`): The new state for the given key. Nr)r'r=r@rAs rupdate_conversationz#BasePersistence.update_conversationr5r6user_iddatac Kyw)akWill be called by the :class:`telegram.ext.Application` after a handler has handled an update. Args: user_id (:obj:`int`): The user the data might have been changed for. data (:obj:`dict` | :attr:`telegram.ext.ContextTypes.user_data`): The :attr:`telegram.ext.Application.user_data` ``[user_id]``. Nr)r'rDrEs rupdate_user_dataz BasePersistence.update_user_datar5r6chat_idc Kyw)akWill be called by the :class:`telegram.ext.Application` after a handler has handled an update. Args: chat_id (:obj:`int`): The chat the data might have been changed for. data (:obj:`dict` | :attr:`telegram.ext.ContextTypes.chat_data`): The :attr:`telegram.ext.Application.chat_data` ``[chat_id]``. Nr)r'rHrEs rupdate_chat_dataz BasePersistence.update_chat_data(r5r6c Kyw)a Will be called by the :class:`telegram.ext.Application` after a handler has handled an update. Args: data (:obj:`dict` | :attr:`telegram.ext.ContextTypes.bot_data`): The :attr:`telegram.ext.Application.bot_data`. Nrr'rEs rupdate_bot_datazBasePersistence.update_bot_data3r5r6c Kyw)aWill be called by the :class:`telegram.ext.Application` after a handler has handled an update. .. versionadded:: 13.6 .. versionchanged:: 20.0 Changed this method into an :external:func:`~abc.abstractmethod`. Args: data (tuple[list[tuple[:obj:`str`, :obj:`float`, dict[:obj:`str`, :obj:`Any`]]], dict[:obj:`str`, :obj:`str`]] | :obj:`None`): The relevant data to restore :class:`telegram.ext.CallbackDataCache`. NrrLs rupdate_callback_dataz$BasePersistence.update_callback_data=r5r6c Kyw)aWill be called by the :class:`telegram.ext.Application`, when using :meth:`~telegram.ext.Application.drop_chat_data`. .. versionadded:: 20.0 Args: chat_id (:obj:`int`): The chat id to delete from the persistence. Nr)r'rHs rdrop_chat_datazBasePersistence.drop_chat_dataMr5r6c Kyw)aWill be called by the :class:`telegram.ext.Application`, when using :meth:`~telegram.ext.Application.drop_user_data`. .. versionadded:: 20.0 Args: user_id (:obj:`int`): The user id to delete from the persistence. Nr)r'rDs rdrop_user_datazBasePersistence.drop_user_dataXr5r6rc Kyw)a*Will be called by the :class:`telegram.ext.Application` before passing the :attr:`~telegram.ext.Application.user_data` to a callback. Can be used to update data stored in :attr:`~telegram.ext.Application.user_data` from an external source. Tip: This method is expected to edit the object :paramref:`user_data` in-place instead of returning a new object. Warning: When using :meth:`~telegram.ext.ApplicationBuilder.concurrent_updates`, this method may be called while a handler callback is still running. This might lead to race conditions. .. versionadded:: 13.6 .. versionchanged:: 20.0 Changed this method into an :external:func:`~abc.abstractmethod`. Args: user_id (:obj:`int`): The user ID this :attr:`~telegram.ext.Application.user_data` is associated with. user_data (:obj:`dict` | :attr:`telegram.ext.ContextTypes.user_data`): The ``user_data`` of a single user. Nr)r'rDrs rrefresh_user_dataz!BasePersistence.refresh_user_datacr5r6rc Kyw)a*Will be called by the :class:`telegram.ext.Application` before passing the :attr:`~telegram.ext.Application.chat_data` to a callback. Can be used to update data stored in :attr:`~telegram.ext.Application.chat_data` from an external source. Tip: This method is expected to edit the object :paramref:`chat_data` in-place instead of returning a new object. Warning: When using :meth:`~telegram.ext.ApplicationBuilder.concurrent_updates`, this method may be called while a handler callback is still running. This might lead to race conditions. .. versionadded:: 13.6 .. versionchanged:: 20.0 Changed this method into an :external:func:`~abc.abstractmethod`. Args: chat_id (:obj:`int`): The chat ID this :attr:`~telegram.ext.Application.chat_data` is associated with. chat_data (:obj:`dict` | :attr:`telegram.ext.ContextTypes.chat_data`): The ``chat_data`` of a single chat. Nr)r'rHrs rrefresh_chat_dataz!BasePersistence.refresh_chat_data~r5r6rc Kyw)aWill be called by the :class:`telegram.ext.Application` before passing the :attr:`~telegram.ext.Application.bot_data` to a callback. Can be used to update data stored in :attr:`~telegram.ext.Application.bot_data` from an external source. Tip: This method is expected to edit the object :paramref:`bot_data` in-place instead of returning a new object. Warning: When using :meth:`~telegram.ext.ApplicationBuilder.concurrent_updates`, this method may be called while a handler callback is still running. This might lead to race conditions. .. versionadded:: 13.6 .. versionchanged:: 20.0 Changed this method into an :external:func:`~abc.abstractmethod`. Args: bot_data (:obj:`dict` | :attr:`telegram.ext.ContextTypes.bot_data`): The ``bot_data``. Nr)r'rs rrefresh_bot_dataz BasePersistence.refresh_bot_datar5r6c Kyw)aWill be called by :meth:`telegram.ext.Application.stop`. Gives the persistence a chance to finish up saving or close a database connection gracefully. .. versionchanged:: 20.0 Changed this method into an :external:func:`~abc.abstractmethod`. Nrr+s rflushzBasePersistence.flushr5r6)N<)r)N)*rrrr __slots__rrfloatr(propertyr%setterobjectrr r2rdictintr r4r r8r r:rr<strrr?rrCrGrJrMrOrQrSrUrWrYr[rrrr!r!9sQfI26!#-.%%%  H  3 4  T#r']  $ T#r']  $  B      '):      C  4D        -  :B6:J       c     c     "     w  4     C D   C D   s r d  4 s r d  4 r d  0  rr!N)rabcrrtypingrrrr telegram._botr telegram.ext._extbotr telegram.ext._utils.typesr r r rrrrr!rrrrjsF&6#::'\\z8@ c72r2:.@ r