Compare commits
2 Commits
prod
...
cab8e15ba8
| Author | SHA1 | Date | |
|---|---|---|---|
| cab8e15ba8 | |||
| d3d92f56ee |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -119,6 +119,3 @@ GitHub.sublime-settings
|
|||||||
.history
|
.history
|
||||||
|
|
||||||
local_platform.json
|
local_platform.json
|
||||||
|
|
||||||
*pb2*
|
|
||||||
schemas
|
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
import pydantic
|
|
||||||
|
|
||||||
from telebot import apihelper
|
from telebot import apihelper
|
||||||
|
|
||||||
from daemons import base
|
from daemons import base
|
||||||
@@ -7,13 +5,6 @@ from utils import platform
|
|||||||
from utils import queues
|
from utils import queues
|
||||||
|
|
||||||
|
|
||||||
class Message(pydantic.BaseModel):
|
|
||||||
project: str
|
|
||||||
name: str
|
|
||||||
body: dict
|
|
||||||
method: str = 'send_message'
|
|
||||||
|
|
||||||
|
|
||||||
class Daemon(base.Daemon, queues.TasksHandlerMixin):
|
class Daemon(base.Daemon, queues.TasksHandlerMixin):
|
||||||
def execute(self):
|
def execute(self):
|
||||||
self.poll()
|
self.poll()
|
||||||
@@ -22,19 +13,18 @@ class Daemon(base.Daemon, queues.TasksHandlerMixin):
|
|||||||
def queue_name(self):
|
def queue_name(self):
|
||||||
return 'botalka_mailbox'
|
return 'botalka_mailbox'
|
||||||
|
|
||||||
def process(self, payload: dict):
|
def process(self, payload):
|
||||||
message = Message.model_validate(payload)
|
bot = platform.platform_client.get_config('bots')[payload['project']][payload['name']]
|
||||||
bot = platform.platform_client.get_config('bots')[message.project][message.name]
|
|
||||||
if not bot['mailbox_enabled']:
|
if not bot['mailbox_enabled']:
|
||||||
return
|
return
|
||||||
if bot['type'] == 'telegram':
|
if bot['type'] == 'telegram':
|
||||||
token = bot['secrets']['telegram_token']
|
token = bot['secrets']['telegram_token']
|
||||||
self.process_telegram(token, message.method, message.body)
|
self.process_telegram(token, payload['body'])
|
||||||
else:
|
else:
|
||||||
print('Unknown bot type:', bot['type'])
|
print('Unknown bot type:', bot['type'])
|
||||||
|
|
||||||
def process_telegram(self, token, method, payload):
|
def process_telegram(self, token, payload):
|
||||||
try:
|
try:
|
||||||
getattr(apihelper, method)(token, **payload)
|
apihelper.send_message(token, **payload)
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
print('Error', str(exc))
|
print('Error', str(exc))
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import telebot
|
import telebot
|
||||||
import multiprocessing
|
import threading
|
||||||
import time
|
import time
|
||||||
import json
|
|
||||||
|
|
||||||
from daemons import base
|
from daemons import base
|
||||||
from utils import platform
|
from utils import platform
|
||||||
@@ -10,37 +9,45 @@ from utils import queues
|
|||||||
|
|
||||||
class Daemon(base.Daemon):
|
class Daemon(base.Daemon):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.processes: dict[str, multiprocessing.Process|None] = {}
|
self.telegram_bots: dict[str, dict[str, telebot.TeleBot|None]] = {}
|
||||||
|
self.threads: dict[str, dict[str, threading.Thread|None]] = {}
|
||||||
|
|
||||||
def execute(self):
|
def execute(self):
|
||||||
while True:
|
while True:
|
||||||
bots = platform.platform_client.get_config('bots')
|
bots = platform.platform_client.get_config('bots')
|
||||||
for project_name, project in bots.items():
|
for project_name, project in bots.items():
|
||||||
|
if project_name not in self.telegram_bots:
|
||||||
|
self.telegram_bots[project_name] = {}
|
||||||
|
self.threads[project_name] = {}
|
||||||
for bot_name, bot_info in project.items():
|
for bot_name, bot_info in project.items():
|
||||||
key = f'{project_name}_{bot_name}'
|
if bot_name not in self.telegram_bots[project_name]:
|
||||||
proc = self.processes.get(key)
|
self.telegram_bots[project_name][bot_name] = None
|
||||||
|
self.threads[project_name][bot_name] = None
|
||||||
|
bot = self.telegram_bots[project_name][bot_name]
|
||||||
if bot_info.get('poll_enabled'):
|
if bot_info.get('poll_enabled'):
|
||||||
if proc and proc.is_alive():
|
if bot is not None and self.threads[project_name][bot_name].is_alive():
|
||||||
print(f'process for {project_name} {bot_name} is alive')
|
print(f'process for {project_name} {bot_name} is alive')
|
||||||
continue
|
continue
|
||||||
print(f'starting process for {project_name} {bot_name}')
|
print(f'starting process for {project_name} {bot_name}')
|
||||||
process = multiprocessing.Process(target=self.start_polling, args=(bot_info['secrets']['telegram_token'], bot_info['queue']))
|
bot = telebot.TeleBot(bot_info['secrets']['telegram_token'])
|
||||||
process.start()
|
thread = self.start_polling(bot, bot_info['queue'])
|
||||||
self.processes[key] = process
|
self.telegram_bots[project_name][bot_name] = bot
|
||||||
|
self.threads[project_name][bot_name] = thread
|
||||||
print(f'started process for {project_name} {bot_name}')
|
print(f'started process for {project_name} {bot_name}')
|
||||||
else:
|
else:
|
||||||
if proc is None:
|
if bot is None:
|
||||||
print(f'process for {project_name} {bot_name} is not alive')
|
print(f'process for {project_name} {bot_name} is not alive')
|
||||||
continue
|
continue
|
||||||
print(f'terminating process for {project_name} {bot_name}')
|
print(f'terminating process for {project_name} {bot_name}')
|
||||||
proc.terminate()
|
bot.stop_bot()
|
||||||
self.processes[key] = None
|
self.telegram_bots[project_name][bot_name] = None
|
||||||
print(f'terminated process for {project_name} {bot_name}')
|
print(f'terminated process for {project_name} {bot_name}')
|
||||||
time.sleep(10)
|
time.sleep(10)
|
||||||
|
|
||||||
def start_polling(self, token: str, queue: str):
|
def start_polling(self, bot: telebot.TeleBot, queue: str) -> threading.Thread:
|
||||||
bot = telebot.TeleBot(token)
|
@bot.message_handler()
|
||||||
@bot.message_handler(content_types=['audio', 'photo', 'voice', 'video', 'document', 'animation', 'text', 'location', 'contact', 'sticker', 'video_note'])
|
|
||||||
def do_action(message: telebot.types.Message):
|
def do_action(message: telebot.types.Message):
|
||||||
queues.set_task(queue, message.json, 1)
|
queues.set_task(queue, message.json, 1)
|
||||||
bot.polling()
|
thread = threading.Thread(target=bot.polling)
|
||||||
|
thread.start()
|
||||||
|
return thread
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
annotated-types==0.7.0
|
certifi==2024.8.30
|
||||||
certifi==2024.12.14
|
|
||||||
charset-normalizer==3.4.0
|
charset-normalizer==3.4.0
|
||||||
idna==3.10
|
idna==3.10
|
||||||
pydantic==2.10.4
|
|
||||||
pydantic_core==2.27.2
|
|
||||||
pyTelegramBotAPI==4.1.1
|
pyTelegramBotAPI==4.1.1
|
||||||
requests==2.32.3
|
requests==2.32.3
|
||||||
typing_extensions==4.12.2
|
urllib3==2.2.3
|
||||||
urllib3==2.3.0
|
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
from concurrent.futures import ThreadPoolExecutor
|
|
||||||
import datetime
|
|
||||||
import json
|
|
||||||
import os
|
import os
|
||||||
import traceback
|
|
||||||
import uuid
|
|
||||||
import zoneinfo
|
|
||||||
import requests
|
import requests
|
||||||
import time
|
import time
|
||||||
|
|
||||||
@@ -21,55 +15,24 @@ class QueuesException(Exception):
|
|||||||
|
|
||||||
|
|
||||||
class TasksHandlerMixin:
|
class TasksHandlerMixin:
|
||||||
def __init__(self, *args, **kwargs):
|
|
||||||
super().__init__(*args, **kwargs)
|
|
||||||
self.executor = ThreadPoolExecutor(max_workers=1)
|
|
||||||
|
|
||||||
def _send_metric(self, start: datetime.datetime, end: datetime.datetime, success: bool):
|
|
||||||
def send():
|
|
||||||
requests.post(f'{QUEUES_URL}/api/v1/metric', json={
|
|
||||||
'service': 'botalka',
|
|
||||||
'queue': self.queue_name,
|
|
||||||
'success': success,
|
|
||||||
'timestamp': start.strftime("%Y-%m-%dT%H:%M:%S") + "Z",
|
|
||||||
"success": success,
|
|
||||||
"execution_time_ms": (end - start).microseconds // 1000,
|
|
||||||
"environment": stage,
|
|
||||||
})
|
|
||||||
|
|
||||||
self.executor.submit(send)
|
|
||||||
|
|
||||||
def poll(self):
|
def poll(self):
|
||||||
while True:
|
while True:
|
||||||
try:
|
|
||||||
response = requests.get(f'{QUEUES_URL}/api/v1/take', headers={'queue': self.queue_name}).json()
|
response = requests.get(f'{QUEUES_URL}/api/v1/take', headers={'queue': self.queue_name}).json()
|
||||||
except requests.JSONDecodeError:
|
|
||||||
print('Unable to decode json')
|
|
||||||
time.sleep(3)
|
|
||||||
continue
|
|
||||||
task = response.get('task')
|
task = response.get('task')
|
||||||
if not task:
|
if not task:
|
||||||
time.sleep(0.2)
|
time.sleep(0.2)
|
||||||
continue
|
continue
|
||||||
start = datetime.datetime.now(zoneinfo.ZoneInfo("Europe/Moscow"))
|
|
||||||
try:
|
try:
|
||||||
print(f'process task with id {task["id"]}, attempt {task["attempt"]}')
|
|
||||||
self.process(task['payload'])
|
self.process(task['payload'])
|
||||||
success = True
|
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
print(f'Error processing message id={task["id"]}, payload={task["payload"]}, exc={exc}')
|
print(f'Error processing message id={task["id"]}, payload={task["payload"]}, exc={exc}')
|
||||||
traceback.print_stack()
|
continue
|
||||||
success = False
|
|
||||||
end = datetime.datetime.now(zoneinfo.ZoneInfo("Europe/Moscow"))
|
|
||||||
if success:
|
|
||||||
try:
|
try:
|
||||||
resp = requests.post(f'{QUEUES_URL}/api/v1/finish', json={'id': task['id']})
|
resp = requests.post(f'{QUEUES_URL}/api/v1/finish', json={'id': task['id']})
|
||||||
if resp.status_code != 202:
|
if resp.status_code != 202:
|
||||||
raise QueuesException
|
raise QueuesException
|
||||||
print(f'finish task with id {task["id"]}')
|
|
||||||
except:
|
except:
|
||||||
print(f'Failed to finish task id={task["id"]}')
|
print(f'Failed to finish task id={task["id"]}')
|
||||||
self._send_metric(start, end, success)
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def queue_name(self):
|
def queue_name(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user