-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemias_stacionar.py
More file actions
291 lines (272 loc) · 9.25 KB
/
emias_stacionar.py
File metadata and controls
291 lines (272 loc) · 9.25 KB
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
import time
from telebot import types
import config
def emias_stacionar(bot):
"""Функция по работе бота в разделе стационара."""
@bot.message_handler(func=lambda message: message.text == config.BTN_STAC)
def stacionar(message):
kb_stacionar = types.ReplyKeyboardMarkup(
resize_keyboard=True, one_time_keyboard=True
)
button = types.KeyboardButton
kb_stacionar.add(
button(text=config.BTN_STAC_TEXT_1),
button(text=config.BTN_STAC_TEXT_2),
button(text=config.BTN_STAC_TEXT_3),
button(text=config.BTN_STAC_TEXT_4),
button(text=config.BTN_STAC_TEXT_5),
button(text=config.BTN_STAC_TEXT_6),
button(text=config.BTN_STAC_TEXT_7),
button(text=config.MAIN_MENU)
)
bot.send_message(
message.chat.id, config.TEXT_STAC_1, reply_markup=kb_stacionar
)
@bot.message_handler(func=lambda message: message.text == config.BTN_STAC_TEXT_2)
def stacionar_instruction(message):
kb_stacionar_instruction = types.ReplyKeyboardMarkup(
resize_keyboard=True, one_time_keyboard=True
)
button = types.KeyboardButton
kb_stacionar_instruction.add(
button(text=config.MAIN_MENU)
)
bot.send_message(
message.chat.id,
config.TEXT_STAC_2,
parse_mode='HTML',
reply_markup=kb_stacionar_instruction
)
@bot.message_handler(func=lambda message: message.text == config.BTN_STAC_TEXT_3)
def deleted_card(message):
kb_deleted_card = types.ReplyKeyboardMarkup(
resize_keyboard=True, one_time_keyboard=True
)
button = types.KeyboardButton
kb_deleted_card.add(
button(text=config.BTN_STAC),
button(text=config.MAIN_MENU)
)
bot.send_document(
message.chat.id,
config.LINK_DELETE_CARD_SRASIONAR
)
time.sleep(0.5)
bot.send_message(
message.chat.id,
config.TEXT_STAC_3,
reply_markup=kb_deleted_card
)
@bot.message_handler(func=lambda message: message.text == config.BTN_STAC_TEXT_1)
def stcnr_err_sign(message):
kb_stcnr_err_sign = types.ReplyKeyboardMarkup(
resize_keyboard=True, one_time_keyboard=True
)
button = types.KeyboardButton
kb_stcnr_err_sign.add(
button(text=config.MAIN_MENU)
)
bot.send_message(
message.chat.id,
config.TEXT_STAC_4,
reply_markup=kb_stcnr_err_sign
)
bot.register_next_step_handler(message, st_err)
def st_err(message):
"""Ответ по ошибкам."""
kb_st_err = types.ReplyKeyboardMarkup(
resize_keyboard=True, one_time_keyboard=True
)
button = types.KeyboardButton
kb_st_err.add(
button(text=config.BTN_STAC_TEXT_1),
button(text=config.BTN_STAC),
button(text=config.MAIN_MENU),
)
text_from_user = message.text
errors = config.TEXT_STAC_5
code_errors = sorted([x for x in errors])
if text_from_user.lower() == 'ошибки':
bot.send_message(
message.chat.id,
'\n'.join([f'{number}. {element}' for number, element in enumerate(code_errors, start=1)]),
reply_markup=kb_st_err
)
return
count = 0
for key, value in errors.items():
if text_from_user.lower() in key.lower():
bot.send_message(
message.chat.id,
value,
reply_markup=kb_st_err
)
return
if text_from_user.lower() in value:
bot.send_message(
message.chat.id,
value,
reply_markup=kb_st_err
)
time.sleep(0.5)
count += 1
if count == 0:
bot.send_message(
message.chat.id,
config.TEXT_STAC_6,
reply_markup=kb_st_err
)
count = 0
@bot.message_handler(func=lambda message: message.text == config.BTN_STAC_TEXT_4)
def moderation_dubles(message):
kb_moderation_dubles = types.ReplyKeyboardMarkup(
resize_keyboard=True, one_time_keyboard=True
)
button = types.KeyboardButton
kb_moderation_dubles.add(
button(text=config.BTN_STAC),
button(text=config.MAIN_MENU)
)
bot.send_message(
message.chat.id,
config.TEXT_STAC_7
)
time.sleep(0.5)
bot.send_photo(
message.chat.id,
config.LINK_MOD_DUB_STC_1
)
time.sleep(0.5)
bot.send_message(
message.chat.id,
config.TEXT_STAC_8,
)
time.sleep(0.5)
bot.send_photo(
message.chat.id,
config.LINK_MOD_DUB_STC_2
)
time.sleep(0.5)
bot.send_message(
message.chat.id,
config.TEXT_STAC_9,
)
time.sleep(0.5)
bot.send_photo(
message.chat.id,
config.LINK_MOD_DUB_STC_3
)
time.sleep(0.5)
bot.send_message(
message.chat.id,
config.TEXT_STAC_10,
reply_markup=kb_moderation_dubles
)
@bot.message_handler(func=lambda message: message.text == config.BTN_STAC_TEXT_5)
def change_crypto(message):
kb_change_crypto = types.ReplyKeyboardMarkup(
resize_keyboard=True, one_time_keyboard=True
)
button = types.KeyboardButton
kb_change_crypto.add(
button(text=config.BTN_STAC),
button(text=config.MAIN_MENU)
)
bot.send_message(
message.chat.id,
config.TEXT_STAC_11
)
time.sleep(0.5)
bot.send_photo(
message.chat.id,
config.LINK_STC_CHANGE_CRYPT_1
)
time.sleep(0.5)
bot.send_message(
message.chat.id,
config.TEXT_STAC_12,
)
time.sleep(0.5)
bot.send_photo(
message.chat.id,
config.LINK_STC_CHANGE_CRYPT_2
)
time.sleep(0.5)
bot.send_message(
message.chat.id,
config.TEXT_STAC_13,
reply_markup=kb_change_crypto
)
@bot.message_handler(func=lambda message: message.text == config.BTN_STAC_TEXT_6)
def info_periodics(message):
kb_info_periodics = types.ReplyKeyboardMarkup(
resize_keyboard=True, one_time_keyboard=True
)
button = types.KeyboardButton
kb_info_periodics.add(
button(text=config.BTN_STAC),
button(text=config.MAIN_MENU)
)
bot.send_message(
message.chat.id,
config.TEXT_STAC_14,
reply_markup=kb_info_periodics
)
@bot.message_handler(func=lambda message: message.text == config.BTN_STAC_TEXT_7)
def stacionar_fio_in_eu(message):
kb_fio_in_eu = types.ReplyKeyboardMarkup(
resize_keyboard=True, one_time_keyboard=True
)
button = types.KeyboardButton
kb_fio_in_eu.add(
button(text=config.BTN_STAC_TEXT_7),
button(text=config.MAIN_MENU),
)
bot.send_message(
message.chat.id,
config.TEXT_STAC_15,
# reply_markup=kb_fio_in_eu
)
bot.register_next_step_handler(message, fio_in_eu, kb_fio_in_eu)
def fio_in_eu(message, kb_fio_in_eu):
"""Преобразует фио в англ."""
words = {
'а': 'a', 'б': 'b', 'в': 'v', 'г': 'g', 'д': 'd', 'е': 'e', 'ё': 'e', 'ж': 'zh', 'з': 'z',
'и': 'i', 'й': 'i', 'к': 'k', 'л': 'l', 'м': 'm', 'н': 'n', 'о': 'o', 'п': 'p', 'р': 'r',
'с': 's', 'т': 't', 'у': 'u', 'ф': 'f', 'х': 'kh', 'ц': 'ts', 'ч': 'ch', 'ш': 'sh',
'щ': 'shch', 'ы': 'y', 'ъ': 'ie', 'э': 'e', 'ю': 'iu', 'я': 'ia'
}
name = message.text
name = name.strip().lower().split()
s = []
if len(name) in (0, 1):
bot.send_message(
message.chat.id,
config.TEXT_STAC_16,
reply_markup=kb_fio_in_eu
)
elif len(name) == 2:
s.append(words.get(name[1][0], ''))
for i in name[0]:
s.append(words.get(i, ''))
bot.send_message(
message.chat.id,
''.join(s),
reply_markup=kb_fio_in_eu
)
elif len(name) >= 3:
s.append(words.get(name[1][0], ''))
s.append(words.get(name[2][0], ''))
for i in name[0]:
s.append(words.get(i, ''))
bot.send_message(
message.chat.id,
''.join(s),
reply_markup=kb_fio_in_eu
)
else:
bot.send_message(
message.chat.id,
config.TEXT_STAC_16,
reply_markup=kb_fio_in_eu
)