Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com> Co-authored-by: Aditya <xditya@ultroid.tech> Co-authored-by: Kaif <88398455+kaif-00z@users.noreply.github.com> Co-authored-by: Aditya <me@xditya.me> Co-authored-by: 1Danish-00 <danish@ultroid.tech> Co-authored-by: smartman_ru <bblkovo@gmail.com>
50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
# Ultroid - UserBot
|
|
# Copyright (C) 2021-2022 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/>.
|
|
|
|
"""
|
|
✘ Commands Available -
|
|
|
|
• `{i}queue`
|
|
List the songs in queue.
|
|
|
|
• `{i}clearqueue`
|
|
Clear all queue in chat.
|
|
"""
|
|
|
|
from . import vc_asst, get_string, list_queue, VC_QUEUE
|
|
|
|
|
|
@vc_asst("queue")
|
|
async def lstqueue(event):
|
|
if len(event.text.split()) > 1:
|
|
chat = event.text.split()[1]
|
|
try:
|
|
chat = await event.client.parse_id(chat)
|
|
except Exception as e:
|
|
return await event.eor(get_string("vcbot_2").format(str(e)))
|
|
else:
|
|
chat = event.chat_id
|
|
q = list_queue(chat)
|
|
if not q:
|
|
return await event.eor(get_string("vcbot_21"))
|
|
await event.eor("• <strong>Queue:</strong>\n\n{}".format(q), parse_mode="html")
|
|
|
|
|
|
@vc_asst("clearqueue")
|
|
async def clean_queue(event):
|
|
if len(event.text.split()) > 1:
|
|
chat = event.text.split()[1]
|
|
try:
|
|
chat = await event.client.parse_id(chat)
|
|
except Exception as e:
|
|
return await event.eor("**ERROR:**\n{}".format(str(e)))
|
|
else:
|
|
chat = event.chat_id
|
|
if VC_QUEUE.get(chat):
|
|
VC_QUEUE.pop(chat)
|
|
await event.eor(get_string("vcbot_22"), time=5)
|