PagerMaid-Pyro/pyromod/utils/utils.py

39 lines
1.2 KiB
Python
Raw Normal View History

2022-05-23 12:40:30 +00:00
"""
pyromod - A monkeypatcher add-on for Pyrogram
Copyright (C) 2020 Cezar H. <https://github.com/usernein>
This file is part of pyromod.
pyromod is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
pyromod 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with pyromod. If not, see <https://www.gnu.org/licenses/>.
"""
2022-06-26 12:59:36 +00:00
2022-05-23 12:40:30 +00:00
def patch(obj):
def is_patchable(item):
2023-03-12 03:56:01 +00:00
return getattr(item[1], "patchable", False)
2022-05-23 12:40:30 +00:00
def wrapper(container):
2022-06-26 12:59:36 +00:00
for name, func in filter(is_patchable, container.__dict__.items()):
2022-05-23 12:40:30 +00:00
old = getattr(obj, name, None)
2023-03-12 03:56:01 +00:00
setattr(obj, f"old{name}", old)
2022-05-23 12:40:30 +00:00
setattr(obj, name, func)
return container
2022-06-26 12:59:36 +00:00
2022-05-23 12:40:30 +00:00
return wrapper
2022-06-26 12:59:36 +00:00
2022-05-23 12:40:30 +00:00
def patchable(func):
func.patchable = True
2022-06-26 12:59:36 +00:00
return func