2015-07-20 04:06:04 +02:00
|
|
|
#!/usr/bin/env python
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2022-01-03 08:15:18 +01:00
|
|
|
# Copyright (C) 2015-2022
|
2016-01-05 14:12:03 +01:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2016-01-13 17:09:35 +01:00
|
|
|
"""Base class for Telegram Objects."""
|
2016-08-26 09:40:46 +02:00
|
|
|
try:
|
|
|
|
import ujson as json
|
|
|
|
except ImportError:
|
2020-10-06 19:28:40 +02:00
|
|
|
import json # type: ignore[no-redef]
|
2016-08-26 09:40:46 +02:00
|
|
|
|
2020-07-14 21:33:56 +02:00
|
|
|
import warnings
|
2021-01-30 11:38:54 +01:00
|
|
|
from typing import TYPE_CHECKING, List, Optional, Tuple, Type, TypeVar
|
2020-07-14 21:33:56 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
from telegram.utils.types import JSONDict
|
2021-05-29 16:18:16 +02:00
|
|
|
from telegram.utils.deprecate import set_new_attribute_deprecated
|
2020-10-06 19:28:40 +02:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from telegram import Bot
|
|
|
|
|
|
|
|
TO = TypeVar('TO', bound='TelegramObject', covariant=True)
|
|
|
|
|
2015-07-17 16:53:54 +02:00
|
|
|
|
2020-06-15 18:20:51 +02:00
|
|
|
class TelegramObject:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Base class for most Telegram objects."""
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2021-01-30 11:38:54 +01:00
|
|
|
_id_attrs: Tuple[object, ...] = ()
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
# Adding slots reduces memory usage & allows for faster attribute access.
|
|
|
|
# Only instance variables should be added to __slots__.
|
|
|
|
# We add __dict__ here for backward compatibility & also to avoid repetition for subclasses.
|
|
|
|
__slots__ = ('__dict__',)
|
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __str__(self) -> str:
|
2015-07-20 04:25:44 +02:00
|
|
|
return str(self.to_dict())
|
2015-07-17 16:53:54 +02:00
|
|
|
|
2021-01-30 11:38:54 +01:00
|
|
|
def __getitem__(self, item: str) -> object:
|
2021-05-29 16:18:16 +02:00
|
|
|
return getattr(self, item, None)
|
|
|
|
|
|
|
|
def __setattr__(self, key: str, value: object) -> None:
|
|
|
|
set_new_attribute_deprecated(self, key, value)
|
2015-07-17 16:53:54 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
@staticmethod
|
2021-05-27 09:38:17 +02:00
|
|
|
def _parse_data(data: Optional[JSONDict]) -> Optional[JSONDict]:
|
2021-03-14 16:41:35 +01:00
|
|
|
return None if data is None else data.copy()
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2017-07-23 21:14:38 +02:00
|
|
|
@classmethod
|
2020-10-06 19:28:40 +02:00
|
|
|
def de_json(cls: Type[TO], data: Optional[JSONDict], bot: 'Bot') -> Optional[TO]:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Converts JSON data to a Telegram object.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
data (Dict[:obj:`str`, ...]): The JSON data.
|
|
|
|
bot (:class:`telegram.Bot`): The bot associated with this object.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The Telegram object.
|
|
|
|
|
|
|
|
"""
|
|
|
|
data = cls._parse_data(data)
|
2020-10-06 19:28:40 +02:00
|
|
|
|
2021-03-14 16:41:35 +01:00
|
|
|
if data is None:
|
2016-04-16 16:23:25 +02:00
|
|
|
return None
|
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
if cls == TelegramObject:
|
|
|
|
return cls()
|
2020-10-31 16:33:34 +01:00
|
|
|
return cls(bot=bot, **data) # type: ignore[call-arg]
|
2016-04-16 16:23:25 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
@classmethod
|
2020-10-09 17:22:07 +02:00
|
|
|
def de_list(cls: Type[TO], data: Optional[List[JSONDict]], bot: 'Bot') -> List[Optional[TO]]:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Converts JSON data to a list of Telegram objects.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
data (Dict[:obj:`str`, ...]): The JSON data.
|
|
|
|
bot (:class:`telegram.Bot`): The bot associated with these objects.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A list of Telegram objects.
|
|
|
|
|
|
|
|
"""
|
2020-10-06 19:28:40 +02:00
|
|
|
if not data:
|
|
|
|
return []
|
|
|
|
|
|
|
|
return [cls.de_json(d, bot) for d in data]
|
2015-07-17 16:53:54 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def to_json(self) -> str:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Gives a JSON representation of object.
|
|
|
|
|
2015-08-28 17:19:30 +02:00
|
|
|
Returns:
|
2017-07-23 22:33:08 +02:00
|
|
|
:obj:`str`
|
2015-08-28 17:19:30 +02:00
|
|
|
"""
|
2015-07-20 04:25:44 +02:00
|
|
|
return json.dumps(self.to_dict())
|
2015-07-20 04:06:04 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def to_dict(self) -> JSONDict:
|
2021-05-27 09:38:17 +02:00
|
|
|
"""Gives representation of object as :obj:`dict`.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
:obj:`dict`
|
|
|
|
"""
|
2021-04-05 13:25:27 +02:00
|
|
|
data = {}
|
2015-08-28 22:45:44 +02:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
# We want to get all attributes for the class, using self.__slots__ only includes the
|
|
|
|
# attributes used by that class itself, and not its superclass(es). Hence we get its MRO
|
|
|
|
# and then get their attributes. The `[:-2]` slice excludes the `object` class & the
|
|
|
|
# TelegramObject class itself.
|
|
|
|
attrs = {attr for cls in self.__class__.__mro__[:-2] for attr in cls.__slots__}
|
|
|
|
for key in attrs:
|
2020-06-10 22:21:25 +02:00
|
|
|
if key == 'bot' or key.startswith('_'):
|
2016-09-20 06:36:55 +02:00
|
|
|
continue
|
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
value = getattr(self, key, None)
|
2016-04-25 13:30:51 +02:00
|
|
|
if value is not None:
|
2015-08-28 22:45:44 +02:00
|
|
|
if hasattr(value, 'to_dict'):
|
|
|
|
data[key] = value.to_dict()
|
|
|
|
else:
|
|
|
|
data[key] = value
|
|
|
|
|
2018-02-19 09:31:38 +01:00
|
|
|
if data.get('from_user'):
|
|
|
|
data['from'] = data.pop('from_user', None)
|
2015-08-28 22:45:44 +02:00
|
|
|
return data
|
2017-05-14 23:29:31 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __eq__(self, other: object) -> bool:
|
2017-05-14 23:29:31 +02:00
|
|
|
if isinstance(other, self.__class__):
|
2020-07-14 21:33:56 +02:00
|
|
|
if self._id_attrs == ():
|
2020-10-09 17:22:07 +02:00
|
|
|
warnings.warn(
|
2020-11-23 22:09:29 +01:00
|
|
|
f"Objects of type {self.__class__.__name__} can not be meaningfully tested for"
|
|
|
|
" equivalence."
|
2020-10-09 17:22:07 +02:00
|
|
|
)
|
2020-07-14 21:33:56 +02:00
|
|
|
if other._id_attrs == ():
|
2020-10-09 17:22:07 +02:00
|
|
|
warnings.warn(
|
2020-11-23 22:09:29 +01:00
|
|
|
f"Objects of type {other.__class__.__name__} can not be meaningfully tested"
|
|
|
|
" for equivalence."
|
2020-10-09 17:22:07 +02:00
|
|
|
)
|
2017-05-14 23:29:31 +02:00
|
|
|
return self._id_attrs == other._id_attrs
|
2020-06-15 18:20:51 +02:00
|
|
|
return super().__eq__(other) # pylint: disable=no-member
|
2017-05-14 23:29:31 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __hash__(self) -> int:
|
2017-05-14 23:29:31 +02:00
|
|
|
if self._id_attrs:
|
2017-07-23 22:33:08 +02:00
|
|
|
return hash((self.__class__, self._id_attrs)) # pylint: disable=no-member
|
2020-06-15 18:20:51 +02:00
|
|
|
return super().__hash__()
|