Spaces:
Sleeping
Sleeping
File size: 18,629 Bytes
9d5781e 1fbd78c 9d5781e 1fbd78c 9d5781e 1fbd78c 9d5781e 1fbd78c 9d5781e 1fbd78c 9d5781e 1476bad 9d5781e 474e825 9d5781e 474e825 9d5781e 74122f5 474e825 9d5781e 1476bad 9d5781e 474e825 9d5781e 474e825 9d5781e 474e825 9d5781e 1476bad 9d5781e 474e825 9d5781e 474e825 9d5781e 474e825 9d5781e 1476bad 9d5781e 183e3a8 9d5781e 1476bad 1fbd78c 8171e04 1fbd78c 9d5781e 227b263 9d5781e 36e5ee7 9743e83 36e5ee7 1476bad 36e5ee7 74122f5 cf11ddf 36e5ee7 9d5781e 1fbd78c 1476bad 1fbd78c 8171e04 1fbd78c 9d5781e 1476bad 9d5781e 1476bad 9d5781e f100e6b 5367261 9d5781e 1476bad 9d5781e 474e825 9d5781e 1476bad 1fbd78c 9d5781e 1476bad 9d5781e 54fcb8e 1476bad 9d5781e 1476bad 74122f5 cf11ddf 1476bad cf11ddf 1476bad cf11ddf 1476bad cf11ddf 1476bad 474e825 1476bad cf11ddf 1476bad cf11ddf 1476bad 9d5781e 1fbd78c 9d5781e 1fbd78c 9d5781e 1fbd78c 9d5781e 1476bad e6eeb72 9d5781e 1476bad c330dc1 9d5781e 1476bad 9d5781e 1476bad f872943 1476bad f872943 1fbd78c 1476bad 1fbd78c e6eeb72 1fbd78c e6eeb72 1fbd78c e6eeb72 1fbd78c 4faac6b 1fbd78c 36e5ee7 474e825 36e5ee7 |
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 510 511 512 513 514 515 516 517 518 519 520 |
import time
from random import choice
from traceback import format_exc
from pyrogram import filters
from pyrogram.enums import ChatMemberStatus as CMS
from pyrogram.enums import ChatType as CT
from pyrogram.errors import RPCError, UserAdminInvalid
from pyrogram.types import (CallbackQuery, ChatPermissions,
InlineKeyboardButton, InlineKeyboardMarkup,
Message)
from Powers import LOGGER, SUPPORT_GROUP, SUPPORT_STAFF
from Powers.bot_class import Gojo
from Powers.database.approve_db import Approve
from Powers.database.flood_db import Floods
from Powers.utils.custom_filters import admin_filter, command
from Powers.utils.extras import BAN_GIFS, KICK_GIFS, MUTE_GIFS
from Powers.utils.kbhelpers import ikb
from Powers.vars import Config
on_key = ["on", "start", "disable"]
off_key = ["off", "end", "enable", "stop"]
close_kb =InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"Close ❌",
callback_data="f_close"
)
]
]
)
action_kb = InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"Mute 🔇",
callback_data="f_mute"
),
InlineKeyboardButton(
"Ban 🚷",
callback_data="f_ban"
),
InlineKeyboardButton(
"Kick 🦿",
callback_data="f_kick"
)
],
[
InlineKeyboardButton(
"➡️ Skip",
callback_data="f_skip"
)
]
]
)
within_kb = InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"5",
callback_data="f_f_5"
),
InlineKeyboardButton(
"10",
callback_data="f_f_10"
),
InlineKeyboardButton(
"15",
callback_data="f_f_15"
)
],
[
InlineKeyboardButton(
"➡️ Skip",
callback_data="f_f_skip"
)
]
]
)
limit_kb = InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"5",
callback_data="f_5"
),
InlineKeyboardButton(
"10",
callback_data="f_10"
),
InlineKeyboardButton(
"15",
callback_data="f_15"
)
],
[
InlineKeyboardButton(
"➡️ Skip",
callback_data="f_f_f_skip"
)
]
]
)
@Gojo.on_message(command(['floodaction','actionflood']) & admin_filter)
async def flood_action(c: Gojo, m: Message):
Flood = Floods()
bot = await c.get_chat_member(m.chat.id, Config.BOT_ID)
status = bot.status
if not status in [CMS.OWNER, CMS.ADMINISTRATOR]:
if not bot.privileges.can_restrict_members:
return await m.reply_text("Give me permission to restict member first")
if m.chat.type == CT.PRIVATE:
await m.reply_text("Use this command in group")
return
c_id = m.chat.id
is_flood = Flood.is_chat(c_id)
if is_flood:
saction = is_flood[2]
await m.reply_text(
f"Choose a action given bellow to do when flood happens.\n **CURRENT ACTION** is {saction}",
reply_markup=action_kb
)
return
await m.reply_text("Switch on the flood protection first.")
return
@Gojo.on_message(command(['isflood', 'flood']) & ~filters.bot)
async def flood_on_off(c: Gojo, m: Message):
if m.chat.type == CT.PRIVATE:
return await m.reply_text("This command is ment to be used in groups.")
Flood = Floods()
c_id = m.chat.id
is_flood = Flood.is_chat(c_id)
c_id = m.chat.id
if is_flood:
saction = is_flood[2]
slimit = is_flood[0]
swithin = is_flood[1]
return await m.reply_text(f"Flood is on for this chat\n**Action**: {saction}\n**Messages**: {slimit} within {swithin} sec")
return await m.reply_text("Flood protection is off for this chat.")
@Gojo.on_message(command(['setflood']) & ~filters.bot & admin_filter)
async def flood_set(c: Gojo, m: Message):
bot = await c.get_chat_member(m.chat.id, Config.BOT_ID)
Flood = Floods()
status = bot.status
if not status in [CMS.OWNER, CMS.ADMINISTRATOR]:
if not bot.privileges.can_restrict_members:
return await m.reply_text("Give me permission to restict member first")
if m.chat.type == CT.PRIVATE:
return await m.reply_text("This command is ment to be used in groups.")
split = m.text.split(None, 1)
c_id = m.chat.id
is_flood = Flood.is_chat(c_id)
if len(split) == 1:
c_id = m.chat.id
if is_flood:
saction = is_flood[2]
slimit = is_flood[0]
swithin = is_flood[1]
return await m.reply_text(f"Flood is on for this chat\n**Action**:{saction}\n**Messages**:{slimit} within {swithin} sec")
return await m.reply_text("Flood protection is off of this chat.")
if len(split) == 2:
c_id = m.chat.id
if split[1].lower() in on_key:
if is_flood:
return await m.reply_text(f"Flood is on for this chat\n**Action**:{saction}\n**Messages**:{slimit} within {swithin} sec")
Flood.save_flood(m.chat.id, 5, 5, 'mute')
await m.reply_text("Flood protection has been started for this group.")
return
if split[1].lower() in off_key:
x = Flood.rm_flood(c_id)
if x:
await m.reply_text("Flood protection has been stopped for this chat")
return
await m.reply_text("Failed to stop flood protection")
return
await m.reply_text("**Usage:**\n `/setflood on/off`")
return
@Gojo.on_callback_query(filters.regex("^f_"))
async def callbacks(c: Gojo, q: CallbackQuery):
data = q.data
if data == "f_close":
await q.answer("Closed")
await q.message.delete()
return
c_id = q.message.chat.id
Flood = Floods()
is_flood = Flood.is_chat(c_id)
if is_flood:
saction = is_flood[2]
slimit = is_flood[0]
swithin = is_flood[1]
user = q.from_user.id
user_status = (await q.message.chat.get_member(q.from_user.id)).status
if user in SUPPORT_STAFF or user_status in [CMS.OWNER, CMS.ADMINISTRATOR]:
if data in ["f_mute", "f_ban", "f_kick", "f_skip"]:
change = data.split("_")[1]
if not change == saction:
Flood.save_flood(c_id, slimit, swithin, change)
await q.answer("Updated action", show_alert=True)
await q.edit_message_text(
f"Set the limit of message after the flood protection will be activated\n **CURRENT LIMIT** {slimit} messages",
reply_markup=limit_kb
)
return
elif change == "skip":
await q.answer("Skip", show_alert=True)
await q.edit_message_text(
f"Set the limit of message after the flood protection will be activated\n **CURRENT LIMIT** {slimit} messages",
reply_markup=limit_kb
)
else:
await q.answer("Updated action", show_alert=True)
await q.edit_message_text(
f"Set the limit of message after the flood protection will be activated\n **CURRENT LIMIT** {slimit} messages",
reply_markup=limit_kb
)
elif data in ["f_5", "f_10", "f_15", "f_f_f_skip"]:
try:
change = int(data.split("_")[-1])
except ValueError:
await q.answer("skip")
await q.edit_message_text(
f"Set the time with the number of message recived treated as flood\n **CUURENT TIME** {swithin}",
reply_markup=within_kb
)
return
if not change == slimit:
Flood.save_flood(c_id, change, swithin, saction)
await q.answer("Updated limit", show_alert=True)
await q.edit_message_text(
f"Set the time with the number of message recived treated as flood\n **CUURENT TIME** {swithin}",
reply_markup=within_kb
)
return
else:
await q.answer("Updated action", show_alert=True)
await q.edit_message_text(
f"Set the time with the number of message recived treated as flood\n **CUURENT TIME** {swithin}",
reply_markup=within_kb
)
return
elif data in ["f_f_5", "f_f_10", "f_f_15", "f_f_skip"]:
data = data.split("_")[-1]
try:
change = int(data)
except ValueError:
await q.edit_message_text(
"Flood protection setting has been updated",
reply_markup=close_kb
)
return
await q.answer("skip")
if not change == swithin:
Flood.save_flood(c_id, slimit, change, saction)
await q.answer("Updated", show_alert=True)
await q.edit_message_text(
"Flood protection setting has been updated",
reply_markup=close_kb
)
return
else:
await q.answer("Updated action", show_alert=True)
await q.edit_message_text(
f"Set the limit of message after the flood protection will be activated\n **CURRENT LIMIT** {slimit} messages",
reply_markup=limit_kb
)
else:
await q.answer(
"You don't have enough permission to do this!\nStay in your limits!",
show_alert=True,
)
return
@Gojo.on_callback_query(filters.regex("^un_"))
async def reverse_callbacks(c: Gojo, q: CallbackQuery):
data = q.data.split("_")
action = data[1]
user_id = int(q.data.split("=")[1])
if action == "ban":
user = await q.message.chat.get_member(q.from_user.id)
if not user.privileges.can_restrict_members and q.from_user.id in SUPPORT_STAFF:
await q.answer(
"You don't have enough permission to do this!\nStay in your limits!",
show_alert=True,
)
return
whoo = await c.get_chat(user_id)
doneto = whoo.first_name if whoo.first_name else whoo.title
try:
await q.message.chat.unban_member(user_id)
except RPCError as e:
await q.message.edit_text(f"Error: {e}")
return
await q.message.edit_text(f"{q.from_user.mention} unbanned {doneto}!")
return
if action == "mute":
user = await q.message.chat.get_member(q.from_user.id)
if not user.privileges.can_restrict_members and q.from_user.id in SUPPORT_STAFF:
await q.answer(
"You don't have enough permission to do this!\nStay in your limits!",
show_alert=True,
)
return
whoo = await c.get_users(user_id)
try:
await q.message.chat.unban_member(user_id)
except RPCError as e:
await q.message.edit_text(f"Error: {e}")
return
await q.message.edit_text(f"{q.from_user.mention} unmuted {whoo.mention}!")
return
dic = {}
@Gojo.on_message(filters.all & ~filters.bot | ~filters.private, 10)
async def flood_watcher(c: Gojo, m: Message):
c_id = m.chat.id
Flood = Floods()
try:
u_id = m.from_user.id
except AttributeError:
return # Get this error when the message received is not by an user and return
is_flood = Flood.is_chat(c_id)
if not is_flood:
return # return of chat is not in anti flood protection
app_users = Approve(m.chat.id).list_approved()
if u_id in {i[0] for i in app_users}:
return #return if the user is approved
if not is_flood or u_id in SUPPORT_STAFF:
return #return if the user is in support_staff
user_status = (await m.chat.get_member(m.from_user.id)).status
if user_status in [CMS.OWNER, CMS.ADMINISTRATOR]:
return #return if the user is owner or admin
action = is_flood[2]
limit = int(is_flood[0])
within = int(is_flood[1])
if not len(dic):
z = {c_id : {u_id : [[],[]]}}
dic.update(z)
try:
dic[c_id] # access and check weather the c_id present or not
except KeyError:
z = {c_id : {u_id : [[],[]]}}
dic.update(z)
try:
dic[c_id][u_id]
except KeyError:
z = {u_id : [[],[]]}
dic[c_id].update(z) # make the dic something like {c_id : {u_id : [[for time],[for msg]]}}
sec = round(time.time())
try:
dic[c_id][u_id][0].append(sec)
dic[c_id][u_id][1].append("x")
except KeyError:
dic[c_id].update({u_id : [[sec], ["x"]]})
x = int(dic[c_id][u_id][0][0])
y = int(dic[c_id][u_id][0][-1])
if len(dic[c_id][u_id][1]) == limit:
if y-x <= within:
if action == "ban":
try:
await m.chat.ban_member(u_id)
keyboard = InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"Unban",
callback_data=f"un_ban_={u_id}",
),
],
],
)
txt = "Don't dare to spam here if I am around!"
await m.reply_animation(
animation=str(choice(BAN_GIFS)),
caption=txt,
reply_markup=keyboard,
)
dic[c_id][u_id][1].clear()
dic[c_id][u_id][0].clear()
return
except UserAdminInvalid:
await m.reply_text(
"I can't protect this chat from this user",
)
dic[c_id][u_id][1].clear()
dic[c_id][u_id][0].clear()
return
except RPCError as ef:
await m.reply_text(
text=f"""Some error occured, report to @{SUPPORT_GROUP}
<b>Error:</b> <code>{ef}</code>"""
)
LOGGER.error(ef)
LOGGER.error(format_exc())
dic[c_id][u_id][1].clear()
dic[c_id][u_id][0].clear()
return
elif action == "kick":
try:
await m.chat.ban_member(u_id)
txt = "Don't dare to spam here if I am around!"
await m.reply_animation(
animation=str(choice(KICK_GIFS)),
caption=txt,
)
await m.chat.unban_member(u_id)
dic[c_id][u_id][1].clear()
dic[c_id][u_id][0].clear()
return
except UserAdminInvalid:
await m.reply_text(
"I can't protect this chat from this user",
)
dic[c_id][u_id][1].clear()
dic[c_id][u_id][0].clear()
return
except RPCError as ef:
await m.reply_text(
text=f"""Some error occured, report to @{SUPPORT_GROUP}
<b>Error:</b> <code>{ef}</code>"""
)
LOGGER.error(ef)
LOGGER.error(format_exc())
dic[c_id][u_id][1].clear()
dic[c_id][u_id][0].clear()
return
elif action == "mute":
try:
await m.chat.restrict_member(
u_id,
ChatPermissions(),
)
keyboard = InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"Unmute",
callback_data=f"un_mute_={u_id}",
),
],
],
)
txt = "Don't dare to spam here if I am around!"
await m.reply_animation(
animation=str(choice(MUTE_GIFS)),
caption=txt,
reply_markup=keyboard,
)
dic[c_id][u_id][1].clear()
dic[c_id][u_id][0].clear()
return
except UserAdminInvalid:
await m.reply_text(
"I can't protect this chat from this user",
)
dic[c_id][u_id][1].clear()
dic[c_id][u_id][0].clear()
return
except RPCError as ef:
await m.reply_text(
text=f"""Some error occured, report to @{SUPPORT_GROUP}
<b>Error:</b> <code>{ef}</code>"""
)
LOGGER.error(ef)
LOGGER.error(format_exc())
dic[c_id][u_id][1].clear()
dic[c_id][u_id][0].clear()
return
elif y-x > within:
try:
dic[c_id][u_id][1].clear()
dic[c_id][u_id][0].clear()
return
except Exception:
pass
else:
return
__PLUGIN__ = "flood"
__alt_name__ = [
"anit-flood",
"flood",
"spam",
"anti-spam",
]
__HELP__ = """
**Anti Flood**
**User Commands:**
• /flood: to check weather the group is protected from spam or not.
**Admin only:**
• /setflood `on/off`: To activate or deactivate the flood protection
• /floodaction: To customize the flood settings.
**Example:**
`/setflood on`
"""
|