Files
conf_bot/worker.py

252 lines
9.7 KiB
Python
Raw Normal View History

2018-02-04 07:13:09 +03:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from string import punctuation
import subprocess
from database import DataBase
import os
import urllib.request
from urllib.parse import urlencode
import requests
import json
2018-02-04 07:13:09 +03:00
import settings
2018-02-19 17:22:55 +03:00
import re
2018-02-04 07:13:09 +03:00
from pygments import highlight
from pygments.lexers import PythonLexer
2018-07-30 15:28:06 +02:00
from pygments.lexers import guess_lexer, get_lexer_by_name
from pygments.styles import get_style_by_name
from pygments.formatters import ImageFormatter
2018-08-03 15:15:35 +03:00
2018-02-04 07:13:09 +03:00
class MessageWorker:
2018-08-03 15:15:35 +03:00
def __init__(self, db, stop_words='assets/stop-word.ru', settings=settings):
2018-02-04 07:13:09 +03:00
self.stop_words = stop_words
self.db = db
self.telegram_key = settings.parser.get('bot', 'telegram_key')
self.telegram_api = settings.parser.get('bot', 'telegram_api')
self.me = self.getMe()
print("My name is %s" % self.me['result']['username'])
def getMe(self):
2018-08-03 15:15:35 +03:00
url = self.telegram_api + 'bot' + self.telegram_key + '/getMe'
print(url)
urllib.request.Request(url)
request = urllib.request.Request(url)
raw = urllib.request.urlopen(request).read().decode()
return json.loads(raw)
2018-02-04 07:13:09 +03:00
def handleUpdate(self, msg):
try:
try:
2018-08-20 15:50:10 +02:00
input_message = msg['message']['text']
if ('@here' in input_message) or (' @'+self.me['result']['username'] in input_message):
conf_id = msg['message']['chat']['id']
user_id = msg['message']['from']['id']
chat_title = msg['message']['chat']['title']
self.db.add_conf(conf_id, chat_title)
if msg['message']['text'] != '@here':
message = msg['message']['text'].replace('@here', '\n').replace(' @'+self.me['result']['username'], '\n')
else:
message = """I summon you!\n"""
users = self.db.here(
user_id=user_id,
conf_id=conf_id
)
for user in users:
message += ' @%s ' % (user[0])
self.send(id=conf_id, msg=message)
return True
2018-08-03 15:15:35 +03:00
input_message = msg['message']['text'].replace(
'@' + self.me['result']['username'], '')
except:
input_message = msg['message']['text']
if input_message == '/scheme':
2018-02-26 19:13:04 +01:00
conf_id = msg['message']['chat']['id']
user_id = msg['message']['from']['id']
chat_title = msg['message']['chat']['title']
self.db.add_conf(conf_id, chat_title)
self.send(id=conf_id, msg='```\n' + self.db.scheme + '\n```')
return True
if input_message == '/stat':
2018-02-04 07:13:09 +03:00
conf_id = msg['message']['chat']['id']
user_id = msg['message']['from']['id']
chat_title = msg['message']['chat']['title']
self.db.add_conf(conf_id, chat_title)
message = """Here is your top:\n"""
top = self.db.get_top(
user_id=user_id,
conf_id=conf_id
)
for word in top:
message += '*%s*: %s\n' % (word[1], word[0])
self.send(id=conf_id, msg=message)
return True
2018-02-19 18:24:38 +03:00
if input_message == '/reset':
2018-02-19 18:24:38 +03:00
conf_id = msg['message']['chat']['id']
user_id = msg['message']['from']['id']
chat_title = msg['message']['chat']['title']
self.db.add_conf(conf_id, chat_title)
message = """Your stat has been resetted."""
self.db.reset(
conf_id=conf_id,
user_id=user_id)
return True
if input_message[:4] == '/sql':
2018-02-26 15:50:32 +01:00
conf_id = msg['message']['chat']['id']
user_id = msg['message']['from']['id']
chat_title = msg['message']['chat']['title']
self.db.add_conf(conf_id, chat_title)
sql = msg['message']['text'][5:]
res = self.db.command(sql)
2018-02-26 19:13:04 +01:00
if 'syntax' in str(res) \
2018-08-03 15:15:35 +03:00
or 'ambiguous' in str(res):
self.send(id=conf_id, msg=str(res))
return False
2018-02-26 15:50:32 +01:00
try:
2018-08-03 15:15:35 +03:00
msg = '```\n'
for z in res:
for i in z:
msg = msg + str(i) + '\t'
msg = msg + '\n'
2018-02-26 15:50:32 +01:00
except:
2018-08-03 15:15:35 +03:00
msg = res
2018-02-26 15:50:32 +01:00
self.send(id=conf_id, msg=msg + ' ```')
return True
2018-08-20 15:50:10 +02:00
# if '@here' in input_message:
# conf_id = msg['message']['chat']['id']
# user_id = msg['message']['from']['id']
# chat_title = msg['message']['chat']['title']
# self.db.add_conf(conf_id, chat_title)
# if msg['message']['text'] != '@here':
# message = msg['message']['text'].replace('@here', '\n')
# else:
# message = """I summon you!\n"""
2018-02-19 17:22:55 +03:00
2018-08-20 15:50:10 +02:00
# users = self.db.here(
# user_id=user_id,
# conf_id=conf_id
# )
# for user in users:
# message += ' @%s ' % (user[0])
# self.send(id=conf_id, msg=message)
# return True
if input_message[:5] == '/code':
conf_id = msg['message']['chat']['id']
user_id = msg['message']['from']['id']
chat_title = msg['message']['chat']['title']
self.db.add_conf(conf_id, chat_title)
if len(msg['message']['text'][6:]) < 10000:
code = msg['message']['text'][6:]
2018-08-03 15:15:35 +03:00
code_tag = code[code.rfind('#') + 1:]
try:
2018-08-03 15:15:35 +03:00
lexer = get_lexer_by_name(code_tag)
code = code[:code.rfind('#')]
print("Lexer is defined as %s" % lexer)
except:
2018-08-03 15:15:35 +03:00
lexer = guess_lexer(code)
print("lexer is %s" % lexer)
if lexer.name == 'Text only':
lexer = get_lexer_by_name('python')
highlight(code, lexer, ImageFormatter(
2018-08-03 15:15:35 +03:00
font_size=16,
line_number_bg="#242e0c",
line_number_fg="#faddf2",
line_number_bold=True,
font_name='DejaVuSansMono',
style=get_style_by_name('monokai')), outfile="code.png")
self.send_img(conf_id)
return True
2018-02-04 07:13:09 +03:00
except:
return False
try:
text = msg['message']['text']
try:
username = msg['message']['from']['username']
except:
username = "_null"
2018-02-04 07:13:09 +03:00
try:
last_name = msg['message']['from']['last_name']
except:
last_name = '_null'
try:
first_name = msg['message']['from']['first_name']
except:
first_name = '_null'
user_id = msg['message']['from']['id']
chat_id = msg['message']['chat']['id']
chat_title = msg['message']['chat']['title']
except:
return False
2018-08-03 15:15:35 +03:00
2018-02-04 07:13:09 +03:00
collection = self.clean_text(text)
2018-08-03 15:15:35 +03:00
2018-02-04 07:13:09 +03:00
self.db.add_user(username,
2018-08-03 15:15:35 +03:00
user_id,
first_name,
last_name)
2018-02-04 07:13:09 +03:00
self.db.add_conf(chat_id, chat_title)
for word in collection:
self.db.add_relation(word=word, user_id=user_id, conf_id=chat_id)
2018-08-03 15:15:35 +03:00
2018-02-04 07:13:09 +03:00
def clean_text(self, s):
file = open(self.stop_words, 'rt')
sw = file.read().split('\n')
file.close()
2018-08-03 15:15:35 +03:00
s = re.sub(
r'(https?:\/\/)?([\da-z\.-]+)\.([\/\w\.-]*)*\/?\S', '', s, flags=re.MULTILINE)
2018-02-19 17:22:55 +03:00
print(s)
2018-02-04 07:13:09 +03:00
# dirty hack with dat fucking file
2018-08-03 15:15:35 +03:00
fh = open("tmp.txt", "w")
2018-02-04 07:13:09 +03:00
fh.write(s)
fh.close()
cmd = "./assets/mystem -nlwd < tmp.txt"
2018-08-03 15:15:35 +03:00
ps = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE)
2018-02-04 07:13:09 +03:00
output = ps.communicate()[0]
os.remove("tmp.txt")
# end of the fuckin' dirty hack
s = output.decode('utf8')
s = s.replace('?', '')
s = s.split('\n')
collection = []
for word in s:
2018-08-03 15:15:35 +03:00
if len(word) > 2:
2018-02-04 07:13:09 +03:00
if word not in sw:
collection.append(word)
else:
pass
else:
pass
return collection
def send(self, id, msg):
2018-08-03 15:15:35 +03:00
# print(msg)
url = self.telegram_api + 'bot' + self.telegram_key + '/sendMessage'
2018-02-04 07:13:09 +03:00
post_fields = {
'text': msg,
'chat_id': id,
'parse_mode': 'Markdown',
'disable_web_page_preview': 1
2018-08-03 15:15:35 +03:00
}
2018-02-04 07:13:09 +03:00
urllib.request.Request(url, urlencode(post_fields).encode())
request = urllib.request.Request(url, urlencode(post_fields).encode())
json = urllib.request.urlopen(request).read().decode()
return json
def send_img(self, id):
2018-08-03 15:15:35 +03:00
url = self.telegram_api + 'bot' + self.telegram_key + '/sendPhoto'
data = {'chat_id': id}
files = {'photo': open('code.png', 'rb')}
r = requests.post(url, files=files, data=data)