* Ultroid 2025 Co-authored-by: New-dev0 <New-dev0@users.noreply.github.com> Co-authored-by: Amit Sharma <buddhhu@users.noreply.github.com> Co-authored-by: TechiError <techierror@users.noreply.github.com> Co-authored-by: Aditya <me@xditya.me> Co-authored-by: Arnab Paryali <Arnabxd@users.noreply.github.com> Co-authored-by: hellboi_atul <hellboi-atul@users.noreply.github.com> Co-authored-by: sppidy <sppidy@users.noreply.github.com>
77 lines
2.3 KiB
Python
77 lines
2.3 KiB
Python
# Ultroid - UserBot
|
|
# Copyright (C) 2021-2025 TeamUltroid
|
|
#
|
|
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
|
|
# PLease read the GNU Affero General Public License in
|
|
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
|
|
|
|
from . import get_help
|
|
|
|
__doc__ = get_help("help_echo")
|
|
|
|
|
|
from telethon.utils import get_display_name
|
|
|
|
from pyUltroid.dB.echo_db import add_echo, check_echo, list_echo, rem_echo
|
|
|
|
from . import inline_mention, ultroid_cmd
|
|
|
|
|
|
@ultroid_cmd(pattern="addecho( (.*)|$)")
|
|
async def echo(e):
|
|
r = await e.get_reply_message()
|
|
if r:
|
|
user = r.sender_id
|
|
else:
|
|
try:
|
|
user = e.text.split()[1]
|
|
if user.startswith("@"):
|
|
ok = await e.client.get_entity(user)
|
|
user = ok.id
|
|
else:
|
|
user = int(user)
|
|
except BaseException:
|
|
return await e.eor("Reply To A user.", time=5)
|
|
if check_echo(e.chat_id, user):
|
|
return await e.eor("Echo already activated for this user.", time=5)
|
|
add_echo(e.chat_id, user)
|
|
ok = await e.client.get_entity(user)
|
|
user = inline_mention(ok)
|
|
await e.eor(f"Activated Echo For {user}.")
|
|
|
|
|
|
@ultroid_cmd(pattern="remecho( (.*)|$)")
|
|
async def rm(e):
|
|
r = await e.get_reply_message()
|
|
if r:
|
|
user = r.sender_id
|
|
else:
|
|
try:
|
|
user = e.text.split()[1]
|
|
if user.startswith("@"):
|
|
ok = await e.client.get_entity(user)
|
|
user = ok.id
|
|
else:
|
|
user = int(user)
|
|
except BaseException:
|
|
return await e.eor("Reply To A User.", time=5)
|
|
if check_echo(e.chat_id, user):
|
|
rem_echo(e.chat_id, user)
|
|
ok = await e.client.get_entity(user)
|
|
user = f"[{get_display_name(ok)}](tg://user?id={ok.id})"
|
|
return await e.eor(f"Deactivated Echo For {user}.")
|
|
await e.eor("Echo not activated for this user")
|
|
|
|
|
|
@ultroid_cmd(pattern="listecho$")
|
|
async def lstecho(e):
|
|
if k := list_echo(e.chat_id):
|
|
user = "**Activated Echo For Users:**\n\n"
|
|
for x in k:
|
|
ok = await e.client.get_entity(int(x))
|
|
kk = f"[{get_display_name(ok)}](tg://user?id={ok.id})"
|
|
user += f"•{kk}" + "\n"
|
|
await e.eor(user)
|
|
else:
|
|
await e.eor("`List is Empty, For echo`", time=5)
|