MTPyroger/pyrogram/types/object.py

103 lines
3.3 KiB
Python
Raw Normal View History

2020-03-21 14:43:32 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2021-01-01 21:58:48 +00:00
# Copyright (C) 2017-2021 Dan <https://github.com/delivrance>
2018-12-16 14:24:51 +00:00
#
2020-03-21 14:43:32 +00:00
# This file is part of Pyrogram.
2018-12-16 14:24:51 +00:00
#
2020-03-21 14:43:32 +00:00
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
2018-12-16 14:24:51 +00:00
#
2020-03-21 14:43:32 +00:00
# Pyrogram 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 General Public License for more details.
2018-12-16 14:24:51 +00:00
#
2020-03-21 14:43:32 +00:00
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
2018-12-16 14:24:51 +00:00
import typing
from datetime import datetime
from json import dumps
2018-12-16 14:24:51 +00:00
import pyrogram
2018-12-16 14:24:51 +00:00
2019-06-03 14:56:37 +00:00
class Meta(type, metaclass=type("", (type,), {"__str__": lambda _: "~hi"})):
def __str__(self):
2020-08-24 13:24:06 +00:00
return f"<class 'pyrogram.types.{self.__name__}'>"
2019-06-03 14:56:37 +00:00
class Object(metaclass=Meta):
def __init__(self, client: "pyrogram.Client" = None):
self._client = client
def bind(self, client: "pyrogram.Client"):
"""Bind a Client instance to this Pyrogram Object
Parameters:
client (:obj:`~pyrogram.types.Client`):
The Client instance to bind this object with. Useful to re-enable bound methods after serializing and
deserializing Pyrogram objects with ``repr`` and ``eval``.
"""
self._client = client
2018-12-16 16:10:08 +00:00
2019-06-03 14:56:37 +00:00
@staticmethod
def default(obj: "Object"):
if isinstance(obj, bytes):
return repr(obj)
2018-12-16 14:24:51 +00:00
# https://t.me/pyrogramchat/167281
# Instead of re.Match, which breaks for python <=3.6
if isinstance(obj, typing.Match):
return repr(obj)
return {
"_": obj.__class__.__name__,
**{
attr: (
"*" * 9
if attr == "phone_number" else
str(datetime.fromtimestamp(getattr(obj, attr)))
if attr.endswith("date") else
getattr(obj, attr)
)
2019-08-01 22:33:48 +00:00
for attr in filter(lambda x: not x.startswith("_"), obj.__dict__)
2019-06-03 14:56:37 +00:00
if getattr(obj, attr) is not None
}
}
2018-12-16 14:24:51 +00:00
def __str__(self) -> str:
2019-06-03 14:56:37 +00:00
return dumps(self, indent=4, default=Object.default, ensure_ascii=False)
2018-12-17 12:02:22 +00:00
def __repr__(self) -> str:
return "pyrogram.types.{}({})".format(
self.__class__.__name__,
", ".join(
f"{attr}={repr(getattr(self, attr))}"
2019-08-01 22:33:48 +00:00
for attr in filter(lambda x: not x.startswith("_"), self.__dict__)
if getattr(self, attr) is not None
2018-12-17 12:03:08 +00:00
)
)
2019-06-03 14:56:37 +00:00
def __eq__(self, other: "Object") -> bool:
2019-08-01 22:33:48 +00:00
for attr in self.__dict__:
2019-06-03 14:56:37 +00:00
try:
if getattr(self, attr) != getattr(other, attr):
return False
except AttributeError:
return False
return True
def __getitem__(self, item):
return getattr(self, item)
2019-06-03 14:56:37 +00:00
def __setitem__(self, key, value):
setattr(self, key, value)
def __getstate__(self):
new_dict = self.__dict__.copy()
new_dict.pop("_client", None)
return new_dict