-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
285 lines (209 loc) · 8.69 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
import asyncio
import logging
import sys
from aiogram import Bot, Dispatcher, Router, F
from aiogram.types import (
ReplyKeyboardMarkup,
KeyboardButton,
ReplyKeyboardRemove,
Message,
)
from aiogram.filters import Command, CommandStart
from aiogram.fsm.context import FSMContext
from aiogram.fsm.state import State, StatesGroup
from config.bot_key import (
key_telegram as key,
) # This function returns the bot token "some string"
from utils.order_status_check_in_crm import order_status_check as order_status
from utils.append_data_to_google_sheet import append_data_to_sheet as append_data
# =========================================================================================================== FUNCTIONS
TOKEN_API = key()
form_router = Router()
user_data: list = [] # Data that will be added to Google Sheet
class Form(StatesGroup):
start_get_data = State() # User choose to Get order status or to subscribe
# Order status flow
user_chooses_a_method = State()
number = State()
crm_data = State()
# Subscribe flow
user_phone_number_for_subscribe = State()
user_first_name_for_subscribe = State()
user_last_name_for_subscribe = State()
user_addresses_for_subscribe = State()
user_branch_number_for_subscribe = State()
pay_for_subscribe = State()
user_data_for_subscribe = State()
@form_router.message(Command("cancel"))
@form_router.message(F.text.casefold() == "cancel")
async def cancel_handler(message: Message, state: FSMContext) -> None:
"""
Allow user to cancel any action
"""
current_state = await state.get_state()
if current_state is None:
return
logging.info("Cancelling state %r", current_state)
await state.clear()
await message.answer(
"Cancelled.",
reply_markup=ReplyKeyboardRemove(),
)
@form_router.message(CommandStart())
async def command_start(message: Message, state: FSMContext) -> None:
await state.set_state(Form.user_chooses_a_method)
await message.answer(
"Привіт! Ласкаво просимо! Я твій чат-бот.\n"
"Я можу допомогти тобі дізнатися статус замовлення або підписатися на подарунковий бокс.",
reply_markup=ReplyKeyboardMarkup(
keyboard=[
[
KeyboardButton(
text="get_order_status",
),
KeyboardButton(
text="subscribe_to_gift_box",
),
KeyboardButton(
text="cancel",
),
]
],
resize_keyboard=True,
),
)
@form_router.message(
Form.user_chooses_a_method, F.text.casefold() == "get_order_status"
)
async def user_chooses_a_method(message: Message, state: FSMContext) -> None:
await state.set_state(Form.start_get_data)
await message.answer(
"Виберіть метод отримання данних",
reply_markup=ReplyKeyboardMarkup(
keyboard=[
[
KeyboardButton(
text="TTN",
),
KeyboardButton(
text="Phone Number",
request_contact=True,
),
KeyboardButton(
text="Cancel",
),
]
],
resize_keyboard=True,
),
)
# ======================================================================================================== MY FUNCTIONS
@form_router.message(
Form.user_chooses_a_method, F.text.casefold() == "subscribe_to_gift_box"
)
async def user_first_name(message: Message, state: FSMContext) -> None:
await state.set_state(Form.user_first_name_for_subscribe)
await message.answer(
"Для того, щоб оформити підписку на бокс, вкажіть, будь ласка, своє ім'я: ",
reply_markup=ReplyKeyboardRemove(),
)
@form_router.message(Form.user_first_name_for_subscribe)
async def user_last_name(message: Message, state: FSMContext) -> None:
await state.set_state(Form.user_last_name_for_subscribe)
await message.answer(
"І своє прізвище: ",
reply_markup=ReplyKeyboardRemove(),
)
user_data.append(message.text)
@form_router.message(Form.user_last_name_for_subscribe)
async def user_last_name(message: Message, state: FSMContext) -> None:
await state.set_state(Form.user_phone_number_for_subscribe)
await message.answer(
"Тепер, будь ласка, вкажіть свій номер телефону: ",
reply_markup=ReplyKeyboardRemove(),
)
user_data.append(message.text)
@form_router.message(Form.user_phone_number_for_subscribe)
async def user_last_name(message: Message, state: FSMContext) -> None:
await state.set_state(Form.user_addresses_for_subscribe)
await message.answer(
"Щоб ми могли доставити бокс Новою поштою, нам потрібна ваша адреса. "
"Будь ласка, вкажіть населений пункт 👇🏻: ",
reply_markup=ReplyKeyboardRemove(),
)
user_data.append(message.text)
@form_router.message(Form.user_addresses_for_subscribe)
async def user_last_name(message: Message, state: FSMContext) -> None:
await state.set_state(Form.user_branch_number_for_subscribe)
await message.answer(
"І Номер відділення: ",
reply_markup=ReplyKeyboardRemove(),
)
user_data.append(message.text)
@form_router.message(Form.user_branch_number_for_subscribe)
async def pay(message: Message, state: FSMContext) -> None:
user_data.append(message.text)
await state.set_state(Form.pay_for_subscribe)
await message.answer(
"Вже майже все 🙃 \n"
"Для завершення оформлення підписки здійсніть, будь ласка, свою першу оплату: ",
reply_markup=ReplyKeyboardMarkup(
keyboard=[
[
KeyboardButton(
text="Оплата liqpay", url="https://www.liqpay.ua/authorization"
),
]
],
resize_keyboard=True,
),
# reply_markup=ReplyKeyboardRemove(),
)
def subscribe():
return (
"Дякуємо, підписка на подарунковий бокс від ORNER успішно активована! 🎉\n"
" Очікуйте повідомлення з номером накладної"
)
@form_router.message(Form.pay_for_subscribe, F.text.casefold() == "оплата liqpay")
async def post_payment_processed(message: Message, state: FSMContext) -> None:
is_subscribe = subscribe()
await message.answer(
f"{is_subscribe}",
reply_markup=ReplyKeyboardRemove(),
)
append_data([user_data])
# ====================================================================================================== YOUR FUNCTIONS
@form_router.message(Form.user_chooses_a_method)
async def process_unknown_write_bots_2(message: Message) -> None:
await message.reply("I don't understand you :(")
@form_router.message(Form.start_get_data, F.text.casefold() == "ttn")
async def get_status_using_ttn(message: Message, state: FSMContext) -> None:
await state.set_state(Form.crm_data)
await message.answer(
"Будь ласка вкажіть номер ТТН",
reply_markup=ReplyKeyboardRemove(),
)
@form_router.message(Form.start_get_data)
async def get_status_using_phone_number(message: Message, state: FSMContext) -> None:
await state.set_state(Form.crm_data)
crm_respond = order_status(message.contact.phone_number, "phone")
await message.answer(
f"Ваш номер {message.contact.phone_number}\n" f"{crm_respond}",
reply_markup=ReplyKeyboardRemove(),
)
@form_router.message(Form.crm_data)
async def send_request_to_server(message: Message, state: FSMContext) -> None:
crm_respond = order_status(message.text, "ttn")
await message.answer(
f"{crm_respond}",
reply_markup=ReplyKeyboardRemove(),
)
# =========================================================================================================== MAIN
async def main():
bot = Bot(TOKEN_API)
dp = Dispatcher()
dp.include_router(form_router)
await dp.start_polling(bot)
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO, stream=sys.stdout)
asyncio.run(main())