2019-03-03 23:23:12 +00:00
|
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
|
|
import logging
|
2018-11-20 19:51:15 +00:00
|
|
|
|
from html import escape
|
2019-03-03 23:23:12 +00:00
|
|
|
|
from queue import Queue, Empty
|
2018-11-20 19:51:15 +00:00
|
|
|
|
from time import sleep
|
2019-03-03 23:23:12 +00:00
|
|
|
|
from threading import Thread
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
2019-03-03 23:23:12 +00:00
|
|
|
|
import sentry_sdk
|
2018-11-20 19:51:15 +00:00
|
|
|
|
from telegram.error import Unauthorized, TelegramError
|
2019-03-03 23:23:12 +00:00
|
|
|
|
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters, CallbackQueryHandler
|
|
|
|
|
from telegram import Message, Update, Bot, InlineKeyboardMarkup, InlineKeyboardButton, User
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
2019-03-03 23:23:12 +00:00
|
|
|
|
from config import BOT_TOKEN, SENTRY_DSN, MANAGEMENT_CHAT
|
|
|
|
|
from db import get_conn, Subscriber, PersistentMapping, commit
|
|
|
|
|
from send_users_list import send_users_list
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
|
|
|
|
|
2019-03-03 23:23:12 +00:00
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
|
|
|
queue = Queue()
|
|
|
|
|
sentry_sdk.init(dsn=SENTRY_DSN)
|
|
|
|
|
conn = get_conn()
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
2019-03-03 23:23:12 +00:00
|
|
|
|
MAX_MESSAGE_LENGTH = 4096
|
|
|
|
|
MAX_CAPTION_LENGTH = 1024
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
|
|
|
|
|
2019-03-03 23:23:12 +00:00
|
|
|
|
def _notify_access_request(bot: Bot, user: User):
|
|
|
|
|
markup = InlineKeyboardMarkup([[InlineKeyboardButton('Добавить', callback_data=f'add {user.id}')]])
|
|
|
|
|
bot.send_message(MANAGEMENT_CHAT, f'<a href="tg://user?id={user.id}">{escape(user.full_name)}</a> запросил доступ',
|
|
|
|
|
parse_mode='html', reply_markup=markup)
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
|
|
|
|
|
2019-03-03 23:23:12 +00:00
|
|
|
|
def welcome(bot: Bot, update: Update):
|
|
|
|
|
if update.effective_user.id in conn.root.subscribers:
|
|
|
|
|
update.message.reply_text('Вы уже являетесь участником ЛОНО')
|
|
|
|
|
else:
|
|
|
|
|
update.message.reply_text('Пожалуйста, обратитесь к @lono_contactbot')
|
|
|
|
|
_notify_access_request(bot, update.message.from_user)
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
|
|
|
|
|
2019-03-03 23:23:12 +00:00
|
|
|
|
def unsubscribe(bot: Bot, update: Update):
|
|
|
|
|
del conn.root.subscribers[update.message.chat_id]
|
|
|
|
|
commit()
|
|
|
|
|
update.message.reply_text('Вы были отписаны от бота. '
|
|
|
|
|
'Обратитесь к @lono_contactbot если вы хотите подписаться снова.')
|
|
|
|
|
user = update.message.from_user
|
|
|
|
|
bot.send_message(MANAGEMENT_CHAT, f'<a href="tg://user?id={user.id}">{escape(user.full_name)}</a> отписался')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def add_user(bot: Bot, update: Update, groups=(), args=()):
|
|
|
|
|
if update.callback_query:
|
|
|
|
|
update.callback_query.answer()
|
|
|
|
|
|
|
|
|
|
if groups:
|
|
|
|
|
if update.callback_query.message.chat.id != MANAGEMENT_CHAT:
|
|
|
|
|
return
|
|
|
|
|
uid = groups[0]
|
|
|
|
|
elif args:
|
|
|
|
|
uid = args[0]
|
|
|
|
|
elif update.message and update.message.reply_to_message and update.message.reply_to_message.forward_from:
|
|
|
|
|
uid = update.message.reply_to_message.forward_from.id
|
|
|
|
|
else:
|
|
|
|
|
return bot.send_message(MANAGEMENT_CHAT, 'Укажите ID пользователя или ответьте на его сообщение')
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
|
|
|
|
try:
|
2019-03-03 23:23:12 +00:00
|
|
|
|
uid = int(uid)
|
|
|
|
|
except (ValueError, TypeError):
|
2018-11-20 19:51:15 +00:00
|
|
|
|
pass
|
|
|
|
|
|
2019-03-03 23:23:12 +00:00
|
|
|
|
try:
|
|
|
|
|
user = conn.root.subscribers[uid] = Subscriber.from_chat(bot.get_chat(uid))
|
|
|
|
|
commit()
|
|
|
|
|
if update.callback_query:
|
|
|
|
|
update.callback_query.message.edit_reply_markup()
|
|
|
|
|
bot.send_message(MANAGEMENT_CHAT, f'<a href="tg://user?id={uid}">{escape(user.name)}</a> был добавлен',
|
|
|
|
|
parse_mode='html')
|
|
|
|
|
bot.send_message(uid, 'Добро пожаловать. Снова.')
|
|
|
|
|
except TelegramError as e:
|
|
|
|
|
bot.send_message(MANAGEMENT_CHAT, str(e))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def remove_user(bot: Bot, update: Update, groups=(), args=()):
|
|
|
|
|
if update.callback_query:
|
|
|
|
|
update.callback_query.answer()
|
|
|
|
|
|
|
|
|
|
if groups:
|
|
|
|
|
if update.callback_query.message.chat.id != MANAGEMENT_CHAT:
|
|
|
|
|
return
|
|
|
|
|
uid = groups[0]
|
|
|
|
|
elif args:
|
|
|
|
|
uid = args[0]
|
|
|
|
|
elif update.message and update.message.reply_to_message and update.message.reply_to_message.forward_from:
|
|
|
|
|
uid = update.message.reply_to_message.forward_from.id
|
|
|
|
|
else:
|
|
|
|
|
return bot.send_message(MANAGEMENT_CHAT, 'Укажите ID пользователя или ответьте на его сообщение')
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
uid = int(uid)
|
|
|
|
|
except (ValueError, TypeError):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
name = conn.root.subscribers[uid].name
|
|
|
|
|
del conn.root.subscribers[uid]
|
|
|
|
|
commit()
|
|
|
|
|
bot.send_message(MANAGEMENT_CHAT, f'<a href="tg://user?id={uid}">{escape(name)}</a> был удален',
|
|
|
|
|
parse_mode='html')
|
|
|
|
|
if update.callback_query:
|
|
|
|
|
update.callback_query.message.edit_reply_markup()
|
|
|
|
|
except KeyError:
|
|
|
|
|
bot.send_message(MANAGEMENT_CHAT, f'Пользователь id={uid} не был найден')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def users(bot: Bot, update: Update):
|
|
|
|
|
send_users_list()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def msg(bot: Bot, update: Update):
|
|
|
|
|
queue.put(update.message)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _sign_text(text, m: Message, limit):
|
|
|
|
|
if not text:
|
|
|
|
|
text = ''
|
|
|
|
|
|
2019-03-15 22:27:53 +00:00
|
|
|
|
sign = ''
|
2019-03-03 23:23:12 +00:00
|
|
|
|
if text.startswith('!sign') or text.startswith('/sign'):
|
2019-03-15 22:27:53 +00:00
|
|
|
|
sign = f'\n\n____________\n' \
|
2019-03-03 23:23:12 +00:00
|
|
|
|
f'by <a href="tg://user?id={m.from_user.id}">{escape(m.from_user.full_name)}</a>'
|
2019-03-15 22:27:53 +00:00
|
|
|
|
|
|
|
|
|
return text[:limit - len(sign)] + sign
|
2019-03-03 23:23:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _process_message(bot: Bot, m: Message):
|
|
|
|
|
current_chat = m.chat_id
|
|
|
|
|
users = conn.root.subscribers # type: PersistentMapping
|
|
|
|
|
if current_chat not in users:
|
|
|
|
|
_notify_access_request(bot, m.from_user)
|
|
|
|
|
return m.reply_text('Пожалуйста, обратитесь к @lono_contactbot')
|
|
|
|
|
|
|
|
|
|
text = _sign_text(m.text_html, m, MAX_MESSAGE_LENGTH)
|
|
|
|
|
caption = _sign_text(m.caption_html, m, MAX_CAPTION_LENGTH)
|
|
|
|
|
|
|
|
|
|
for uid, user in users.items():
|
|
|
|
|
if uid == current_chat:
|
|
|
|
|
continue
|
2019-01-01 13:38:07 +00:00
|
|
|
|
sleep(.02)
|
2018-11-20 19:51:15 +00:00
|
|
|
|
try:
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = None
|
|
|
|
|
if m.forward_date:
|
|
|
|
|
r = m.forward(uid)
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'audio') and m.audio:
|
|
|
|
|
a = m.audio
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = bot.send_audio(uid, a.file_id, a.duration, a.performer, a.title, caption, parse_mode='html')
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'document') and m.document:
|
|
|
|
|
d = m.document
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = bot.send_document(uid, d.file_id, d.file_name, caption, parse_mode='html')
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'photo') and m.photo:
|
|
|
|
|
p = m.photo
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = bot.send_photo(uid, p[-1].file_id, caption, parse_mode='html')
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'sticker') and m.sticker:
|
|
|
|
|
s = m.sticker
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = bot.send_sticker(uid, s.file_id)
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'video') and m.video:
|
|
|
|
|
v = m.video
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = bot.send_video(uid, v.file_id, v.duration, caption, parse_mode='html')
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'voice') and m.voice:
|
|
|
|
|
v = m.voice
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = bot.send_voice(uid, v.file_id, v.duration, caption, parse_mode='html')
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'video_note') and m.video_note:
|
|
|
|
|
vn = m.video_note
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = bot.send_video_note(uid, vn.file_id, vn.duration, vn.length)
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'contact') and m.contact:
|
|
|
|
|
c = m.contact
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = bot.send_contact(uid, c.phone_number, c.first_name, c.last_name)
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'location') and m.location:
|
|
|
|
|
l = m.location
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = bot.send_location(uid, l.latitude, l.longitude)
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'venue') and m.venue:
|
|
|
|
|
v = m.venue
|
2019-03-03 23:23:12 +00:00
|
|
|
|
l = v.location
|
|
|
|
|
r = bot.send_venue(uid, l.latitude, l.longitude, v.title, v.address, v.foursquare_id)
|
2018-11-20 19:51:15 +00:00
|
|
|
|
elif hasattr(m, 'text') and m.text:
|
2019-03-03 23:23:12 +00:00
|
|
|
|
r = bot.send_message(uid, text, 'html')
|
|
|
|
|
if r:
|
|
|
|
|
user.update_from_message(r)
|
2018-11-20 19:51:15 +00:00
|
|
|
|
except Unauthorized:
|
2019-03-15 14:43:52 +00:00
|
|
|
|
name = conn.root.subscribers[uid].name
|
|
|
|
|
del conn.root.subscribers[uid]
|
|
|
|
|
commit()
|
|
|
|
|
bot.send_message(MANAGEMENT_CHAT, f'<a href="tg://user?id={uid}">{name}</a> был удален '
|
|
|
|
|
f'из-за блокировки бота', parse_mode='html')
|
2018-11-20 19:51:15 +00:00
|
|
|
|
except TelegramError:
|
2019-03-03 23:23:12 +00:00
|
|
|
|
sentry_sdk.capture_exception()
|
|
|
|
|
|
|
|
|
|
commit()
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
|
|
|
|
|
2019-03-03 23:23:12 +00:00
|
|
|
|
def task_queue(u: Updater):
|
|
|
|
|
while True:
|
|
|
|
|
if not u.running:
|
|
|
|
|
return
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
2019-03-03 23:23:12 +00:00
|
|
|
|
try:
|
|
|
|
|
m = queue.get(timeout=1) # type: Message
|
|
|
|
|
_process_message(u.bot, m)
|
|
|
|
|
except Empty:
|
|
|
|
|
pass
|
|
|
|
|
except:
|
|
|
|
|
sentry_sdk.capture_exception()
|
2018-11-20 19:51:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-03-03 23:23:12 +00:00
|
|
|
|
updater = Updater(BOT_TOKEN, workers=4)
|
|
|
|
|
|
|
|
|
|
updater.dispatcher.add_handler(CommandHandler('start', welcome, Filters.private))
|
|
|
|
|
updater.dispatcher.add_handler(CommandHandler('stop', unsubscribe, Filters.private))
|
|
|
|
|
updater.dispatcher.add_handler(CommandHandler('add', add_user, Filters.chat(MANAGEMENT_CHAT)))
|
|
|
|
|
updater.dispatcher.add_handler(CallbackQueryHandler(add_user, pattern=r'^add (\d+)$', pass_groups=True))
|
|
|
|
|
updater.dispatcher.add_handler(CommandHandler('remove', remove_user, Filters.chat(MANAGEMENT_CHAT)))
|
|
|
|
|
updater.dispatcher.add_handler(CallbackQueryHandler(remove_user, pattern=r'^remove (\d+)$', pass_groups=True))
|
|
|
|
|
updater.dispatcher.add_handler(CommandHandler('users', users, Filters.chat(MANAGEMENT_CHAT)))
|
|
|
|
|
updater.dispatcher.add_handler(MessageHandler(Filters.private, msg))
|
|
|
|
|
|
2018-11-20 19:51:15 +00:00
|
|
|
|
updater.start_polling()
|
2019-03-03 23:23:12 +00:00
|
|
|
|
|
|
|
|
|
tq = Thread(target=task_queue, args=(updater,))
|
|
|
|
|
tq.start()
|
|
|
|
|
|
|
|
|
|
logging.warning('LONO has started')
|
2018-11-20 19:51:15 +00:00
|
|
|
|
updater.idle()
|
2019-03-03 23:23:12 +00:00
|
|
|
|
logging.warning('LONO is stopping...')
|
|
|
|
|
commit()
|
|
|
|
|
conn.close()
|