-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilters.py
244 lines (194 loc) · 8.46 KB
/
filters.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# @trojanzhex
import re
import pyrogram
from pyrogram import (
filters,
Client
)
from pyrogram.types import (
InlineKeyboardButton,
InlineKeyboardMarkup,
Message,
CallbackQuery
)
from bot import Bot
from script import script
from database.mdb import searchquery
from plugins.channel import deleteallfilters
from config import AUTH_USERS
BUTTONS = {}
@Client.on_message(filters.group & filters.text)
async def filter(client: Bot, message: Message):
if re.findall("((^\/|^,|^!|^\.|^[\U0001F600-\U000E007F]).*)", message.text):
return
if 2 < len(message.text) < 50:
btn = []
group_id = message.chat.id
name = message.text
filenames, links = await searchquery(group_id, name)
if filenames and links:
for filename, link in zip(filenames, links):
btn.append(
[InlineKeyboardButton(text=f"{filename}",url=f"{link}")]
)
else:
return
if not btn:
return
if len(btn) > 10:
btns = list(split_list(btn, 10))
keyword = f"{message.chat.id}-{message.message_id}"
BUTTONS[keyword] = {
"total" : len(btns),
"buttons" : btns
}
else:
buttons = btn
buttons.append(
[InlineKeyboardButton(text="⛔️ ᴄᴀɴ'ᴛ ᴏᴘᴇɴ ʟɪɴᴋ❓",callback_data="pages")]
)
await message.reply_text(
f"<b>🎬 TV Series : <code>{message.text}</code> \n\n★ ꜰɪʀꜱᴛ ᴊᴏɪɴ ᴛʜᴇ ᴄʜᴀɴɴᴇʟ ᴀɴᴅ ᴄʟɪᴄᴋ ᴛʜᴇ ʙᴜᴛᴛᴏɴs ғᴏʀ ɢᴇᴛ ʏᴏᴜʀ ᴍᴏᴠɪᴇ ᴏʀ sᴇʀɪᴇs ғɪʟᴇs \n\n 🎭 @BOTS_Infinity</b>",
reply_markup=InlineKeyboardMarkup(buttons), disable_web_page_preview=True)
return
data = BUTTONS[keyword]
buttons = data['buttons'][0].copy()
buttons.append(
[InlineKeyboardButton(text="NEXT ⏩",callback_data=f"next_0_{keyword}")]
)
buttons.append(
[InlineKeyboardButton(text=f"📃 Pages 1/{data['total']}",callback_data="pages")]
)
await message.reply_text(
f"<b>🎬 TV Series : <code>{message.text}</code> \n\n★ ꜰɪʀꜱᴛ ᴊᴏɪɴ ᴛʜᴇ ᴄʜᴀɴɴᴇʟ ᴀɴᴅ ᴄʟɪᴄᴋ ᴛʜᴇ ʙᴜᴛᴛᴏɴs ғᴏʀ ɢᴇᴛ ʏᴏᴜʀ ᴍᴏᴠɪᴇ ᴏʀ sᴇʀɪᴇs ғɪʟᴇs \n\n🎭 @BOTS_Infinity</b>",
reply_markup=InlineKeyboardMarkup(buttons), disable_web_page_preview=True)
@Client.on_callback_query()
async def cb_handler(client: Bot, query: CallbackQuery):
clicked = query.from_user.id
typed = query.message.reply_to_message.from_user.id
if (clicked == typed) or (clicked in AUTH_USERS):
if query.data.startswith("next"):
await query.answer()
ident, index, keyword = query.data.split("_")
try:
data = BUTTONS[keyword]
except KeyError:
await query.answer("⛔️ Thats NOT Your Request!",show_alert=True)
return
if int(index) == int(data["total"]) - 2:
buttons = data['buttons'][int(index)+1].copy()
buttons.append(
[InlineKeyboardButton("⏪ BACK", callback_data=f"back_{int(index)+1}_{keyword}")]
)
buttons.append(
[InlineKeyboardButton(f"📃 Pages {int(index)+2}/{data['total']}", callback_data="pages")]
)
await query.edit_message_reply_markup(
reply_markup=InlineKeyboardMarkup(buttons)
)
return
else:
buttons = data['buttons'][int(index)+1].copy()
buttons.append(
[InlineKeyboardButton("⏪ BACK", callback_data=f"back_{int(index)+1}_{keyword}"),InlineKeyboardButton("NEXT ⏩", callback_data=f"next_{int(index)+1}_{keyword}")]
)
buttons.append(
[InlineKeyboardButton(f"📃 Pages {int(index)+2}/{data['total']}", callback_data="pages")]
)
await query.edit_message_reply_markup(
reply_markup=InlineKeyboardMarkup(buttons)
)
return
elif query.data.startswith("back"):
await query.answer()
ident, index, keyword = query.data.split("_")
try:
data = BUTTONS[keyword]
except KeyError:
await query.answer("Thats NOT Your Request!",show_alert=True)
return
if int(index) == 1:
buttons = data['buttons'][int(index)-1].copy()
buttons.append(
[InlineKeyboardButton("NEXT ⏩", callback_data=f"next_{int(index)-1}_{keyword}")]
)
buttons.append(
[InlineKeyboardButton(f"📃 Pages {int(index)}/{data['total']}", callback_data="pages")]
)
await query.edit_message_reply_markup(
reply_markup=InlineKeyboardMarkup(buttons)
)
return
else:
buttons = data['buttons'][int(index)-1].copy()
buttons.append(
[InlineKeyboardButton("⏪ BACK", callback_data=f"back_{int(index)-1}_{keyword}"),InlineKeyboardButton("NEXT ⏩", callback_data=f"next_{int(index)-1}_{keyword}")]
)
buttons.append(
[InlineKeyboardButton(f"📃 Pages {int(index)}/{data['total']}", callback_data="pages")]
)
await query.edit_message_reply_markup(
reply_markup=InlineKeyboardMarkup(buttons)
)
return
elif query.data == "pages":
await query.answer()
keyboard = InlineKeyboardMarkup([
[InlineKeyboardButton("CLOSE", callback_data="close")],
[InlineKeyboardButton("UPDATE CHANNEL", url="https://t.me/bots_infinity")]
])
await query.message.edit_text(
script.TXT,
reply_markup=keyboard,
disable_web_page_preview=True
)
elif query.data == "close":
await query.message.delete()
elif query.data == "start_data":
await query.answer()
keyboard = InlineKeyboardMarkup([
[InlineKeyboardButton("HELP", callback_data="help_data"),
InlineKeyboardButton("ABOUT", callback_data="about_data")],
[InlineKeyboardButton("UPDATE CHANNEL", url="https://t.me/bots_infinity")]
])
await query.message.edit_text(
script.START_MSG.format(query.from_user.mention),
reply_markup=keyboard,
disable_web_page_preview=True
)
elif query.data == "help_data":
await query.answer()
keyboard = InlineKeyboardMarkup([
[InlineKeyboardButton("BACK", callback_data="start_data"),
InlineKeyboardButton("ABOUT", callback_data="about_data")],
[InlineKeyboardButton("SUPPORT", url="https://t.me/botech_lanka")]
])
await query.message.edit_text(
script.HELP_MSG,
reply_markup=keyboard,
disable_web_page_preview=True
)
elif query.data == "about_data":
await query.answer()
keyboard = InlineKeyboardMarkup([
[InlineKeyboardButton("BACK", callback_data="help_data"),
InlineKeyboardButton("START", callback_data="start_data")]
])
await query.message.edit_text(
script.ABOUT_MSG,
reply_markup=keyboard,
disable_web_page_preview=True
)
elif query.data == "delallconfirm":
await query.message.delete()
await deleteallfilters(client, query.message)
elif query.data == "delallcancel":
await query.message.reply_to_message.delete()
await query.message.delete()
else:
await query.answer("Thats not for you!!",show_alert=True)
def split_list(l, n):
for i in range(0, len(l), n):
yield l[i:i + n]