File size: 1,315 Bytes
618430a |
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 |
# Ultroid - UserBot
# Copyright (C) 2021-2025 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}lock <msgs/media/sticker/gif/games/inline/polls/invites/pin/changeinfo>`
Lock the Used Setting in Used Group.
• `{i}unlock <msgs/media/sticker/gif/games/inline/polls/invites/pin/changeinfo>`
UNLOCK the Used Setting in Used Group.
"""
from telethon.tl.functions.messages import EditChatDefaultBannedRightsRequest
from pyUltroid.fns.admins import lock_unlock
from . import ultroid_cmd
@ultroid_cmd(
pattern="(un|)lock( (.*)|$)", admins_only=True, manager=True, require="change_info"
)
async def un_lock(e):
mat = e.pattern_match.group(2).strip()
if not mat:
return await e.eor("`Give some Proper Input..`", time=5)
lock = e.pattern_match.group(1) == ""
ml = lock_unlock(mat, lock)
if not ml:
return await e.eor("`Incorrect Input`", time=5)
msg = "Locked" if lock else "Unlocked"
try:
await e.client(EditChatDefaultBannedRightsRequest(e.chat_id, ml))
except Exception as er:
return await e.eor(str(er))
await e.eor(f"**{msg}** - `{mat}` ! ")
|