Co-authored-by: Aditya <xditya@ultroid.tech> Co-authored-by: Danish <danish@ultroid.tech> Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com> Co-authored-by: TechiError <error@notavailable.live> Co-authored-by: Avish Kumar <85635883+aviskumar@users.noreply.github.com> Co-authored-by: Vɪɴᴀʏᴀᴋ Pᴀɴᴅᴇʏ <87496159+harpia-vieillot@users.noreply.github.com> Co-authored-by: Shrimadhav U K <6317196+spechide@users.noreply.github.com> Co-authored-by: Dark <darkbeamer.official@gmail.com> Co-authored-by: Muhamad Risman Aziz <62795826+mrismanaziz@users.noreply.github.com> Co-authored-by: Ashik Muhammed <84127769+MR-JINN-OF-TG@users.noreply.github.com> Co-authored-by: MMETMA <79155572+MMETMA@users.noreply.github.com> Co-authored-by: amirmehdinzri <94852182+amirmehdinzri@users.noreply.github.com>
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
# 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}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 pyUltroid.functions.admins import lock_unlock
|
|
from telethon.tl.functions.messages import EditChatDefaultBannedRightsRequest
|
|
|
|
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)
|
|
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}` ! ")
|