forked from TeamUltroid/Ultroid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilter.py
112 lines (96 loc) · 3.42 KB
/
filter.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
# Ultroid - UserBot
# Copyright (C) 2021-2022 TeamUltroid
#
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
# PLease read the GNU Affero General Public License in
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
"""
✘ Commands Available -
• `{i}addfilter <word><reply to a message>`
add the used word as filter relating to replied message.
• `{i}remfilter <word>`
Remove the filtered user..
• `{i}listfilter`
list all filters.
"""
import os
import re
from pyUltroid.dB.filter_db import add_filter, get_filter, list_filter, rem_filter
from pyUltroid.functions.tools import create_tl_btn, format_btn, get_msg_button
from telegraph import upload_file as uf
from telethon.tl.types import User
from telethon.utils import pack_bot_file_id
from . import events, get_string, mediainfo, udB, ultroid_bot, ultroid_cmd
from ._inline import something
@ultroid_cmd(pattern="addfilter( (.*)|$)")
async def af(e):
wrd = (e.pattern_match.group(1).strip()).lower()
wt = await e.get_reply_message()
chat = e.chat_id
if not (wt and wrd):
return await e.eor(get_string("flr_1"))
btn = format_btn(wt.buttons) if wt.buttons else None
if wt and wt.media:
wut = mediainfo(wt.media)
if wut.startswith(("pic", "gif")):
dl = await wt.download_media()
variable = uf(dl)
m = "https://telegra.ph" + variable[0]
elif wut == "video":
if wt.media.document.size > 8 * 1000 * 1000:
return await e.eor(get_string("com_4"), time=5)
dl = await wt.download_media()
variable = uf(dl)
os.remove(dl)
m = "https://telegra.ph" + variable[0]
else:
m = pack_bot_file_id(wt.media)
if wt.text:
txt = wt.text
if not btn:
txt, btn = get_msg_button(wt.text)
add_filter(chat, wrd, txt, m, btn)
else:
add_filter(chat, wrd, None, m, btn)
else:
txt = wt.text
if not btn:
txt, btn = get_msg_button(wt.text)
add_filter(chat, wrd, txt, None, btn)
await e.eor(get_string("flr_4").format(wrd))
ultroid_bot.add_handler(filter_func, events.NewMessage())
@ultroid_cmd(pattern="remfilter( (.*)|$)")
async def rf(e):
wrd = (e.pattern_match.group(1).strip()).lower()
chat = e.chat_id
if not wrd:
return await e.eor(get_string("flr_3"))
rem_filter(int(chat), wrd)
await e.eor(get_string("flr_5").format(wrd))
@ultroid_cmd(pattern="listfilter$")
async def lsnote(e):
x = list_filter(e.chat_id)
if x:
sd = "Filters Found In This Chats Are\n\n"
return await e.eor(sd + x)
await e.eor(get_string("flr_6"))
async def filter_func(e):
if isinstance(e.sender, User) and e.sender.bot:
return
xx = (e.text).lower()
chat = e.chat_id
x = get_filter(chat)
if x:
for c in x:
pat = r"( |^|[^\w])" + re.escape(c) + r"( |$|[^\w])"
if re.search(pat, xx):
k = x.get(c)
if k:
msg = k["msg"]
media = k["media"]
if k.get("button"):
btn = create_tl_btn(k["button"])
return await something(e, msg, media, btn)
await e.reply(msg, file=media)
if udB.get_key("FILTERS"):
ultroid_bot.add_handler(filter_func, events.NewMessage())