-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
371 lines (279 loc) · 19.2 KB
/
main.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
import re
from io import BytesIO
from functools import partial
import qrcode
import telebot
from PIL import Image
from pyzbar.pyzbar import decode
from config import TOKEN
from tools import create_cancel_keyboard
# Ініціалізація бота
bot = telebot.TeleBot(TOKEN)
bot.set_my_commands([
telebot.types.BotCommand('/start', 'Привітання'),
telebot.types.BotCommand('/help', 'Інструкція по використанню бота'),
telebot.types.BotCommand('/create_qr_for_parcel', 'Створення QR-коду для посилки'),
telebot.types.BotCommand('/create_qr', 'Створення QR-коду за Вашими даними'),
telebot.types.BotCommand('/scan_qr', 'Сканування QR-коду'),
])
# Збереження стану користувача
user_data = {}
# Регулярні вирази для перевірки ПІБ і номеру телефону
pib_pattern = re.compile(r'^[А-ЯІЇЄҐа-яіїєґ\']+ [А-ЯІЇЄҐа-яіїєґ\']+ [А-ЯІЇЄҐа-яіїєґ\']+$')
phone_pattern = re.compile(r'^\+38 \(\d{3}\) \d{3}-\d{2}-\d{2}$')
def handle_qr_creation(bot, message):
if 'msgs' not in user_data.get(message.chat.id, {}):
return
user_data[message.chat.id]['message'] = message.text
for msg_id in user_data[message.chat.id]['msgs']:
bot.delete_message(message.chat.id, msg_id)
bot.delete_message(message.chat.id, message.message_id)
# Генерація QR-коду
qr_data = user_data[message.chat.id]['message']
qr = qrcode.QRCode(version=1, box_size=10, border=5)
qr.add_data(qr_data)
qr.make(fit=True)
img = qr.make_image(fill='black', back_color='white')
# Збереження зображення у BytesIO об'єкт
img_byte_arr = BytesIO()
img.save(img_byte_arr)
img_byte_arr.seek(0)
# Відправка зображення QR-коду користувачу
bot.send_photo(message.chat.id, img_byte_arr, caption=f'Створений QR-код за вашими даними: \n\n{qr_data}')
user_data.pop(message.chat.id, None)
@bot.message_handler(commands=['start'])
def start_command(message):
bot.reply_to(message, 'Вітаю! Цей бот - це частина дипломної роботи Лунгова Олександра Віталійовича про логістичні перевезення \nВикористайте команду /help для виведення списку доступних команд')
@bot.message_handler(commands=['help'])
def help_command(message):
bot.reply_to(message, '/start - привітання \n/help - інструкція по використанню бота \n/create_qr_for_parcel - створення QR-коду для посилки \n/create_qr - створення QR-коду за Вашими даними \n/scan_qr - сканування QR-коду')
@bot.message_handler(commands=['create_qr_for_parcel'])
def send_welcome(message):
user_data[message.chat.id] = {'msgs': []}
msg = bot.send_message(message.chat.id, 'Введіть ПІБ відправника, наприклад: \nПетренко Петро Петрович', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
@bot.message_handler(commands=['create_qr'])
def send_welcome(message):
user_data[message.chat.id] = {'msgs': []}
msg = bot.send_message(message.chat.id, 'Введіть повідомлення, яке треба закодувати', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
bot.register_next_step_handler(msg, partial(handle_qr_creation, bot))
@bot.message_handler(commands=['scan_qr'])
def scan_qr_command(message):
bot.send_message(message.chat.id, 'Надішліть QR-код (фото або файл)')
@bot.callback_query_handler(func=lambda call: call.data == 'cancel')
def cancel_callback(call):
bot.answer_callback_query(call.id, 'Дію скасовано')
bot.delete_message(chat_id=call.message.chat.id, message_id=call.message.message_id)
if call.message.chat.id in user_data:
user_data.pop(call.message.chat.id, None)
@bot.callback_query_handler(func=lambda call: call.data == "send_contact")
def request_contact(call):
markup = telebot.types.ReplyKeyboardMarkup(one_time_keyboard=True, resize_keyboard=True)
markup.add(telebot.types.KeyboardButton('Надіслати контакт', request_contact=True))
msg = bot.send_message(call.message.chat.id, 'Натисніть кнопку, щоб надіслати свій контакт:', reply_markup=markup)
user_data[call.message.chat.id]['msgs'].append(msg.message_id)
@bot.message_handler(content_types=['contact'])
def get_contact(message):
if 'msgs' not in user_data.get(message.chat.id, {}):
return
msg = bot.send_message(message.chat.id, "Ваш контакт отримано!", reply_markup=telebot.types.ReplyKeyboardRemove())
user_data[message.chat.id]['msgs'].append(msg.message_id)
for msg_id in user_data[message.chat.id]['msgs']:
bot.delete_message(message.chat.id, msg_id)
bot.delete_message(message.chat.id, message.message_id)
phone = message.contact.phone_number
phone = "+" + phone if not phone.startswith("+") else phone
formatted_phone = f'+38 ({phone[3:6]}) {phone[6:9]}-{phone[9:11]}-{phone[11:13]}'
if phone_pattern.match(formatted_phone):
if 'pib' in user_data[message.chat.id] and 'phone' not in user_data[message.chat.id] \
and 'pib_receiver' not in user_data[message.chat.id] and 'phone_receiver' not in user_data[message.chat.id]:
msg_help = user_data[message.chat.id]['pib']
msg = bot.send_message(message.chat.id, f'Ваші дані: \n\nПІБ відправника: {msg_help} \nТелефон відправника: {formatted_phone}')
user_data[message.chat.id]['msgs'] = [msg.message_id]
user_data[message.chat.id]['phone'] = formatted_phone
msg = bot.send_message(message.chat.id, 'Введіть ПІБ отримувача', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
if 'pib' in user_data[message.chat.id] and 'phone' in user_data[message.chat.id] \
and 'pib_receiver' in user_data[message.chat.id] and 'phone_receiver' not in user_data[message.chat.id]:
pib_help = user_data[message.chat.id]['pib']
phone_help = user_data[message.chat.id]['phone']
pib_receiver_help = user_data[message.chat.id]['pib_receiver']
msg = bot.send_message(message.chat.id, f'Ваші дані: \n\nПІБ відправника: {pib_help} \nТелефон відправника: {phone_help} \nПІБ отримувача: {pib_receiver_help} \nТелефон отримувача: {formatted_phone} ')
user_data[message.chat.id]['msgs'] = [msg.message_id]
user_data[message.chat.id]['phone_receiver'] = formatted_phone
msg = bot.send_message(message.chat.id, 'Введіть адресу доставки', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
else:
msg = bot.send_message(message.chat.id, f'Ваші дані: \n\nПІБ: {message.text}')
user_data[message.chat.id]['msgs'].append(msg.message_id)
msg = bot.send_message(message.chat.id, 'Некоректний формат номеру телефону. Будь ласка, введіть номер у форматі +38 (000) 000-00-00', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
@bot.message_handler(content_types=['photo', 'document'])
def handle_qr_code(message):
try:
if message.content_type == 'photo':
file_info = bot.get_file(message.photo[-1].file_id)
elif message.content_type == 'document' and message.document.mime_type.startswith('image/'):
file_info = bot.get_file(message.document.file_id)
else:
bot.send_message(message.chat.id, "Неправильний формат файлу. Надішліть зображення QR-коду")
return
downloaded_file = bot.download_file(file_info.file_path)
# Відкриття зображення
img = Image.open(BytesIO(downloaded_file))
# Декодування QR-коду
decoded_objects = decode(img)
if decoded_objects:
for obj in decoded_objects:
data = obj.data.decode('utf-8')
# Перевірка типу даних
if re.match(r'^https?://', data):
bot.reply_to(message, f"Це посилання: {data}")
else:
bot.reply_to(message, f"{data}")
else:
bot.send_message(message.chat.id, "Не вдалося зчитати QR-код. Спробуйте ще раз")
except Exception as e:
bot.send_message(message.chat.id, f"Виникла помилка при зчитуванні QR-коду")
@bot.message_handler(func=lambda message: message.chat.id in user_data
and 'pib' not in user_data[message.chat.id])
def get_pib(message):
if 'msgs' not in user_data.get(message.chat.id, {}):
return
if pib_pattern.match(message.text):
for msg_id in user_data[message.chat.id]['msgs']:
bot.delete_message(message.chat.id, msg_id)
bot.delete_message(message.chat.id, message.message_id)
msg = bot.send_message(message.chat.id, f'Ваші дані: \n\nПІБ відправника: {message.text}')
user_data[message.chat.id]['msgs'] = [msg.message_id]
user_data[message.chat.id]['pib'] = message.text
markup = telebot.types.InlineKeyboardMarkup()
button_send_contact = telebot.types.InlineKeyboardButton("Надіслати контакт", callback_data="send_contact")
button_cancel = telebot.types.InlineKeyboardButton("Скасувати", callback_data="cancel")
markup.row(button_send_contact, button_cancel)
msg = bot.send_message(message.chat.id, 'Тепер введіть номер телефону відправника у форматі +38 (000) 000-00-00 або надішліть свій контакт через Telegram',reply_markup=markup)
user_data[message.chat.id]['msgs'].append(msg.message_id)
else:
msg = bot.send_message(message.chat.id, 'Некоректний формат ПІБ. Будь ласка, спробуйте ще раз', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
user_data[message.chat.id]['msgs'].append(msg.message_id-1)
@bot.message_handler(func=lambda message: message.chat.id in user_data
and 'phone' not in user_data[message.chat.id])
def get_phone(message):
if 'msgs' not in user_data.get(message.chat.id, {}):
return
if phone_pattern.match(message.text):
for msg_id in user_data[message.chat.id]['msgs']:
bot.delete_message(message.chat.id, msg_id)
bot.delete_message(message.chat.id, message.message_id)
msg_help = user_data[message.chat.id]['pib']
msg = bot.send_message(message.chat.id, f'Ваші дані: \n\nПІБ відправника: {msg_help} \nТелефон відправника: {message.text}')
user_data[message.chat.id]['msgs'] = [msg.message_id]
user_data[message.chat.id]['phone'] = message.text
msg = bot.send_message(message.chat.id, 'Введіть ПІБ отримувача', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
else:
msg = bot.send_message(message.chat.id, 'Некоректний формат номеру телефону. Будь ласка, введіть номер у форматі +38 (000) 000-00-00', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
@bot.message_handler(func=lambda message: message.chat.id in user_data
and 'pib_receiver' not in user_data[message.chat.id]
and 'pib' in user_data[message.chat.id])
def get_pib(message):
if 'msgs' not in user_data.get(message.chat.id, {}):
return
if pib_pattern.match(message.text):
for msg_id in user_data[message.chat.id]['msgs']:
bot.delete_message(message.chat.id, msg_id)
bot.delete_message(message.chat.id, message.message_id)
msg_pib = user_data[message.chat.id]['pib']
msg_phone = user_data[message.chat.id]['phone']
msg = bot.send_message(message.chat.id, f'Ваші дані: \n\nПІБ відправника: {msg_pib} \nТелефон відправника: {msg_phone} \nПІБ отримувача: {message.text}')
user_data[message.chat.id]['msgs'] = [msg.message_id]
user_data[message.chat.id]['pib_receiver'] = message.text
markup = telebot.types.InlineKeyboardMarkup()
button_send_contact = telebot.types.InlineKeyboardButton("Надіслати контакт", callback_data="send_contact")
button_cancel = telebot.types.InlineKeyboardButton("Скасувати", callback_data="cancel")
markup.row(button_send_contact, button_cancel)
msg = bot.send_message(message.chat.id, 'Тепер введіть номер телефону отримувача у форматі +38 (000) 000-00-00 або надішліть свій контакт через Telegram',reply_markup=markup)
user_data[message.chat.id]['msgs'].append(msg.message_id)
else:
msg = bot.send_message(message.chat.id, 'Некоректний формат ПІБ. Будь ласка, спробуйте ще раз', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
user_data[message.chat.id]['msgs'].append(msg.message_id-1)
@bot.message_handler(func=lambda message: message.chat.id in user_data
and 'phone_receiver' not in user_data[message.chat.id]
and 'phone' in user_data[message.chat.id])
def get_phone(message):
if 'msgs' not in user_data.get(message.chat.id, {}):
return
if phone_pattern.match(message.text):
for msg_id in user_data[message.chat.id]['msgs']:
bot.delete_message(message.chat.id, msg_id)
bot.delete_message(message.chat.id, message.message_id)
pib_help = user_data[message.chat.id]['pib']
phone_help = user_data[message.chat.id]['phone']
pib_receiver_help = user_data[message.chat.id]['pib_receiver']
msg = bot.send_message(message.chat.id, f'Ваші дані: \n\nПІБ відправника: {pib_help} \nТелефон відправника: {phone_help} \nПІБ отримувача: {pib_receiver_help} \nТелефон отримувача: {message.text} ')
user_data[message.chat.id]['msgs'] = [msg.message_id]
user_data[message.chat.id]['phone_receiver'] = message.text
msg = bot.send_message(message.chat.id, 'Введіть адресу доставки', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
else:
msg = bot.send_message(message.chat.id, 'Некоректний формат номеру телефону. Будь ласка, введіть номер у форматі +38 (000) 000-00-00', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
@bot.message_handler(func=lambda message: message.chat.id in user_data
and 'pib' in user_data[message.chat.id]
and 'phone' in user_data[message.chat.id]
and 'pib_receiver' in user_data[message.chat.id]
and 'phone_receiver' in user_data[message.chat.id]
and 'adress' not in user_data[message.chat.id])
def get_adress(message):
if 'msgs' not in user_data.get(message.chat.id, {}):
return
for msg_id in user_data[message.chat.id]['msgs']:
bot.delete_message(message.chat.id, msg_id)
bot.delete_message(message.chat.id, message.message_id)
pib_help = user_data[message.chat.id]['pib']
phone_help = user_data[message.chat.id]['phone']
pib_receiver_help = user_data[message.chat.id]['pib_receiver']
phone_receiver_help = user_data[message.chat.id]['phone_receiver']
msg = bot.send_message(message.chat.id, f'Ваші дані: \n\nПІБ відправника: {pib_help} \nТелефон відправника: {phone_help} \nПІБ отримувача: {pib_receiver_help} \nТелефон отримувача: {phone_receiver_help} \nАдреса доставки: {message.text}')
user_data[message.chat.id]['msgs'] = [msg.message_id]
user_data[message.chat.id]['adress'] = message.text
msg = bot.send_message(message.chat.id, 'Введіть додаткову інформацію про посилку', reply_markup=create_cancel_keyboard())
user_data[message.chat.id]['msgs'].append(msg.message_id)
@bot.message_handler(func=lambda message: message.chat.id in user_data
and 'pib' in user_data[message.chat.id]
and 'phone' in user_data[message.chat.id]
and 'pib_receiver' in user_data[message.chat.id]
and 'phone_receiver' in user_data[message.chat.id]
and 'adress' in user_data[message.chat.id])
def get_message_for_qr(message):
if 'msgs' not in user_data.get(message.chat.id, {}):
return
user_data[message.chat.id]['message'] = message.text
for msg_id in user_data[message.chat.id]['msgs']:
bot.delete_message(message.chat.id, msg_id)
bot.delete_message(message.chat.id, message.message_id)
# Формування даних для QR-коду
pib_help = user_data[message.chat.id]['pib']
phone_help = user_data[message.chat.id]['phone']
pib_receiver_help = user_data[message.chat.id]['pib_receiver']
phone_receiver_help = user_data[message.chat.id]['phone_receiver']
adress_help = user_data[message.chat.id]['adress']
message_help = user_data[message.chat.id]['message']
qr_data = f"ПІБ відправника: {pib_help} \nТелефон відправника: {phone_help} \n\nПІБ отримувача: {pib_receiver_help} \nТелефон отримувача: {phone_receiver_help} \n\nАдреса доставки: {adress_help} \nДодаткова інформація: {message_help}"
# Генерація QR-коду
qr = qrcode.QRCode(version=1, box_size=10, border=5)
qr.add_data(qr_data)
qr.make(fit=True)
img = qr.make_image(fill='black', back_color='white')
# Збереження зображення у BytesIO об'єкт
img_byte_arr = BytesIO()
img.save(img_byte_arr)
img_byte_arr.seek(0)
# Відправка зображення QR-коду користувачу
bot.send_photo(message.chat.id, img_byte_arr, caption=f'Створений QR-код за вашими даними: \n\n{qr_data}')
user_data.pop(message.chat.id, None)
bot.polling()