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
|
2020-02-02 22:08:54 +01:00
|
|
|
# Copyright (C) 2015-2020
|
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
|
2020-10-31 16:33:34 +01:00
|
|
|
from typing import TYPE_CHECKING, Any, 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
|
|
|
|
|
|
|
|
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:
|
2017-09-01 08:43:08 +02:00
|
|
|
"""Base class for most telegram objects."""
|
2017-07-23 22:33:08 +02:00
|
|
|
|
2020-11-05 18:12:01 +01:00
|
|
|
# def __init__(self, *args: Any, **_kwargs: Any):
|
2020-10-06 19:28:40 +02:00
|
|
|
# pass
|
2015-07-17 16:53:54 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
_id_attrs: Tuple[Any, ...] = ()
|
|
|
|
|
|
|
|
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
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
def __getitem__(self, item: str) -> Any:
|
2015-07-20 04:06:04 +02:00
|
|
|
return self.__dict__[item]
|
2015-07-17 16:53:54 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
@staticmethod
|
|
|
|
def parse_data(data: Optional[JSONDict]) -> Optional[JSONDict]:
|
|
|
|
if not data:
|
|
|
|
return None
|
|
|
|
return data.copy()
|
|
|
|
|
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]:
|
|
|
|
data = cls.parse_data(data)
|
|
|
|
|
2016-04-16 16:23:25 +02:00
|
|
|
if not data:
|
|
|
|
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]]:
|
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:
|
2015-08-28 17:19:30 +02:00
|
|
|
"""
|
|
|
|
Returns:
|
2017-07-23 22:33:08 +02:00
|
|
|
:obj:`str`
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2015-08-28 17:19:30 +02:00
|
|
|
"""
|
2017-07-23 22:33:08 +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:
|
2015-08-28 22:45:44 +02:00
|
|
|
data = dict()
|
|
|
|
|
2016-04-25 12:15:54 +02:00
|
|
|
for key in iter(self.__dict__):
|
2020-06-10 22:21:25 +02:00
|
|
|
if key == 'bot' or key.startswith('_'):
|
2016-09-20 06:36:55 +02:00
|
|
|
continue
|
|
|
|
|
2016-04-25 12:15:54 +02:00
|
|
|
value = self.__dict__[key]
|
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__()
|