Files
limoka/GeekTG/FTG-Modules/conthelper.py
2025-07-10 21:02:34 +03:00

137 lines
5.2 KiB
Python

# -*- coding: utf-8 -*-
# Module author: @Yahikor0
from telethon import functions
from .. import loader, utils
@loader.tds
class ConthelperMod(loader.Module):
"""
Commands:
"""
strings = {
"name": "Conthelper",
"blocked": "<b>{} was blacklisted.</b>",
"unblocked": "<b>{} removed from the blacklist.</b>",
"delcontact": "<b>{} was removed from contacts.</b>",
"who_to_block": "<b>Indicate, who to block.</b>",
"who_to_unblock": "<b>Indicate, who to unblock.</b>",
"who_to_delcontact": "<b>Indicate, who to remove from contacts.</b>",
}
def __init__(self):
self.me = None
async def client_ready(self, client, db):
self.db = db
self.client = client
self.me = await client.get_me(True)
async def reportcmd(self, message):
"""User report for spam."""
args = utils.get_args_raw(message)
reply = await message.get_reply_message()
if message.chat_id != (await message.client.get_me()).id and message.is_private:
user = await message.client.get_entity(message.chat_id)
else:
if args:
user = await message.client.get_entity(
args if not args.isnumeric() else int(args)
)
if reply:
user = await message.client.get_entity(reply.sender_id)
else:
return await message.edit("<b>Who I must report?</b>")
await message.client(functions.messages.ReportSpamRequest(peer=user.id))
await message.edit("<b>You get report for spam!</b>")
async def blockcmd(self, message):
"""Use: .block to block this user."""
args = utils.get_args_raw(message)
reply = await message.get_reply_message()
if message.chat_id != (await message.client.get_me()).id and message.is_private:
user = await message.client.get_entity(message.chat_id)
else:
if reply:
user = await message.client.get_entity(reply.sender_id)
else:
user = await message.client.get_entity(
int(args) if args.isnumeric() else args
)
if not user:
await utils.answer(message, self.strings["who_to_block"])
return
await message.client(functions.contacts.BlockRequest(user))
await utils.answer(message, self.strings["blocked"].format(user.first_name))
async def unblockcmd(self, message):
"""Use: .unblock to unblock this user."""
args = utils.get_args_raw(message)
reply = await message.get_reply_message()
if message.chat_id != (await message.client.get_me()).id and message.is_private:
user = await message.client.get_entity(message.chat_id)
else:
if reply:
user = await message.client.get_entity(reply.sender_id)
else:
user = await message.client.get_entity(
int(args) if args.isnumeric() else args
)
if not user:
await utils.answer(message, self.strings["who_to_unblock"])
return
await message.client(functions.contacts.UnblockRequest(user))
await utils.answer(message, self.strings["unblocked"].format(user.first_name))
async def delcontcmd(self, message):
"""Use: .delcont to remove a user from contacts."""
args = utils.get_args(message)
reply = await message.get_reply_message()
if message.chat_id != (await message.client.get_me()).id and message.is_private:
user = await message.client.get_entity(message.chat_id)
else:
if reply:
user = await message.client.get_entity(reply.sender_id)
else:
user = await message.client.get_entity(
int(args) if args.isnumeric() else args
)
if not user:
await utils.answer(message, self.strings["who_to_delcontact"])
return
await message.client(functions.contacts.DeleteContactsRequest(id=[user.id]))
await utils.answer(message, self.strings["delcontact"].format(user.first_name))
async def addcontcmd(self, message):
"""Use: .addcont to add somebody in contacts."""
args = utils.get_args_raw(message)
reply = await message.get_reply_message()
if not args:
return await message.edit("<b>Where args?.</b>")
if not reply:
return await message.edit("<b>Where reply?</b>")
else:
user = await message.client.get_entity(reply.sender_id)
try:
await message.client(
functions.contacts.AddContactRequest(
id=user.id,
first_name=args,
last_name=" ",
phone="phone",
add_phone_privacy_exception=False,
)
)
await message.edit(
f"<code>{user.id}</code> added to contacts <code>{args}</code>"
)
except:
return await message.edit(
"<b>Something went wrong (come up with different reasons).</b>"
)