Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add admin check for locks #70

Merged
merged 1 commit into from
Jun 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions userge/plugins/admin/locks.py
Original file line number Diff line number Diff line change
@@ -15,6 +15,18 @@
CHANNEL = userge.getCLogger(__name__)


async def is_admin(message: Message):
check_user = await userge.get_chat_member(message.chat.id, message.from_user.id)
user_type = check_user.status
if user_type == "member":
return False
if user_type == "administrator":
return True
if user_type == "creator":
return True
return False


@userge.on_cmd("lock", about={
'header': "use this to lock group permissions",
'description': "Allows you to lock some common permission types in the chat.\n"
@@ -28,6 +40,10 @@ async def lock_perm(message: Message):
"""
lock chat permissions from tg group
"""
if not await is_admin(message):
await message.edit("Are you even Admin of this chat?")
return

msg = ""
media = ""
stickers = ""
@@ -168,6 +184,10 @@ async def unlock_perm(message: Message):
"""
unlock chat permissions from tg group
"""
if not await is_admin(message):
await message.edit("Are you even Admin of this chat?")
return

umsg = ""
umedia = ""
ustickers = ""
@@ -313,6 +333,9 @@ async def view_perm(message: Message):
"""
check chat permissions from tg group
"""
if not await is_admin(message):
await message.edit("Are you even Admin of this chat?")
return

v_perm = ""
vmsg = ""