Files
Ultroid-fork/vcbot/queue.py
Devesh Pal 0df53caf4c Ultroid v0.3 Updates
Co-authored-by: Aditya <xditya@ultroid.tech>
Co-authored-by: Danish <danish@ultroid.tech>
Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com>
Co-authored-by: TechiError <error@notavailable.live>
Co-authored-by: Avish Kumar <85635883+aviskumar@users.noreply.github.com>
Co-authored-by: Vɪɴᴀʏᴀᴋ Pᴀɴᴅᴇʏ <87496159+harpia-vieillot@users.noreply.github.com>
Co-authored-by: Shrimadhav U K <6317196+spechide@users.noreply.github.com>
Co-authored-by: Dark <darkbeamer.official@gmail.com>
Co-authored-by: Muhamad Risman Aziz <62795826+mrismanaziz@users.noreply.github.com>
Co-authored-by: Ashik Muhammed <84127769+MR-JINN-OF-TG@users.noreply.github.com>
Co-authored-by: MMETMA <79155572+MMETMA@users.noreply.github.com>
Co-authored-by: amirmehdinzri <94852182+amirmehdinzri@users.noreply.github.com>
2021-12-31 23:48:53 +05:30

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("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)