Spaces:
Sleeping
Sleeping
File size: 16,567 Bytes
87abec5 9015bc5 11ae35a 9015bc5 11ae35a 9015bc5 ca4eb6d 9015bc5 ca4eb6d 9015bc5 ca4eb6d 9015bc5 ca4eb6d 9015bc5 ca4eb6d 11170eb ca4eb6d 87abec5 ca4eb6d 11170eb ca4eb6d 9015bc5 ca4eb6d af1662b 11170eb 9015bc5 af1662b ca4eb6d 87abec5 ca4eb6d 87abec5 ca4eb6d 11170eb ca4eb6d 11170eb ca4eb6d 11170eb ca4eb6d 9015bc5 ca4eb6d 9015bc5 ca4eb6d 11170eb 9015bc5 ca4eb6d 11170eb ca4eb6d 11170eb ca4eb6d 87abec5 ca4eb6d 11170eb ca4eb6d 9015bc5 ca4eb6d af1662b 11170eb af1662b ca4eb6d 87abec5 ca4eb6d 11170eb ca4eb6d 11170eb ca4eb6d 9015bc5 ca4eb6d 9da6fea af1662b 096ee5f 709df35 9da6fea d5348c6 9da6fea af1662b |
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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 |
from asyncio import sleep
from traceback import format_exc
from pyrogram import filters
from pyrogram.errors import ChatAdminRequired, ChatNotModified, RPCError
from pyrogram.types import ChatPermissions, Message
from Powers import DEV_USERS, LOGGER, OWNER_ID, SUDO_USERS
from Powers.bot_class import Gojo
from Powers.database.approve_db import Approve
from Powers.utils.caching import ADMIN_CACHE, admin_cache_reload
from Powers.utils.custom_filters import command, restrict_filter
SUDO_LEVEL = set(SUDO_USERS + DEV_USERS + [int(OWNER_ID)])
anti_c_send = [-1001604479593]
anti_forward = [-1001604479593]
anti_forward_u = []
anti_forward_c = []
@Gojo.on_message(command("locktypes"))
async def lock_types(_, m: Message):
await m.reply_text(
(
"**Lock Types:**\n"
" - `all` = Everything\n"
" - `msg` = Messages\n"
" - `media` = Media, such as Photo and Video.\n"
" - `polls` = Polls\n"
" - `invite` = Add users to Group\n"
" - `pin` = Pin Messages\n"
" - `info` = Change Group Info\n"
" - `webprev` = Web Page Previews\n"
" - `inlinebots`, `inline` = Inline bots\n"
" - `animations` = Animations\n"
" - `games` = Game Bots\n"
" - `stickers` = Stickers\n"
" - `anonchannel` = Send as chat will be locked\n"
" - `forwardall` = Forwarding from channel and user\n"
" - `forwardu` = Forwarding from user\n"
" - `forwardc` = Forwarding from channel"
),
)
return
@Gojo.on_message(command("lock") & restrict_filter)
async def lock_perm(c: Gojo, m: Message):
if len(m.text.split()) < 2:
await m.reply_text("Please enter a permission to lock!")
return
lock_type = m.text.split(None, 1)[1]
chat_id = m.chat.id
if not lock_type:
await m.reply_text(text="Specify a permission to lock!")
return
get_perm = m.chat.permissions
msg = get_perm.can_send_messages
media = get_perm.can_send_media_messages
webprev = get_perm.can_add_web_page_previews
polls = get_perm.can_send_polls
info = get_perm.can_change_info
invite = get_perm.can_invite_users
pin = get_perm.can_pin_messages
stickers = animations = games = inlinebots = None
if lock_type == "all":
try:
await c.set_chat_permissions(chat_id, ChatPermissions())
LOGGER.info(f"{m.from_user.id} locked all permissions in {m.chat.id}")
except ChatNotModified:
pass
except ChatAdminRequired:
await m.reply_text(text="I don't have permission to do that")
await m.reply_text("π " + "Locked <b>all</b> permission from this Chat!")
await prevent_approved(m)
return
if lock_type == "msg":
msg = False
perm = "messages"
elif lock_type == "media":
media = False
perm = "audios, documents, photos, videos, video notes, voice notes"
elif lock_type == "stickers":
stickers = False
perm = "stickers"
elif lock_type == "animations":
animations = False
perm = "animations"
elif lock_type == "games":
games = False
perm = "games"
elif lock_type in ("inlinebots", "inline"):
inlinebots = False
perm = "inline bots"
elif lock_type == "webprev":
webprev = False
perm = "web page previews"
elif lock_type == "polls":
polls = False
perm = "polls"
elif lock_type == "info":
info = False
perm = "info"
elif lock_type == "invite":
invite = False
perm = "invite"
elif lock_type == "pin":
pin = False
perm = "pin"
elif lock_type == "anonchannel":
if not len(anti_c_send):
anti_c_send.append(m.chat.id)
elif m.chat.id not in anti_c_send:
anti_c_send.append(m.chat.id)
else:
await m.reply_text("It is already on")
return
await m.reply_text("Locked Send As Chat")
return
elif lock_type == "forwardall":
if not len(anti_forward):
anti_forward.append(m.chat.id)
elif m.chat.id not in anti_forward:
anti_forward.append(m.chat.id)
else:
await m.reply_text("It is already on")
return
await m.reply_text("Locked Forward from user as well as channel")
return
elif lock_type == "forwardu":
if not len(anti_forward_u):
anti_forward_u.append(m.chat.id)
elif m.chat.id not in anti_forward:
anti_forward_u.append(m.chat.id)
else:
await m.reply_text("It is already on")
return
await m.reply_text("Locked Forward message from user")
return
elif lock_type == "forwardc":
if not len(anti_forward_c):
anti_forward_c.append(m.chat.id)
elif m.chat.id not in anti_forward:
anti_forward_c.append(m.chat.id)
else:
await m.reply_text("It is already on")
return
await m.reply_text("Locked Forward message from channel")
return
else:
await m.reply_text(
text=""" Invalid Lock Type!
Use /locktypes to get the lock types"""
)
return
try:
await c.set_chat_permissions(
chat_id,
ChatPermissions(
can_send_messages=msg,
can_send_media_messages=media,
can_send_other_messages=any([stickers, animations, games, inlinebots]),
can_add_web_page_previews=webprev,
can_send_polls=polls,
can_change_info=info,
can_invite_users=invite,
can_pin_messages=pin,
),
)
LOGGER.info(f"{m.from_user.id} locked selected permissions in {m.chat.id}")
except ChatNotModified:
pass
except ChatAdminRequired:
await m.reply_text(text="I don't have permission to do that")
await m.reply_text(
"π " + f"Locked <b>{perm}</b> for this Chat.",
)
await prevent_approved(m)
return
@Gojo.on_message(command("locks") & restrict_filter)
async def view_locks(_, m: Message):
chkmsg = await m.reply_text(text="Checking Chat permissions...")
v_perm = m.chat.permissions
async def convert_to_emoji(val: bool):
if val:
return "β
"
return "β"
anon = False
if m.chat.id in anti_c_send:
anon = True
anti_f = False
if m.chat.id in anti_forward:
anti_f = True
if m.chat.id in anti_forward_u:
anti_f_u = True
if m.chat.id in anti_forward_c:
anti_f_c = True
vmsg = await convert_to_emoji(v_perm.can_send_messages)
vmedia = await convert_to_emoji(v_perm.can_send_media_messages)
vother = await convert_to_emoji(v_perm.can_send_other_messages)
vwebprev = await convert_to_emoji(v_perm.can_add_web_page_previews)
vpolls = await convert_to_emoji(v_perm.can_send_polls)
vinfo = await convert_to_emoji(v_perm.can_change_info)
vinvite = await convert_to_emoji(v_perm.can_invite_users)
vpin = await convert_to_emoji(v_perm.can_pin_messages)
vanon = await convert_to_emoji(anon)
vanti = await convert_to_emoji(anti_f)
vantiu = await convert_to_emoji(anti_f_u)
vantic = await convert_to_emoji(anti_f_c)
if v_perm is not None:
try:
permission_view_str = f"""<b>Chat Permissions:</b>
<b>Send Messages:</b> {vmsg}
<b>Send Media:</b> {vmedia}
<b>Send Stickers:</b> {vother}
<b>Send Animations:</b> {vother}
<b>Can Play Games:</b> {vother}
<b>Can Use Inline Bots:</b> {vother}
<b>Webpage Preview:</b> {vwebprev}
<b>Send Polls:</b> {vpolls}
<b>Change Info:</b> {vinfo}
<b>Invite Users:</b> {vinvite}
<b>Pin Messages:</b> {vpin}
<b>Send as chat:</b> {vanon}
<b>Can forward:</b> {vanti}
<b>Can forward from user:</b> {vantiu}
<b>Can forward from channel and chats:</b> {vantic}
"""
LOGGER.info(f"{m.from_user.id} used locks cmd in {m.chat.id}")
await chkmsg.edit_text(permission_view_str)
except RPCError as e_f:
await chkmsg.edit_text(text="Something went wrong!")
await m.reply_text(e_f)
return
@Gojo.on_message(command("unlock") & restrict_filter)
async def unlock_perm(c: Gojo, m: Message):
if len(m.text.split()) < 2:
await m.reply_text("Please enter a permission to unlock!")
return
unlock_type = m.text.split(None, 1)[1]
chat_id = m.chat.id
if not unlock_type:
await m.reply_text(text="Specify a permission to unlock!")
return
if unlock_type == "all":
try:
await c.set_chat_permissions(
chat_id,
ChatPermissions(
can_send_messages=True,
can_send_media_messages=True,
can_send_other_messages=True,
can_add_web_page_previews=True,
can_send_polls=True,
can_change_info=True,
can_invite_users=True,
can_pin_messages=True,
),
)
LOGGER.info(f"{m.from_user.id} unlocked all permissions in {m.chat.id}")
except ChatNotModified:
pass
except ChatAdminRequired:
await m.reply_text(text="I don't have permission to do that")
await m.reply_text("π " + "Unlocked <b>all</b> permission from this Chat!")
await prevent_approved(m)
return
get_uperm = m.chat.permissions
umsg = get_uperm.can_send_messages
umedia = get_uperm.can_send_media_messages
uwebprev = get_uperm.can_add_web_page_previews
upolls = get_uperm.can_send_polls
uinfo = get_uperm.can_change_info
uinvite = get_uperm.can_invite_users
upin = get_uperm.can_pin_messages
ustickers = uanimations = ugames = uinlinebots = None
if unlock_type == "msg":
umsg = True
uperm = "messages"
elif unlock_type == "media":
umedia = True
uperm = "audios, documents, photos, videos, video notes, voice notes"
elif unlock_type == "stickers":
ustickers = True
uperm = "stickers"
elif unlock_type == "animations":
uanimations = True
uperm = "animations"
elif unlock_type == "games":
ugames = True
uperm = "games"
elif unlock_type in ("inlinebots", "inline"):
uinlinebots = True
uperm = "inline bots"
elif unlock_type == "webprev":
uwebprev = True
uperm = "web page previews"
elif unlock_type == "polls":
upolls = True
uperm = "polls"
elif unlock_type == "info":
uinfo = True
uperm = "info"
elif unlock_type == "invite":
uinvite = True
uperm = "invite"
elif unlock_type == "pin":
upin = True
uperm = "pin"
elif unlock_type == "anonchannel":
try:
if not len(anti_c_send) or m.chat.id not in anti_c_send:
await m.reply_text("Already off")
return
anti_c_send.remove(m.chat.id)
await m.reply_text("Send as chat is now enabled for this chat")
return
except ValueError:
await m.reply_text("It is already off")
return
elif unlock_type == "forwardall":
try:
if not len(anti_forward) or m.chat.id not in anti_forward:
await m.reply_text("Already off")
return
anti_forward.remove(m.chat.id)
await m.reply_text("Forwarding content is now enabled for this chat")
return
except ValueError:
await m.reply_text("It is already off")
return
elif unlock_type == "forwardu":
try:
if not len(anti_forward_u) or m.chat.id not in anti_forward_u:
await m.reply_text("Already off")
return
anti_forward_u.remove(m.chat.id)
await m.reply_text("Forwarding content is now enabled for this chat")
return
except ValueError:
await m.reply_text("It is already off")
return
elif unlock_type == "forwardc":
try:
if not len(anti_forward_c) or m.chat.id not in anti_forward_c:
await m.reply_text("Already off")
return
anti_forward_c.remove(m.chat.id)
await m.reply_text("Forwarding content is now enabled for this chat")
return
except ValueError:
await m.reply_text("It is already off")
return
else:
await m.reply_text(
text="""Invalid Lock Type!
Use /locktypes to get the lock types"""
)
return
try:
LOGGER.info(f"{m.from_user.id} unlocked selected permissions in {m.chat.id}")
await c.set_chat_permissions(
chat_id,
ChatPermissions(
can_send_messages=umsg,
can_send_media_messages=umedia,
can_send_other_messages=any(
[ustickers, uanimations, ugames, uinlinebots],
),
can_add_web_page_previews=uwebprev,
can_send_polls=upolls,
can_change_info=uinfo,
can_invite_users=uinvite,
can_pin_messages=upin,
),
)
except ChatNotModified:
pass
except ChatAdminRequired:
await m.reply_text(text="I don't have permission to do that")
await m.reply_text(
"π " + f"Unlocked <b>{uperm}</b> for this Chat.",
)
await prevent_approved(m)
return
async def delete_messages(c:Gojo, m: Message):
try:
await m.delete()
return
except RPCError as rp:
LOGGER.error(rp)
LOGGER.error(format_exc())
return
async def is_approved_user(c:Gojo, m: Message):
approved_users = Approve(m.chat.id).list_approved()
ul = [user[0] for user in approved_users]
try:
admins_group = {i[0] for i in ADMIN_CACHE[m.chat.id]}
except KeyError:
admins_group = await admin_cache_reload(m, "lock")
if m.forward_from:
if m.from_user.id in ul or m.from_user.id in SUDO_LEVEL or m.from_user.id in admins_group:
return True
return False
elif m.forward_from_chat:
x_chat = (await c.get_chat(m.forward_from_chat.id)).linked_chat
if not x_chat:
return False
elif x_chat and x_chat.id == m.chat.id:
return True
return False
@Gojo.on_message(filters.all & ~filters.me,18)
async def lock_del_mess(c:Gojo, m: Message):
all_chats = anti_c_send + anti_forward + anti_forward_c + anti_forward_u
if m.chat.id not in all_chats:
return
if m.sender_chat and not (m.forward_from_chat or m.forward_from):
await delete_messages(c,m)
return
elif m.forward_from or m.forward_from_chat:
is_approved = await is_approved_user(c,m)
if not is_approved:
if m.chat.id in anti_forward:
await delete_messages(c,m)
return
elif m.chat.id in anti_forward_u and not m.forward_from_chat:
await delete_messages(c,m)
return
elif m.chat.id in anti_forward_c and m.forward_from_chat:
await delete_messages(c,m)
return
async def prevent_approved(m: Message):
approved_users = Approve(m.chat.id).list_approved()
ul = [user[0] for user in approved_users]
for i in ul:
try:
await m.chat.unban_member(user_id=i)
except (ChatAdminRequired, ChatNotModified, RPCError):
continue
LOGGER.info(f"Approved {i} in {m.chat.id}")
await sleep(0.1)
return
__PLUGIN__ = "locks"
__alt_name__ = ["grouplock", "lock", "grouplocks"]
__HELP__ = """
**Locks**
Use this to lock group permissions.
Allows you to lock and unlock permission types in the chat.
**Usage:**
β’ /lock `<type>`: Lock Chat permission.
β’ /unlock `<type>`: Unlock Chat permission.
β’ /locks: View Chat permission.
β’ /locktypes: Check available lock types!
**Example:**
`/lock media`: this locks all the media messages in the chat."""
|