-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbanmedia.py
162 lines (127 loc) · 7.4 KB
/
banmedia.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
# Sh1t-UB (telegram userbot by sh1tn3t)
# Copyright (C) 2021-2022 Sh1tN3t
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from pyrogram import Client, types
from .. import loader, utils
@loader.module("BanMedia", "sh1tn3t")
class BanMediaMod(loader.Module):
"""Бан медиа"""
async def banmedia_cmd(self, app: Client, message: types.Message):
"""Добавить медиа в базу для блокировки. Использование: banmedia <реплай>"""
chat = message.chat
if chat.type != "private":
check_me = await chat.get_member(self.all_modules.me.id)
if not check_me.can_delete_messages:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Нет прав на удаление сообщений")
reply = message.reply_to_message
if not reply or not reply.media:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Нет реплая на медиа")
file_id = utils.get_message_media(reply).file_unique_id
banned_media = self.db.get("BanMedia", "media", {})
current_chat = banned_media.setdefault(str(chat.id), [])
if file_id in current_chat:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Это медиа уже заблокировано")
current_chat.append(file_id)
self.db.set("BanMedia", "media", banned_media)
return await utils.answer(
message, "<b>[BanMedia]</b> ✅ Медиа добавлено в базу")
async def unbanmedia_cmd(self, app: Client, message: types.Message, args: str):
"""Удалить медиа из базы для блокировки. Использование: unbanmedia <реплай или all>"""
reply = message.reply_to_message
if not reply or not reply.media:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Нет реплая на медиа")
chat = message.chat
banned_media = self.db.get("BanMedia", "media", {})
if not (current_chat := banned_media.setdefault(str(chat.id), [])):
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ В этом чате нет медиа для блокировки")
file_id = utils.get_message_media(reply).file_unique_id
if file_id not in current_chat:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Это медиа не заблокировано")
current_chat.remove(file_id)
if not current_chat:
del banned_media[str(chat.id)]
self.db.set("BanMedia", "media", banned_media)
return await utils.answer(
message, "<b>[BanMedia]</b> ✅ Медиа удалено из базы")
async def banpack_cmd(self, app: Client, message: types.Message):
"""Добавить стикерпак в базу для блокировки. Использование: banpack <реплай на стикер>"""
chat = message.chat
if chat.type != "private":
check_me = await chat.get_member(self.all_modules.me.id)
if not check_me.can_delete_messages:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Нет прав на удаление сообщений")
reply = message.reply_to_message
if not reply or not reply.sticker:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Нет реплая на стикер")
pack_name = reply.sticker.set_name
banned_packs = self.db.get("BanMedia", "packs", {})
current_chat = banned_packs.setdefault(str(chat.id), [])
if pack_name in current_chat:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Этот стикерпак уже заблокирован")
if not pack_name:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Этот стикер не принадлежит ни к одному паку\n"
"🧾 Используй: <code>banmedia</code> <реплай>"
)
current_chat.append(pack_name)
self.db.set("BanMedia", "packs", banned_packs)
return await utils.answer(
message, f"<b>[BanMedia]</b> ✅ <a href=\"https://t.me/addstickers/{pack_name}\">Стикерпак</a> добавлен в базу")
async def unbanpack_cmd(self, app: Client, message: types.Message, args: str):
"""Удалить стикерпак из базы для блокировки. Использование: unbanpack <реплай на стикер или all>"""
reply = message.reply_to_message
if not reply or not reply.sticker:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Нет реплая на стикер")
chat = message.chat
pack_name = reply.sticker.set_name
banned_packs = self.db.get("BanMedia", "packs", {})
if not (current_chat := banned_packs.setdefault(str(chat.id), [])):
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ В этом чате нет стикерпаков для блокировки")
if pack_name not in current_chat:
return await utils.answer(
message, "<b>[BanMedia - Error]</b> ❌ Этот стикерпак не заблокирован")
current_chat.remove(pack_name)
if not current_chat:
del banned_packs[str(chat.id)]
self.db.set("BanMedia", "packs", banned_packs)
return await utils.answer(
message, f"<b>[BanMedia]</b> ✅ <a href=\"https://t.me/addstickers/{pack_name}\">Стикерпак</a> удален из базы")
async def watcher(self, app: Client, message: types.Message):
"""Отслеживание заблокированных медиа"""
if not message.media:
return
chat = message.chat
if message.sticker:
if (
(pack_name := message.sticker.set_name)
and (banned_packs := self.db.get("BanMedia", "packs", {}).get(str(chat.id)))
and pack_name in banned_packs
):
return await message.delete()
banned_media = self.db.get("BanMedia", "media", {})
if not (current_chat := banned_media.get(str(chat.id))):
return
file_id = utils.get_message_media(message).file_unique_id
if file_id not in current_chat:
return
return await message.delete()