-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.py
179 lines (135 loc) · 6.52 KB
/
bot.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
import logging
import os
from telegram import ReplyKeyboardMarkup, ReplyKeyboardRemove
from telegram.ext import Updater, CommandHandler, MessageHandler, ConversationHandler, RegexHandler, Filters
import receipt
import json
import traceback
from io import BytesIO
import hashlib
import datetime
import sys
import db
from environment import phone, password, webhook_port, webhook_base_url, token
import google_api
# Enable logging
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
level=logging._nameToLevel[
os.environ.get("LOG_LEVEL", "DEBUG")])
logger = logging.getLogger(__name__)
BARCODE, LOGIN, REPEAT = range(3)
def _get_document_bytes(query, data):
bytes_ = BytesIO()
res = list(map(lambda e: json.dumps(
e, indent=None, ensure_ascii=False), data))
h = hashlib.md5(query.encode('utf8'))
bytes_.name = "receipt_%s_%s.txt" % (
datetime.date.today(), h.hexdigest()[0:8])
bytes_.writelines(map(lambda e: e.encode('utf8'), res))
bytes_.seek(0)
return bytes_
def login(bot, update):
update.message.reply_text(
"Нажмите на ссылку, чтобы я получил права к гугл документам для записи детализации чека в таблицу")
chat_id = update.message.chat_id
url = google_api.auth_url(chat_id)
update.message.reply_text(url)
def is_logged_in(bot, update):
update.message.reply_text("yes" if google_api.is_auth(
update.message.chat_id) else "no")
def start_processing(bot, update):
update.message.reply_text('Введите текст из баркода с чека',
reply_markup=ReplyKeyboardMarkup([['/cancel']]))
return BARCODE
def repeat(bot, update, user_data):
logger.debug("Repeat answer %s" % (update.message.text))
if update.message.text == 'нет':
update.message.reply_text(
'Хорошо, буду ждать другого чека.', reply_markup=ReplyKeyboardRemove())
return ConversationHandler.END
user_data['repeat'] = update.message.text == 'да'
update.message.text = user_data['receipt']
update.message.reply_text(
'Хорошо, запишем еще раз', reply_markup=ReplyKeyboardMarkup([['/cancel']]))
return receipt_info(bot, update, user_data)
def receipt_info(bot, update, user_data):
logger.debug("receive %s" % update.message.text)
if not google_api.fetch_token(update.message.chat_id):
login(bot, update)
return ConversationHandler.END
try:
rec = receipt.get_receipt(update.message.text)
if db.is_receipt_processed(rec.key) and 'repeat' not in user_data:
reply_keyboard = [['да', 'нет'], ['/cancel']]
update.message.reply_text(
'Этот чек уже обрабатывался. Записать его еще раз?',
reply_markup=ReplyKeyboardMarkup(reply_keyboard, one_time_keyboard=True))
user_data['receipt'] = update.message.text
return REPEAT
fetched, rec = receipt.fetch_and_build_details(rec)
if fetched:
chat_id = update.message.chat_id
# doc = _get_document_bytes(update.message.text, data)
# bot.send_document(chat_id=chat_id, document=doc)
rows = []
for r in rec.entries:
rows.append(list(map(lambda k: r[k], receipt.header)))
update.message.reply_text(
"Начал записывать чек в гугл таблицу", quote=True)
url = google_api.append_rows(chat_id, rows, receipt.header)
db.mark_receipt_as_processed(rec.key)
update.message.reply_text(
"Чек с %d записями был записан в документ %s. Ссылка - %s" % (
len(rows), google_api.SPREADSHEET_NAME, url),
quote=True)
else:
update.message.reply_text(
"Такого чека не существует. Возможно он был распечатан больше месяца назад или он еще не дошел до налоговой.",
quote=True)
except receipt.QueryException as qe:
update.message.reply_text(str(qe), quote=True)
update.message.reply_text("Повторите ввода текста")
return BARCODE
except (TimeoutError, ConnectionError) as ec:
update.message.reply_text(
'Проблемы с соединением. Повторите запрос позже.')
return BARCODE
except Exception as e:
logger.error(e)
update.message.reply_text(
"Упс! У меня какие то проблемы. Обратитесь к разработчику на гитхабе - https://github.com/patsak/tg-receipt-bot")
traceback.print_exc(file=sys.stdout)
finally:
user_data.clear()
update.message.reply_text(
"Обработка чека закончена. Введите /send_receipt, чтобы добавить новый.", reply_markup=ReplyKeyboardRemove())
return ConversationHandler.END
def cancel(bot, update, user_data):
update.message.reply_text(
'Больше не жду данных с чека. Если потребуется ввести новые данные нажмите /send_receipt', reply_markup=ReplyKeyboardRemove())
user_data.clear()
return ConversationHandler.END
def main():
if not receipt.signin(phone, password):
exit(1)
updater = Updater(token)
dp = updater.dispatcher
dp.add_handler(ConversationHandler(
entry_points=[CommandHandler('send_receipt', start_processing)],
states={
BARCODE: [MessageHandler(Filters.text, receipt_info, pass_user_data=True)],
REPEAT: [RegexHandler('^(да|нет)$', repeat, pass_user_data=True)],
},
fallbacks=[CommandHandler('cancel', cancel, pass_user_data=True)]))
dp.add_handler(CommandHandler("sign_in", login))
dp.add_handler(CommandHandler("is_logged_in", is_logged_in))
if webhook_base_url:
updater.start_webhook(listen="0.0.0.0",
port=webhook_port,
webhook_url=webhook_base_url + "/" + token)
updater.bot.set_webhook(webhook_base_url + "/" + token)
else:
updater.start_polling()
updater.idle()
if __name__ == "__main__":
main()