mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2026-01-02 18:44:51 +00:00
* Big Update Coming * reformating: code * 'Refactored by Sourcery' (#51) Co-authored-by: Sourcery AI <> --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: methneviebyvaet <77743895+meth1337@users.noreply.github.com>
72 lines
3.5 KiB
Python
72 lines
3.5 KiB
Python
from pyrogram import Client, filters
|
|
from pyrogram.types import Message
|
|
|
|
from database.sangmata_db import *
|
|
from misskaty import app
|
|
from misskaty.core.decorator.permissions import adminsOnly
|
|
from misskaty.core.decorator.ratelimiter import ratelimiter
|
|
from misskaty.helper.localization import use_chat_lang
|
|
from misskaty.vars import COMMAND_HANDLER
|
|
|
|
__MODULE__ = "SangMata"
|
|
__HELP__ = """"
|
|
This feature inspired from SangMata Bot. I'm created simple detection to check user data include username, first_name, and last_name.
|
|
/sangmata_set [on/off] - Enable/disable sangmata in groups.
|
|
"""
|
|
|
|
|
|
# Check user that change first_name, last_name and usernaname
|
|
@app.on_message(
|
|
filters.group & ~filters.bot & ~filters.via_bot,
|
|
group=3,
|
|
)
|
|
@use_chat_lang()
|
|
async def cek_mataa(self: Client, ctx: Message, strings):
|
|
if ctx.sender_chat or not await is_sangmata_on(ctx.chat.id):
|
|
return
|
|
if not await cek_userdata(ctx.from_user.id):
|
|
return await add_userdata(ctx.from_user.id, ctx.from_user.username, ctx.from_user.first_name, ctx.from_user.last_name)
|
|
usernamebefore, first_name, lastname_before = await get_userdata(ctx.from_user.id)
|
|
msg = ""
|
|
if usernamebefore != ctx.from_user.username or first_name != ctx.from_user.first_name or lastname_before != ctx.from_user.last_name:
|
|
msg += f"👀 <b>Mata MissKaty</b>\n\n🌞 User: {ctx.from_user.mention} [<code>{ctx.from_user.id}</code>]\n"
|
|
if usernamebefore != ctx.from_user.username:
|
|
usernamebefore = f"@{usernamebefore}" if usernamebefore else strings("no_uname")
|
|
usernameafter = f"@{ctx.from_user.username}" if ctx.from_user.username else strings("no_uname")
|
|
msg += strings("uname_change_msg").format(bef=usernamebefore, aft=usernameafter)
|
|
await add_userdata(ctx.from_user.id, ctx.from_user.username, ctx.from_user.first_name, ctx.from_user.last_name)
|
|
if first_name != ctx.from_user.first_name:
|
|
msg += strings("firstname_change_msg").format(bef=first_name, aft=ctx.from_user.first_name)
|
|
await add_userdata(ctx.from_user.id, ctx.from_user.username, ctx.from_user.first_name, ctx.from_user.last_name)
|
|
if lastname_before != ctx.from_user.last_name:
|
|
lastname_before = lastname_before or strings("no_last_name")
|
|
lastname_after = ctx.from_user.last_name or strings("no_last_name")
|
|
msg += strings("lastname_change_msg").format(bef=lastname_before, aft=lastname_after)
|
|
await add_userdata(ctx.from_user.id, ctx.from_user.username, ctx.from_user.first_name, ctx.from_user.last_name)
|
|
if msg != "":
|
|
await ctx.reply_msg(msg, quote=True)
|
|
|
|
|
|
@app.on_message(filters.group & filters.command("sangmata_set", COMMAND_HANDLER) & ~filters.bot & ~filters.via_bot)
|
|
@adminsOnly("can_change_info")
|
|
@ratelimiter
|
|
@use_chat_lang()
|
|
async def set_mataa(self: Client, ctx: Message, strings):
|
|
if len(ctx.command) == 1:
|
|
return await ctx.reply_msg(strings("set_sangmata_help").format(cmd=ctx.command[0]), del_in=6)
|
|
if ctx.command[1] == "on":
|
|
cekset = await is_sangmata_on(ctx.chat.id)
|
|
if cekset:
|
|
await ctx.reply_msg(strings("sangmata_already_on"))
|
|
else:
|
|
await sangmata_on(ctx.chat.id)
|
|
await ctx.reply_msg(strings("sangmata_enabled"))
|
|
elif ctx.command[1] == "off":
|
|
cekset = await is_sangmata_on(ctx.chat.id)
|
|
if not cekset:
|
|
await ctx.reply_msg(strings("sangmata_already_off"))
|
|
else:
|
|
await sangmata_off(ctx.chat.id)
|
|
await ctx.reply_msg(strings("sangmata_disabled"))
|
|
else:
|
|
await ctx.reply_msg(strings("wrong_param"), del_in=6)
|