api_protection.py 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. # █ █ ▀ █▄▀ ▄▀█ █▀█ ▀
  2. # █▀█ █ █ █ █▀█ █▀▄ █
  3. # © Copyright 2022
  4. # https://t.me/hikariatama
  5. #
  6. # 🔒 Licensed under the GNU AGPLv3
  7. # 🌐 https://www.gnu.org/licenses/agpl-3.0.html
  8. # meta pic: https://img.icons8.com/emoji/344/shield-emoji.png
  9. # meta developer: @hikariatama
  10. import asyncio
  11. import io
  12. import json
  13. import logging
  14. import time
  15. from telethon.tl.types import Message
  16. from .. import loader, utils
  17. from ..inline.types import InlineCall
  18. logger = logging.getLogger(__name__)
  19. @loader.tds
  20. class APIRatelimiterMod(loader.Module):
  21. """Helps userbot avoid spamming Telegram API"""
  22. strings = {
  23. "name": "APIRatelimiter",
  24. "warning": (
  25. "<emoji document_id='6319093650693293883'>☣️</emoji>"
  26. " <b>WARNING!</b>\n\nYour account exceeded the limit of requests, specified"
  27. " in config. In order to prevent Telegram API Flood, userbot has been"
  28. " <b>fully frozen</b> for {} seconds. Further info is provided in attached"
  29. " file. \n\nIt is recommended to get help in <code>{prefix}support</code>"
  30. " group!\n\nIf you think, that it is an intended behavior, then wait until"
  31. " userbot gets unlocked and next time, when you will be going to perform"
  32. " such an operation, use <code>{prefix}suspend_api_protect</code> &lt;time"
  33. " in seconds&gt;"
  34. ),
  35. "args_invalid": (
  36. "<emoji document_id='6319093650693293883'>☣️</emoji> <b>Invalid"
  37. " arguments</b>"
  38. ),
  39. "suspended_for": (
  40. "<emoji document_id='5458450833857322148'>👌</emoji> <b>API Flood Protection"
  41. " is disabled for {} seconds</b>"
  42. ),
  43. "test": (
  44. "<emoji document_id='6319093650693293883'>☣️</emoji> <b>This action will"
  45. " expose your account to flooding Telegram API.</b> <i>In order to confirm,"
  46. " that you really know, what you are doing, complete this simple test -"
  47. " find the emoji, differing from others</i>"
  48. ),
  49. "on": (
  50. "<emoji document_id='5458450833857322148'>👌</emoji> <b>Protection"
  51. " enabled</b>"
  52. ),
  53. "off": (
  54. "<emoji document_id='5458450833857322148'>👌</emoji> <b>Protection"
  55. " disabled</b>"
  56. ),
  57. "u_sure": (
  58. "<emoji document_id='6319093650693293883'>☣️</emoji> <b>Are you sure?</b>"
  59. ),
  60. }
  61. strings_ru = {
  62. "warning": (
  63. "<emoji document_id='6319093650693293883'>☣️</emoji>"
  64. " <b>ВНИМАНИЕ!</b>\n\nАккаунт вышел за лимиты запросов, указанные в"
  65. " конфиге. С целью предотвращения флуда Telegram API, юзербот был"
  66. " <b>полностью заморожен</b> на {} секунд. Дополнительная информация"
  67. " прикреплена в файле ниже. \n\nРекомендуется обратиться за помощью в"
  68. " <code>{prefix}support</code> группу!\n\nЕсли ты считаешь, что это"
  69. " запланированное поведение юзербота, просто подожди, пока закончится"
  70. " таймер и в следующий раз, когда запланируешь выполнять такую"
  71. " ресурсозатратную операцию, используй"
  72. " <code>{prefix}suspend_api_protect</code> &lt;время в секундах&gt;"
  73. ),
  74. "args_invalid": (
  75. "<emoji document_id='6319093650693293883'>☣️</emoji> <b>Неверные"
  76. " аргументы</b>"
  77. ),
  78. "suspended_for": (
  79. "<emoji document_id='5458450833857322148'>👌</emoji> <b>Защита API отключена"
  80. " на {} секунд</b>"
  81. ),
  82. "test": (
  83. "<emoji document_id='6319093650693293883'>☣️</emoji> <b>Это действие"
  84. " открывает юзерботу возможность флудить Telegram API.</b> <i>Для того,"
  85. " чтобы убедиться, что ты действительно уверен в том, что делаешь - реши"
  86. " простенький тест - найди отличающийся эмодзи.</i>"
  87. ),
  88. "on": (
  89. "<emoji document_id='5458450833857322148'>👌</emoji> <b>Защита включена</b>"
  90. ),
  91. "off": (
  92. "<emoji document_id='5458450833857322148'>👌</emoji> <b>Защита отключена</b>"
  93. ),
  94. "u_sure": (
  95. "<emoji document_id='6319093650693293883'>☣️</emoji> <b>Ты уверен?</b>"
  96. ),
  97. }
  98. _ratelimiter = []
  99. _suspend_until = 0
  100. _lock = False
  101. def __init__(self):
  102. self.config = loader.ModuleConfig(
  103. loader.ConfigValue(
  104. "time_sample",
  105. 15,
  106. lambda: "Time sample DO NOT TOUCH",
  107. validator=loader.validators.Integer(minimum=1),
  108. ),
  109. loader.ConfigValue(
  110. "threshold",
  111. 100,
  112. lambda: "Threshold DO NOT TOUCH",
  113. validator=loader.validators.Integer(minimum=10),
  114. ),
  115. loader.ConfigValue(
  116. "local_floodwait",
  117. 30,
  118. lambda: "Local FW DO NOT TOUCH",
  119. validator=loader.validators.Integer(minimum=10, maximum=3600),
  120. ),
  121. )
  122. async def client_ready(self):
  123. asyncio.ensure_future(self._install_protection())
  124. async def _install_protection(self):
  125. await asyncio.sleep(30) # Restart lock
  126. if hasattr(self._client._call, "_old_call_rewritten"):
  127. raise loader.SelfUnload("Already installed")
  128. old_call = self._client._call
  129. async def new_call(
  130. sender: "MTProtoSender", # type: ignore
  131. request: "TLRequest", # type: ignore
  132. ordered: bool = False,
  133. flood_sleep_threshold: int = None,
  134. ):
  135. if time.perf_counter() > self._suspend_until and not self.get(
  136. "disable_protection",
  137. True,
  138. ):
  139. request_name = type(request).__name__
  140. self._ratelimiter += [[request_name, time.perf_counter()]]
  141. self._ratelimiter = list(
  142. filter(
  143. lambda x: time.perf_counter() - x[1]
  144. < int(self.config["time_sample"]),
  145. self._ratelimiter,
  146. )
  147. )
  148. if (
  149. len(self._ratelimiter) > int(self.config["threshold"])
  150. and not self._lock
  151. ):
  152. self._lock = True
  153. report = io.BytesIO(
  154. json.dumps(
  155. self._ratelimiter,
  156. indent=4,
  157. ).encode("utf-8")
  158. )
  159. report.name = "local_fw_report.json"
  160. await self.inline.bot.send_document(
  161. self.tg_id,
  162. report,
  163. caption=self.strings("warning").format(
  164. self.config["local_floodwait"],
  165. prefix=self.get_prefix(),
  166. ),
  167. )
  168. # It is intented to use time.sleep instead of asyncio.sleep
  169. time.sleep(int(self.config["local_floodwait"]))
  170. self._lock = False
  171. return await old_call(sender, request, ordered, flood_sleep_threshold)
  172. self._client._call = new_call
  173. self._client._old_call_rewritten = old_call
  174. self._client._call._hikka_overwritten = True
  175. logger.debug("Successfully installed ratelimiter")
  176. async def on_unload(self):
  177. if hasattr(self._client, "_old_call_rewritten"):
  178. self._client._call = self._client._old_call_rewritten
  179. delattr(self._client, "_old_call_rewritten")
  180. logger.debug("Successfully uninstalled ratelimiter")
  181. @loader.command(ru_doc="<время в секундах> - Заморозить защиту API на N секунд")
  182. async def suspend_api_protect(self, message: Message):
  183. """<time in seconds> - Suspend API Ratelimiter for n seconds"""
  184. args = utils.get_args_raw(message)
  185. if not args or not args.isdigit():
  186. await utils.answer(message, self.strings("args_invalid"))
  187. return
  188. self._suspend_until = time.perf_counter() + int(args)
  189. await utils.answer(message, self.strings("suspended_for").format(args))
  190. @loader.command(ru_doc="Включить/выключить защиту API")
  191. async def api_fw_protection(self, message: Message):
  192. """Toggle API Ratelimiter"""
  193. await self.inline.form(
  194. message=message,
  195. text=self.strings("u_sure"),
  196. reply_markup=[
  197. {"text": "🚫 No", "action": "close"},
  198. {"text": "✅ Yes", "callback": self._finish},
  199. ],
  200. )
  201. async def _finish(self, call: InlineCall):
  202. state = self.get("disable_protection", True)
  203. self.set("disable_protection", not state)
  204. await call.edit(self.strings("on" if state else "off"))