-
Notifications
You must be signed in to change notification settings - Fork 0
/
keyboards.py
180 lines (152 loc) · 5.13 KB
/
keyboards.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
""" Contains functions to create keyboards to be used in bot.py file.
All functions return InlineKeyboardMarkup objects.
The function names should be the same with the corresponding functions in texts.py, if exists.
"""
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
from jobs import get_country_flag
def by_continent(countries, callback_to):
keyboard = []
remainder = len(countries) % 3
len_ = len(countries) if remainder == 0 else len(countries) - remainder
for i in range(0, len_, 3):
keyboard.append(
[
InlineKeyboardButton(
f"{countries[i]} {get_country_flag(countries[i])}",
callback_data=f"{callback_to}_{countries[i]}",
),
InlineKeyboardButton(
f"{countries[i+1]} {get_country_flag(countries[i+1])}",
callback_data=f"{callback_to}_{countries[i+1]}",
),
InlineKeyboardButton(
f"{countries[i+2]} {get_country_flag(countries[i+2])}",
callback_data=f"{callback_to}_{countries[i+2]}",
),
]
)
if remainder == 2:
keyboard.append(
[
InlineKeyboardButton(
f"{countries[-2]} {get_country_flag(countries[-2])}",
callback_data=f"{callback_to}_{countries[-2]}",
),
InlineKeyboardButton(
f"{countries[-1]} {get_country_flag(countries[-1])}",
callback_data=f"{callback_to}_{countries[-1]}",
),
]
)
elif remainder == 1:
keyboard.append(
[
InlineKeyboardButton(
f"{countries[-1]} {get_country_flag(countries[-1])}",
callback_data=f"{callback_to}_{countries[-1]}",
)
]
)
keyboard.append(
[
InlineKeyboardButton(
"<< Back to continents menu", callback_data=f"{callback_to}_main"
)
]
)
return InlineKeyboardMarkup(keyboard)
def continents(callback_to):
return InlineKeyboardMarkup(
[
[
InlineKeyboardButton("Asia", callback_data=f"{callback_to}_Asia"),
InlineKeyboardButton("Africa", callback_data=f"{callback_to}_Africa"),
],
[
InlineKeyboardButton(
"North America", callback_data=f"{callback_to}_North America"
),
InlineKeyboardButton(
"South America", callback_data=f"{callback_to}_South America"
),
],
[
InlineKeyboardButton(
"Antarctica", callback_data=f"{callback_to}_Antarctica"
),
InlineKeyboardButton("Europe", callback_data=f"{callback_to}_Europe"),
],
[InlineKeyboardButton("Oceania", callback_data=f"{callback_to}_Oceania")],
]
)
def antarctica(callback_to):
return InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"<< Back to continents", callback_data=f"{callback_to}_main"
)
]
]
)
def after_subscription():
return InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"<< Back to continents", callback_data="subscribe_main"
)
]
]
)
def after_unsubscription():
return InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"<< Back to unsubscriptions", callback_data="unsubscribe_main"
)
]
]
)
def github():
return InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"GitHub", url="https://github.com/memreyagci/covid-19-telegram-bot"
)
]
]
)
def subscribed(subscriptions):
unkeyboard = []
for i in subscriptions:
unkeyboard.append(
[
InlineKeyboardButton(
f"{i} {get_country_flag(i)}", callback_data=f"unsubscribe_{i}"
)
]
)
return InlineKeyboardMarkup(unkeyboard)
def select_data(country):
keyboard = []
data = ["cases", "deaths", "recovered", "tests"]
for i in range(0, len(data), 4):
keyboard.append(
[
InlineKeyboardButton(data[i], callback_data=f"{country}_{data[i]}"),
InlineKeyboardButton(
data[i + 1], callback_data=f"{country}_{data[i+1]}"
),
InlineKeyboardButton(
data[i + 2], callback_data=f"{country}_{data[i+2]}"
),
InlineKeyboardButton(
data[i + 3], callback_data=f"{country}_{data[i+3]}"
),
]
)
keyboard.append([InlineKeyboardButton("all", callback_data=f"{country}_all")])
return InlineKeyboardMarkup(keyboard)