1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2024-11-24 08:12:13 +02:00
STARK/telegram_bot.py
MarkParker5 6654c59bb5 fix
2021-02-07 22:08:08 +02:00

76 lines
2.1 KiB
Python

#!/usr/local/bin/python3.8
from Command import Command
import SpeechRecognition
import Text2Speech
import telebot
import config
import modules
import time
threads = []
online = True
voids = 0
memory = []
voice = Text2Speech.Engine()
listener= SpeechRecognition.SpeechToText()
bot = telebot.TeleBot(config.telebot)
def reply(id, responce):
if responce['text']:
bot.send_message(id, responce['text'])
if responce['voice']:
bot.send_voice(id, voice.generate(responce['voice']).getBytes() )
if responce['type'] == 'background': # add background thread to list
responce['thread']['id'] = id
threads.append(responce['thread'])
def check_threads(threads):
for thread in threads:
if thread['finish_event'].is_set():
responce = thread['thread'].join()
reply(thread['id'], responce)
thread['finish_event'].clear()
del thread
def main(id, text):
text = text.lower()
if Command.isRepeat(text):
reply(id, memory[0]['responce']);
return
if memory:
responce = memory[0]['responce']
if responce['type'] == 'question':
if new_responce := responce['callback'].answer(text):
reply(id, new_responce)
memory.insert(0, {
'cmd': responce['callback'],
'params': None,
'responce': new_responce,
})
return
try:
cmd, params = memory[0]['cmd'].checkContext(text).values()
if memory[0].get('params'): params = {**memory[0].get('params'), **params}
except:
cmd, params = Command.reg_find(text).values()
responce = cmd.start(params)
reply(id, responce)
memory.insert(0, {
'cmd': cmd,
'params': params,
'responce': responce,
})
@bot.message_handler(content_types = ['text'])
def execute(msg):
main(msg.chat.id, msg.text)
while True:
try:
print("Start polling...")
bot.polling(callback = check_threads, args = (threads,) )
except:
time.sleep(10)
print("Polling failed")