try
This commit is contained in:
3
daemons/base.py
Normal file
3
daemons/base.py
Normal file
@@ -0,0 +1,3 @@
|
||||
class BaseDaemon:
|
||||
def execute(self):
|
||||
raise NotImplementedError
|
||||
27
daemons/mailbox.py
Normal file
27
daemons/mailbox.py
Normal file
@@ -0,0 +1,27 @@
|
||||
import telebot
|
||||
import os
|
||||
|
||||
from daemons import base
|
||||
from utils import queues
|
||||
|
||||
|
||||
class Daemon(base.BaseDaemon, queues.TasksHandlerMixin):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
self.bot = telebot.TeleBot(os.getenv("TELEGRAM_TOKEN"))
|
||||
|
||||
@property
|
||||
def queue_name(self):
|
||||
return 'pizda_bot_mailbox'
|
||||
|
||||
def execute(self):
|
||||
self.poll()
|
||||
|
||||
def process(self, payload):
|
||||
body = {
|
||||
'chat_id': payload['chat_id'],
|
||||
'text': payload['message'],
|
||||
}
|
||||
if payload['action'] == 'reply':
|
||||
body['reply_to_message_id'] = payload['reply_to']
|
||||
self.bot.send_message(**body)
|
||||
16
daemons/poll.py
Normal file
16
daemons/poll.py
Normal file
@@ -0,0 +1,16 @@
|
||||
import os
|
||||
import json
|
||||
import telebot
|
||||
|
||||
from daemons import base
|
||||
from telebot import types
|
||||
from utils import queues
|
||||
|
||||
|
||||
class Daemon(base.BaseDaemon):
|
||||
def execute(self):
|
||||
bot = telebot.TeleBot(os.getenv("TELEGRAM_TOKEN"))
|
||||
@bot.message_handler()
|
||||
def do_action(message: types.Message):
|
||||
queues.set_task('pizda_bot_worker', message.json, 1)
|
||||
bot.polling()
|
||||
148
daemons/worker.py
Normal file
148
daemons/worker.py
Normal file
@@ -0,0 +1,148 @@
|
||||
import datetime
|
||||
import os
|
||||
from random import randrange, choice
|
||||
from daemons import base
|
||||
from utils import queues
|
||||
from telebot.types import Message
|
||||
import json
|
||||
|
||||
from mongo import mongo
|
||||
from sprint_platform import PlatformClient
|
||||
from storage import set_values, get_chat_info
|
||||
|
||||
security_token = os.getenv("PLATFORM_SECURITY_TOKEN")
|
||||
stage = os.getenv("STAGE", 'local')
|
||||
|
||||
|
||||
client = PlatformClient(
|
||||
security_token,
|
||||
'Pizda Bot',
|
||||
stage,
|
||||
['constants', 'answers', 'replies'],
|
||||
[],
|
||||
need_poll=True,
|
||||
)
|
||||
|
||||
|
||||
all_letters = "йцукенгшщзхъёфывапролджэячсмитьбюЙЦУКЕНГШЩЗХЪЁФЫВАПРОЛДЖЭЯЧСМИТЬБЮQWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890 "
|
||||
|
||||
|
||||
def get_self_name():
|
||||
return client.get_config('constants')['self_name']
|
||||
|
||||
|
||||
def get_answers():
|
||||
return client.get_config('answers')
|
||||
|
||||
|
||||
def get_replies():
|
||||
return client.get_config('replies')
|
||||
|
||||
|
||||
class Daemon(base.BaseDaemon, queues.TasksHandlerMixin):
|
||||
@property
|
||||
def queue_name(self):
|
||||
return 'pizda_bot_worker'
|
||||
|
||||
def execute(self):
|
||||
self.poll()
|
||||
|
||||
def reply(text: str, chat_id: int, message_id: int):
|
||||
queues.set_task(
|
||||
'pizda_bot_mailbox',
|
||||
{
|
||||
'action': 'reply',
|
||||
'message': text,
|
||||
'reply_to': message_id,
|
||||
'chat_id': chat_id
|
||||
},
|
||||
1,
|
||||
)
|
||||
|
||||
def send(text: str, chat_id: int):
|
||||
queues.set_task(
|
||||
'pizda_bot_mailbox',
|
||||
{
|
||||
'action': 'send',
|
||||
'message': text,
|
||||
'chat_id': chat_id
|
||||
},
|
||||
1,
|
||||
)
|
||||
|
||||
def process_command(self, message: Message):
|
||||
if message.text.startswith('/pointers'):
|
||||
rating = list(mongo.counter_collection.find({"chat_id": message.chat.id, "points": {"$exists": True}}).sort("points", -1))
|
||||
if not rating:
|
||||
self.send('Ебаллы пока никому не начислялись', message.chat.id)
|
||||
return
|
||||
text = "Рейтинг Ебальников:\n"
|
||||
rating_arr = list(enumerate(rating))
|
||||
total = 0
|
||||
for _, value in rating_arr:
|
||||
total += value['points']
|
||||
for index, value in rating_arr:
|
||||
text += f"{index + 1}. @{value['username']} - {value['points']}\n"
|
||||
self.send(text, message.chat.id)
|
||||
elif message.text.startswith('/point'):
|
||||
if not message.reply_to_message:
|
||||
self.reply('Чтобы начислить Ебаллы, нужно прописать команду ответом на чье-то сообщение', message.chat.id, message.message_id)
|
||||
return
|
||||
username = message.reply_to_message.from_user.username
|
||||
if username == get_self_name():
|
||||
self.reply('Ты конченый? Как я себе Ебаллы то начислю, мудила? Мамке своей Ебаллы начисляй, пидор!', message.chat.id, message.message_id)
|
||||
return
|
||||
mongo.inc_points(username, message.chat.id)
|
||||
self.reply('Ты конченый? Как я себе Ебаллы то начислю, мудила? Мамке своей Ебаллы начисляй, пидор!', message.chat.id, message.reply_to_message.message_id)
|
||||
elif message.text.startswith('/rating'):
|
||||
rating = list(mongo.counter_collection.find({"chat_id": message.chat.id}).sort("count", -1))
|
||||
if not rating:
|
||||
self.send('В этом чате я пока никому не парировал', message.chat.id)
|
||||
return
|
||||
text = "Вот кому я парировал:\n"
|
||||
rating_arr = list(enumerate(rating))
|
||||
total = 0
|
||||
for _, value in rating_arr:
|
||||
total += value['count']
|
||||
for index, value in rating_arr:
|
||||
text += f"{index + 1}. @{value['username']} - {value['count']} ({int(value['count'] / total * 100)}%)\n"
|
||||
self.send(text, message.chat.id)
|
||||
elif message.text.startswith('/setprobability'):
|
||||
self.send('Отправь одно число - вероятность парирования', message.chat.id)
|
||||
set_values(message.chat.id, state="set_probability")
|
||||
|
||||
def process(self, payload):
|
||||
message: Message = Message.de_json(json.dumps(payload))
|
||||
if message.text.startswith('/'):
|
||||
self.process_command(message)
|
||||
return
|
||||
if message.reply_to_message:
|
||||
if message.reply_to_message.from_user.username == get_self_name():
|
||||
self.reply(choice(get_replies()), message.chat.id, message.message_id)
|
||||
return
|
||||
info = get_chat_info(message.chat.id)
|
||||
if client.get_config('updater')['enabled']:
|
||||
set_values(message.chat.id, last_time_updated=datetime.datetime.now())
|
||||
if message.text == '#debug' and client.is_staff(telegram_id=message.from_user.id):
|
||||
self.reply(f'chat id: {message.chat.id}\nprobability: {info["probability"]}', message.chat.id, message.message_id)
|
||||
return
|
||||
if info['state'] == "set_probability":
|
||||
try:
|
||||
value = int(message.text)
|
||||
if value < 0 or value > 100:
|
||||
self.reply('Число не попадает в диапозон от 0 до 100!', message.chat.id, message.message_id)
|
||||
else:
|
||||
set_values(message.chat.id, probability=value, state="default")
|
||||
self.reply('Ок! Установил', message.chat.id, message.message_id)
|
||||
except ValueError:
|
||||
self.reply('Это не число!', message.chat.id, message.message_id)
|
||||
return
|
||||
convert_text = ''.join([letter for letter in message.text if letter in all_letters]).lower().split()
|
||||
if len(convert_text) > 0:
|
||||
convert_text = convert_text[-1]
|
||||
else:
|
||||
return
|
||||
ans = get_answers().get(convert_text)
|
||||
if ans is not None and randrange(1, 101) <= info["probability"]:
|
||||
self.reply(ans, message.chat.id, message.message_id)
|
||||
mongo.inc(message.from_user.username, message.chat.id)
|
||||
Reference in New Issue
Block a user