-
Notifications
You must be signed in to change notification settings - Fork 0
/
telegram-bot.py
174 lines (158 loc) · 6.46 KB
/
telegram-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
import telebot
from telebot import types
import mysql.connector
import datetime
users = {} # объявляем пустой словарь в глобальной области видимости
# Подключение к базе данных MySQL
db = mysql.connector.connect(
host="host",
user="user",
password="password",
database="database"
)
cursor = db.cursor()
# Токен бота Telegram
bot = telebot.TeleBot("token")
# Обработка команды /start
@bot.message_handler(commands=['start'])
def start(message):
query = ""
cursor.execute(query)
members = cursor.fetchall()
global users # используем глобальный словарь
for member in members:
users[member[3]] = member[0]
chat_id = message.chat.id
bot.send_message(message.chat.id, '', parse_mode= 'Markdown')
# Обработка команды /mylist
@bot.message_handler(commands=['mylist'])
def mylist(message):
query = ""
cursor.execute(query)
members = cursor.fetchall()
global users
for member in members:
users[member[3]] = member[0]
chat_id = message.chat.id
if chat_id in users:
username = users[chat_id]
query = f""
cursor.execute(query)
products = cursor.fetchall()
if not products:
bot.send_message(chat_id, "У вас нет продуктов")
else:
text = "Ваши продукты:\n\n"
for product in products:
text += f"{product[1]} - до {product[3]}\n"
bot.send_message(chat_id, text)
else:
bot.send_message(chat_id, "Вы не зарегистрированы в нашем сервисе")
# Обработка команды /add
@bot.message_handler(commands=['add'])
def add(message):
global username
chat_id = message.chat.id
if chat_id in users:
username = users[chat_id]
bot.send_message(chat_id, "Введите название продукта")
bot.register_next_step_handler(message, get_name)
else:
bot.send_message(chat_id, "Вы не зарегистрированы в нашем сервисе")
def get_name(message):
global name
name = message.text
bot.send_message(message.chat.id, "Введите дату окончания срока годности продукта в формате ГГГГ-ММ-ДД")
bot.register_next_step_handler(message, get_expiration_date)
def get_expiration_date(message):
global expiration_date
global username
expiration_date = message.text
try:
query = f""
cursor.execute(query)
db.commit()
bot.send_message(message.chat.id, "Продукт успешно добавлен")
except Exception as e:
bot.send_message(message.chat.id, "Произошла ошибка: " + str(e))
# Обработка команды /delete
@bot.message_handler(commands=['delete'])
def delete(message):
chat_id = message.chat.id
if chat_id in users:
username = users[chat_id]
query = f""
cursor.execute(query)
products = cursor.fetchall()
if not products:
bot.send_message(chat_id, "У вас нет продуктов")
else:
markup = types.InlineKeyboardMarkup()
for product in products:
button = types.InlineKeyboardButton(text=product[1], callback_data=f"delete_{product[0]}")
markup.add(button)
bot.send_message(chat_id, "Выберите продукт для удаления:", reply_markup=markup)
else:
bot.send_message(chat_id, "Вы не зарегистрированы в нашем сервисе")
@bot.callback_query_handler(func=lambda call: call.data.startswith("delete_"))
def callback_delete(call):
chat_id = call.message.chat.id
if chat_id in users:
username = users[chat_id]
product_id = call.data.split("_")[1]
query = f""
cursor.execute(query)
db.commit()
bot.answer_callback_query(call.id, "Продукт удален")
else:
bot.send_message(chat_id, "Вы не зарегистрированы в нашем сервисе")
# Обработка команды /myid
@bot.message_handler(commands=['myid'])
def ID(message):
bot.send_message(message.chat.id,'Ваш ID: `{0.id}`'.format(message.from_user, bot.get_me()),
parse_mode= 'Markdown')
# Обработка команды /schedule
@bot.message_handler(commands=['schedule'])
def schedule(message):
chat_id = message.chat.id
if chat_id in users:
msg = bot.send_message(chat_id, "Введите время напоминания в формате ЧЧ:ММ")
bot.register_next_step_handler(msg, process_time_step)
else:
bot.send_message(chat_id, "Вы не зарегистрированы в нашем сервисе")
def process_time_step(message):
chat_id = message.chat.id
if chat_id in users:
time = message.text
try:
datetime.datetime.strptime(time, '%H:%M')
username = users[chat_id]
query = f""
cursor.execute(query)
db.commit()
bot.send_message(chat_id, "Время напоминания сохранено")
except ValueError:
msg = bot.send_message(chat_id, "Неверный формат времени. Пожалуйста, введите время в формате ЧЧ:ММ")
bot.register_next_step_handler(msg, process_time_step)
else:
bot.send_message(chat_id, "Вы не зарегистрированы в нашем сервисе")
# Обработка команды /unschedule
@bot.message_handler(commands=['unschedule'])
def unschedule(message):
chat_id = message.chat.id
if chat_id in users:
username = users[chat_id]
query = f""
cursor.execute(query)
db.commit()
bot.send_message(chat_id, "Напоминание отменено")
else:
bot.send_message(chat_id, "Вы не зарегистрированы в нашем сервисе")
# Обработка команды /info
@bot.message_handler(commands=['info'])
def start_message(message):
keyboard = types.InlineKeyboardMarkup()
keyboard.add(types.InlineKeyboardButton('Перейти на сайт', url=''))
bot.send_message(message.chat.id, 'Сайт сервиса 👇', reply_markup=keyboard)
# Запуск бота
bot.polling()