-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrun_remote_telegrambot.py
279 lines (225 loc) · 12.9 KB
/
run_remote_telegrambot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
import telebot
from telebot import types # для указание типов
import json
import random
import time
import requests
version = "1.3"
# options
with open('options.json', 'r', encoding="utf-8") as f:
s = f.read(10000000)
f.close()
saved_options = json.loads(s)
ttsFormat = saved_options["ttsFormat"] # "none" (TTS on server) or "saytxt" (TTS on client)
# or "saywav" (TTS on server to WAV, Wav played on client)
ttsFormat = "saytxt" # for Telegram logic is only saytxt needed
ttsFormatList = ttsFormat.split(",")
baseUrl = saved_options["baseUrl"] # server with Irene WEB api
from jaa import load_options
default_options = {
"adminChats": [],
"allowAddAdmins": False,
"voiceMsgProcessor": "none",
"botKey": "",
"menu": "привет,погода",
"imageProcessor": "showDefaultApp",
}
options_tele = load_options(options_file='options_telegrambot.json',default_options=default_options)
def save_options_tele(new_options_tele):
options_tele = new_options_tele
str_options = json.dumps(options_tele, sort_keys=True, indent=4, ensure_ascii=False)
with open('options_telegrambot.json', 'w', encoding="utf-8") as f:
f.write(str_options)
f.close()
if options_tele["botKey"] == "":
print("Не найден ключ бота. Посетите @BotFather и сгенерируйте ключ для вашего бота")
exit()
print("Текущих чатов с администратором: {0}".format(len(options_tele["adminChats"])))
randKeyAdmin = str(random.randint(100000,999999))
if options_tele["allowAddAdmins"]:
print("Ключ для подключения администратора (введите в диалоге с ботом): ",randKeyAdmin)
else:
print("Подключение новых администраторов ЗАБЛОКИРОВАНО. Для добавления других админов отредактируйте options_telegrambot.json")
isVoicePlayingEnabled = False
if options_tele["voiceMsgProcessor"] == "play":
try:
import play_wav
isVoicePlayingEnabled = True
except ImportError:
pass
if isVoicePlayingEnabled:
print("Озвучка полученных голосовых сообщений РАБОТАЕТ")
else:
print("Озвучка полученных голосовых сообщений НЕ работает")
isVoskRecEnabled = False
if options_tele["voiceMsgProcessor"] == "rec_vosk":
try:
import play_wav
import os
# проверка наличия модели на нужном языке в каталоге приложения
if not os.path.exists("model"):
print("Please download the model from:\n"
"https://alphacephei.com/vosk/models and unpack as 'model' in the current folder.")
raise Exception()
from vosk import Model, KaldiRecognizer # оффлайн-распознавание от Vosk
model = Model("model")
isVoskRecEnabled = True
except Exception:
pass
if isVoskRecEnabled:
print("VOSK-распознавание голосовых сообщений РАБОТАЕТ")
else:
print("VOSK-распознавание голосовых сообщений НЕ работает")
bot = telebot.TeleBot(options_tele["botKey"])
latestRec = ""
print("Remote Irene (Telegram client) v{0} started! ttsFormat={1}, baseUrl={2}".format(version,ttsFormat,baseUrl))
def send_cmd_towebapi(cmd,message):
voice_input_str = cmd
if voice_input_str != "" and voice_input_str != None:
print(voice_input_str)
try:
r = requests.get(baseUrl+"sendTxtCmd", params={"cmd": voice_input_str, "returnFormat": ttsFormat})
processed = False
if r.text != "":
res = json.loads(r.text)
if res != "NO_VA_NAME": # some cmd was run
if res != None and res != "": # there is some response to play
if "saytxt" in ttsFormatList:
if "restxt" in res.keys():
markup = types.ReplyKeyboardRemove()
restxt = str(res["restxt"])
if restxt.endswith("Да или нет?"):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
btn1 = types.KeyboardButton("Да")
btn2 = types.KeyboardButton("Нет")
markup.add(btn1, btn2)
bot.send_message(message.chat.id, res["restxt"],reply_markup=markup)
processed = True
# отправка, что сообщение проиграно
requests.get(baseUrl+"replyWasGiven", params={})
if not processed:
bot.send_message(message.chat.id, "Не распознано / нет ответа")
except requests.ConnectionError as e:
bot.send_message(message.chat.id, "Ошибка связи с Web api")
except Exception as e:
bot.send_message(message.chat.id, "Ошибка обработки сообщения")
else:
#print("2",rec.PartialResult())
pass
@bot.message_handler(content_types=['photo'])
def get_image_messages(message):
if message.chat.id in options_tele["adminChats"]:
if options_tele["imageProcessor"] == "showDefaultApp":
file_info = bot.get_file(message.photo[-1].file_id)
downloaded_file = bot.download_file(file_info.file_path)
with open('temp_photo.jpg', 'wb') as new_file:
new_file.write(downloaded_file)
import os
filepath = os.path.dirname(__file__)+"/temp_photo.jpg"
import subprocess, os, platform
if platform.system() == 'Darwin': # macOS
subprocess.call(('open', filepath))
elif platform.system() == 'Windows': # Windows
os.startfile(filepath)
else: # linux variants
subprocess.call(('xdg-open', filepath))
@bot.message_handler(content_types=['text'])
def get_text_messages(message):
if message.chat.id in options_tele["adminChats"]:
if message.text == "/runrecognized":
send_cmd_towebapi(latestRec,message)
elif message.text == "/playwav" or message.text == "Проиграть WAV":
play_wav.play_wav("temp_voice.wav")
bot.send_message(message.chat.id, "Сообщение проиграно", reply_markup=types.ReplyKeyboardRemove())
elif message.text.lower() == "m" or message.text.lower() == "м" or message.text == "/":
ar_menu = str(options_tele["menu"]).split(",")
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
for el in ar_menu:
markup.add(types.KeyboardButton(el))
#menu_cmds = types.MenuButtonCommands()
bot.send_message(message.chat.id, "Типовые команды", reply_markup=markup)
else:
send_cmd_towebapi(message.text.lower(),message)
else:
time.sleep(1)
if options_tele["allowAddAdmins"]:
if message.text == randKeyAdmin:
options_tele["adminChats"].append(message.chat.id)
options_tele["allowAddAdmins"] = False
save_options_tele(options_tele)
bot.send_message(message.chat.id, "Вы добавлены как администратор. Добавление других администраторов заблокировано. Для добавления других админов отредактируйте options_telegrambot.json.")
bot.send_message(message.chat.id, "Для отправки команды Ирине просто введите команду в чат.")
else:
bot.send_message(message.chat.id, "?")
else:
bot.send_message(message.chat.id, "Доступ заблокирован")
def use_vosk_recognition(wavfilename):
import wave # создание и чтение аудиофайлов формата wav
recognized_data = ""
try:
# анализ записанного в микрофон аудио (чтобы избежать повторов фразы)
wave_audio_file = wave.open(wavfilename, "rb")
if wave_audio_file.getnchannels() != 1 or wave_audio_file.getsampwidth() != 2 or wave_audio_file.getcomptype() != "NONE":
print ("Audio file must be WAV format mono PCM.")
offline_recognizer = KaldiRecognizer(model, wave_audio_file.getframerate())
#print(wave_audio_file.getframerate())
data = wave_audio_file.readframes(wave_audio_file.getnframes())
if len(data) > 0:
offline_recognizer.AcceptWaveform(data)
recognized_data = offline_recognizer.Result()
recognized_data = json.loads(recognized_data)
recognized_data = recognized_data["text"]
except:
print("Sorry, speech service is unavailable. Try again later")
return recognized_data
@bot.message_handler(content_types=['voice'])
def voice_processing(message):
if message.chat.id in options_tele["adminChats"]:
if options_tele["voiceMsgProcessor"] == "none": # формат - проигрывание полученных сообщений
bot.send_message(message.chat.id, "Обработка голосовых сообщений не установлена (может быть установлена в проигрывание (play) или распознавание команд (rec_vosk)")
if options_tele["voiceMsgProcessor"] == "play": # формат - проигрывание полученных сообщений
if isVoicePlayingEnabled:
file_info = bot.get_file(message.voice.file_id)
downloaded_file = bot.download_file(file_info.file_path)
with open('temp_voice.ogg', 'wb') as new_file:
new_file.write(downloaded_file)
import subprocess
process = subprocess.run(['ffmpeg', '-i', "temp_voice.ogg", "temp_voice.wav", '-y'])
if process.returncode != 0:
bot.send_message(message.chat.id, "Проблемы с перекодированием голосового сообщения")
else:
play_wav.play_wav("temp_voice.wav")
bot.send_message(message.chat.id, "Сообщение проиграно")
else:
bot.send_message(message.chat.id, "Проигрывание голосовых файлов не работает")
if options_tele["voiceMsgProcessor"] == "rec_vosk": # формат - распознавание vosk
if isVoskRecEnabled:
file_info = bot.get_file(message.voice.file_id)
downloaded_file = bot.download_file(file_info.file_path)
with open('temp_voice.ogg', 'wb') as new_file:
new_file.write(downloaded_file)
import subprocess
process = subprocess.run(['ffmpeg', '-i', "temp_voice.ogg",
#'-ar', '16000',
'-ac', '1',
#'-acodec', 'pcm_s16le',
"temp_voice.wav", '-y'])
if process.returncode != 0:
bot.send_message(message.chat.id, "Проблемы с перекодированием голосового сообщения")
else:
voice_inp_str = use_vosk_recognition("temp_voice.wav")
print("Распознанная фраза: ",voice_inp_str)
global latestRec
latestRec = voice_inp_str
#send_cmd_towebapi(voice_inp_str,message)
# старый вариант сообщения
#bot.send_message(message.chat.id, "Распознано: "+latestRec+". Нажмите /runrecognized или <a href=\"/playwav\">проиграть WAV</a>", parse_mode="HTML")
# новый вариант с клавиатурой
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
btn1 = types.KeyboardButton(latestRec.capitalize())
btn2 = types.KeyboardButton("Проиграть WAV")
markup.add(btn1, btn2)
bot.send_message(message.chat.id, "Распознано: "+latestRec+".",reply_markup=markup)
else:
bot.send_message(message.chat.id, "Распознавание голосовых файлов (VOSK) не работает")
bot.infinity_polling()