openkriemy.py 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. from asyncio import run, sleep
  2. from telethon import TelegramClient
  3. from telethon.events import NewMessage
  4. from telethon.utils import resolve_bot_file_id
  5. from actions import get_all_birthdays
  6. from utils import (
  7. parse_command,
  8. get_link_to_user,
  9. calculate_age,
  10. Kind
  11. )
  12. from config import config
  13. from db import init_db
  14. from actions import (
  15. find_action,
  16. get_random_gif,
  17. is_admin
  18. )
  19. from commands import COMMANDS
  20. bot = TelegramClient(
  21. 'openkriemy',
  22. config.API_ID,
  23. config.API_HASH
  24. ).start(bot_token=config.API_TOKEN)
  25. @bot.on(NewMessage)
  26. async def on_message(event):
  27. try:
  28. command = parse_command(event.text)
  29. except ValueError:
  30. return
  31. handler = COMMANDS.get(command.name, None)
  32. if handler:
  33. if handler.is_restricted\
  34. and not await is_admin(bot, event.sender):
  35. await event.reply('К сожалению, данная команда Вам недоступна.')
  36. else:
  37. await handler.handler(bot, event, command)
  38. return
  39. try:
  40. action = await find_action(command.name)
  41. except SyntaxError:
  42. return
  43. if not action:
  44. return
  45. reply_to = None
  46. target = None
  47. if action.kind != Kind.NO_TARGET:
  48. target = await event.get_reply_message()
  49. if not target:
  50. try:
  51. target = await bot.get_entity(command.args[0])
  52. except (ValueError, IndexError):
  53. if action.kind != Kind.NO_TARGET_MAYBE:
  54. await event.reply('Это действие нужно применить на кого-то!')
  55. return
  56. else:
  57. reply_to = target
  58. target = target.sender
  59. if target is None:
  60. target = await bot.get_entity(event.peer_id.channel_id)
  61. if action.kind == Kind.CANNOT_APPLY_TO_SELF\
  62. and target.id == event.sender.id:
  63. await event.reply('Данное действие нельзя применять к самому себе...')
  64. return
  65. try:
  66. await event.delete()
  67. except:
  68. pass
  69. if event.sender is None:
  70. initiator = await bot.get_entity(event.peer_id.channel_id)
  71. initiator = initiator.title
  72. else:
  73. initiator = get_link_to_user(event.sender)
  74. text = action.template.format(**{
  75. 'initiator': initiator,
  76. 'target': get_link_to_user(target) if target else ''
  77. })
  78. gif = await get_random_gif(action)
  79. if gif:
  80. gif = resolve_bot_file_id(gif.file_id)
  81. await bot.send_message(
  82. event.peer_id,
  83. message=text,
  84. file=gif,
  85. reply_to=reply_to
  86. )
  87. # cursed
  88. async def notify_birthdays():
  89. while True:
  90. birthdays = await get_all_birthdays()
  91. for birthday in birthdays:
  92. age = calculate_age(birthday.date)
  93. if age.days_until < 1:
  94. try:
  95. try:
  96. entity = await bot.get_entity(birthday.user_id)
  97. except ValueError:
  98. await bot.get_participants(birthday.peer_id)
  99. entity = await bot.get_entity(birthday.user_id)
  100. await bot.send_message(
  101. birthday.peer_id,
  102. f'{get_link_to_user(entity)}, поздравляю с днём рождения!!~~'
  103. )
  104. except:
  105. pass
  106. await sleep(60 * 60 * 24) # 24 hours.
  107. with bot:
  108. bot.loop.run_until_complete(init_db())
  109. bot.loop.create_task(notify_birthdays())
  110. bot.start()
  111. bot.run_until_disconnected()