openkriemy.py 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. from random import random, randint
  2. from asyncio import sleep
  3. from datetime import datetime, timedelta, date, time
  4. from telethon import TelegramClient
  5. from telethon.events import NewMessage, InlineQuery
  6. from telethon.utils import resolve_bot_file_id, get_peer_id
  7. from actions import get_all_birthdays
  8. from utils import parse_command, get_link_to_user, calculate_age, Kind
  9. from config import config
  10. from db import init_db
  11. from actions import (
  12. find_action,
  13. get_random_gif,
  14. is_admin,
  15. is_allowed,
  16. is_markov_enabled,
  17. get_markov_option,
  18. list_markov_chats,
  19. markov_say,
  20. run
  21. )
  22. from commands import COMMANDS
  23. from markov import Markov
  24. bot = TelegramClient("openkriemy", config.API_ID, config.API_HASH).start(
  25. bot_token=config.API_TOKEN
  26. )
  27. markov = Markov()
  28. # Wait isn't that illegal??
  29. bot.markov = markov
  30. @bot.on(InlineQuery)
  31. async def on_inline_query(event):
  32. await event.answer([
  33. event.builder.article("Результат.", await run(event.text)),
  34. ])
  35. @bot.on(NewMessage)
  36. async def on_message(event):
  37. peer_id = get_peer_id(event.peer_id)
  38. text = event.text
  39. try:
  40. command = parse_command(text)
  41. except ValueError:
  42. if await is_markov_enabled(peer_id):
  43. markov.extend_corpus(text)
  44. for word in config.MARKOV_TRIGGER_WORDS:
  45. if word.lower() in text.lower() and random() > 0.5:
  46. await markov_say(bot, peer_id, reply_to=event)
  47. return
  48. reply_prob = await get_markov_option(peer_id, "opt_reply_prob")
  49. reply = await event.get_reply_message()
  50. if (
  51. reply and get_peer_id(reply.from_id) == await bot.get_peer_id("me") and random() > 0.5
  52. ) or random() > reply_prob:
  53. await markov_say(bot, peer_id, reply_to=event)
  54. return
  55. handler = COMMANDS.get(command.name, None)
  56. if handler and handler.is_public:
  57. await handler.handler(bot, event, command)
  58. return
  59. if not await is_allowed(peer_id):
  60. if not handler or not handler.is_restricted:
  61. return
  62. if handler:
  63. if handler.is_restricted and not await is_admin(bot, event.sender):
  64. await event.reply("К сожалению, данная команда Вам недоступна.")
  65. else:
  66. await handler.handler(bot, event, command)
  67. return
  68. try:
  69. action = await find_action(command.name)
  70. except SyntaxError:
  71. return
  72. if not action:
  73. return
  74. reply_to = None
  75. target = None
  76. if action.kind != Kind.NO_TARGET:
  77. target = await event.get_reply_message()
  78. if not target:
  79. try:
  80. target = await bot.get_entity(command.args[0])
  81. except (ValueError, IndexError):
  82. if action.kind != Kind.NO_TARGET_MAYBE:
  83. await event.reply("Это действие нужно применить на кого-то!")
  84. return
  85. else:
  86. reply_to = target
  87. target = target.sender
  88. if target is None:
  89. target = await bot.get_entity(event.peer_id.channel_id)
  90. if action.kind == Kind.CANNOT_APPLY_TO_SELF and target.id == event.sender.id:
  91. await event.reply("Данное действие нельзя применять к самому себе...")
  92. return
  93. try:
  94. await event.delete()
  95. except:
  96. pass
  97. if event.sender is None:
  98. initiator = await bot.get_entity(event.peer_id.channel_id)
  99. initiator = initiator.title
  100. else:
  101. initiator = get_link_to_user(event.sender)
  102. text = action.template.format(
  103. **{"initiator": initiator, "target": get_link_to_user(target) if target else ""}
  104. )
  105. gif = await get_random_gif(action)
  106. if gif:
  107. gif = resolve_bot_file_id(gif.file_id)
  108. await bot.send_message(event.peer_id, message=text, file=gif, reply_to=reply_to)
  109. async def notify_birthdays():
  110. birthdays = await get_all_birthdays()
  111. for birthday in birthdays:
  112. age = calculate_age(birthday.date)
  113. if age.days_until < 1:
  114. try:
  115. try:
  116. entity = await bot.get_entity(birthday.user_id)
  117. except ValueError:
  118. await bot.get_participants(birthday.peer_id)
  119. entity = await bot.get_entity(birthday.user_id)
  120. await bot.send_message(
  121. birthday.peer_id,
  122. f"{get_link_to_user(entity)}, поздравляю с днём рождения!!~~",
  123. )
  124. except:
  125. pass
  126. async def notify_birthdays_loop():
  127. interval = datetime.combine(date.today(), time(hour=0, minute=0))
  128. while True:
  129. await sleep(((interval - datetime.now()) % timedelta(days=1)).total_seconds())
  130. await notify_birthdays()
  131. async def markov_say_loop():
  132. while True:
  133. await sleep(randint(30, 60 * 5))
  134. for chat in await list_markov_chats():
  135. if random() > chat.opt_message_prob:
  136. await markov_say(bot, chat.peer_id)
  137. with bot:
  138. bot.loop.run_until_complete(init_db())
  139. bot.loop.create_task(notify_birthdays_loop())
  140. bot.loop.create_task(markov_say_loop())
  141. bot.start()
  142. bot.run_until_disconnected()