File size: 7,748 Bytes
45d8014 |
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 |
from pyrogram import *
from pyrogram.types import *
from akn.utils.database import db
unmute_permissions = ChatPermissions(
can_send_messages=True,
can_send_media_messages=True,
can_send_polls=True,
can_change_info=False,
can_invite_users=True,
can_pin_messages=False,
)
async def extract_userid(message, text: str):
def is_int(text: str):
try:
int(text)
except ValueError:
return False
return True
text = text.strip()
if is_int(text):
return int(text)
entities = message.entities
app = message._client
if len(entities) < 2:
return (await app.get_users(text)).id
entity = entities[1]
if entity.type == "mention":
return (await app.get_users(text)).id
if entity.type == "text_mention":
return entity.user.id
return None
async def extract_user_and_reason(message, sender_chat=False):
args = message.text.strip().split()
text = message.text
user = None
reason = None
if message.reply_to_message:
reply = message.reply_to_message
if not reply.from_user:
if (
reply.sender_chat
and reply.sender_chat != message.chat.id
and sender_chat
):
id_ = reply.sender_chat.id
else:
return None, None
else:
id_ = reply.from_user.id
if len(args) < 2:
reason = None
else:
reason = text.split(None, 1)[1]
return id_, reason
if len(args) == 2:
user = text.split(None, 1)[1]
return await extract_userid(message, user), None
if len(args) > 2:
user, reason = text.split(None, 2)[1:]
return await extract_userid(message, user), reason
return user, reason
async def extract_user(message):
return (await extract_user_and_reason(message))[0]
@Client.on_message(
~filters.scheduled
& filters.command(["ban", "dban"])
& ~filters.forwarded
)
async def arz_ban_user(client: Client, message: Message):
user_id, reason = await extract_user_and_reason(message, sender_chat=True)
bot = (await client.get_chat_member(message.chat.id, client.me.id)).privileges
if not bot.can_restrict_members:
return await message.edit_text("I don't have enough permissions")
if not user_id:
return await message.edit_text("I can't find that user.")
if user_id == client.me.id:
return await message.edit_text("I can't ban myself.")
if user_id == 1191668125:
return await message.edit_text("I can't ban my developer!")
try:
mention = (await client.get_users(user_id)).mention
except IndexError:
mention = (
message.reply_to_message.sender_chat.title
if message.reply_to_message
else "Anon"
)
msg = (
f"**Banned User:** <a href='tg://user?id={user_id}'>{mention}</a>\n"
f"**Banned By:** [{message.from_user.mention}](tg://user?id={message.from_user.id if message.from_user else 0})\n"
)
if message.command[0][0] == "d":
await message.reply_to_message.delete()
if reason:
msg += f"**Reason:** {reason}"
await message.chat.ban_member(user_id)
await message.reply_text(
msg,
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"Unban", callback_data=f"arzunban_{user_id}"
)
]
]
)
)
@Client.on_message(
~filters.scheduled
& filters.command(["unban"])
& ~filters.forwarded
)
async def arz_unban_user(client: Client, message: Message):
user_id, reason = await extract_user_and_reason(message, sender_chat=True)
if not user_id:
return await message.edit_text("I can't find that user.")
if user_id == client.me.id:
return await message.edit_text("I can't unban myself.")
if user_id == 1191668125:
return await message.edit_text("I can't unban my developer!")
try:
mention = (await client.get_users(user_id)).mention
except IndexError:
mention = (
message.reply_to_message.sender_chat.title
if message.reply_to_message
else "Anon"
)
msg = (
f"**Unbanned User:** <a href='tg://user?id={user_id}'>{mention}</a>\n"
f"**Unbanned By:** [{message.from_user.mention}](tg://user?id={message.from_user.id if message.from_user else 0})\n"
)
if reason:
msg += f"**Reason:** {reason}"
await message.chat.unban_member(user_id)
await message.reply_text(msg)
@Client.on_message(
~filters.scheduled
& filters.command(["banme"])
& ~filters.forwarded
)
async def arz_ban_me(client: Client, message: Message):
user_id = message.from_user.id
reason = None
if not user_id:
return await message.edit_text("I can't find that user.")
if user_id == client.me.id:
return await message.edit_text("I can't ban myself.")
if user_id == 1191668125:
return await message.edit_text("I can't ban my developer!")
try:
mention = (await client.get_users(user_id)).mention
except IndexError:
mention = (
message.reply_to_message.sender_chat.title
if message.reply_to_message
else "Anon"
)
msg = (
f"**Banned User:** <a href='tg://user?id={user_id}'>{mention}</a>\n"
f"**Banned By:** [{message.from_user.mention}](tg://user?id={message.from_user.id if message.from_user else 0})\n"
)
if reason:
msg += f"**Reason:** {reason}"
await message.chat.ban_member(user_id)
await message.reply_text(
msg,
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"Unban", callback_data=f"arzunban_{user_id}"
)
]
]
)
)
@Client.on_message(
~filters.scheduled
& filters.command(["mute", "dmute"])
& ~filters.forwarded
)
async def arz_mute(client: Client, message: Message):
user_id, reason = await extract_user_and_reason(message, sender_chat=True)
bot = (await client.get_chat_member(message.chat.id, client.me.id)).privileges
if not bot.can_restrict_members:
return await message.edit_text("I don't have enough permissions")
if not user_id:
return await message.edit_text("I can't find that user.")
if user_id == client.me.id:
return await message.edit_text("I can't mute myself.")
if user_id == 1191668125:
return await message.edit_text("I can't mute my developer!")
try:
mention = (await client.get_users(user_id)).mention
except IndexError:
mention = (
message.reply_to_message.sender_chat.title
if message.reply_to_message
else "Anon"
)
msg = (
f"**Muted User:** <a href='tg://user?id={user_id}'>{mention}</a>\n"
f"**Muted By:** [{message.from_user.mention}](tg://user?id={message.from_user.id if message.from_user else 0})\n"
)
if message.command[0][0] == "d":
await message.reply_to_message.delete()
if reason:
msg += f"**Reason:** {reason}"
await message.chat.restrict_member(user_id, ChatPermissions())
await message.reply_text(
msg,
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"Unmute", callback_data=f"arzunmute_{user_id}"
)
]
]
)
) |