mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
63 lines
2 KiB
Python
63 lines
2 KiB
Python
|
import discord
|
||
|
import asyncio as aio
|
||
|
from typing import *
|
||
|
from royalnet.commands import *
|
||
|
from royalnet.backpack.tables import User, Discord
|
||
|
|
||
|
|
||
|
class LazyplayCommand(Command):
|
||
|
name: str = "lazyplay"
|
||
|
|
||
|
aliases = ["lp"]
|
||
|
|
||
|
description: str = "Aggiunge un url alla coda della chat vocale, ma lo scarica solo quando sta per essere" \
|
||
|
" riprodotto."
|
||
|
|
||
|
syntax = "{url}"
|
||
|
|
||
|
async def get_urls(self, args: CommandArgs):
|
||
|
url = args.joined(require_at_least=1)
|
||
|
if not (url.startswith("http://") or url.startswith("https://")):
|
||
|
raise InvalidInputError(f"L'URL specificato non inizia con il nome di un protocollo supportato"
|
||
|
f" ([c]http://[/c] o [c]https://[/c]).")
|
||
|
return [url]
|
||
|
|
||
|
def get_embed_color(self) -> Optional[int]:
|
||
|
return None
|
||
|
|
||
|
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
||
|
if self.interface.name == "discord":
|
||
|
message: discord.Message = data.message
|
||
|
guild: discord.Guild = message.guild
|
||
|
if guild is None:
|
||
|
guild_id = None
|
||
|
else:
|
||
|
guild_id: Optional[int] = guild.id
|
||
|
else:
|
||
|
guild_id = None
|
||
|
|
||
|
user: User = await data.get_author()
|
||
|
user_str = None
|
||
|
|
||
|
if user is not None:
|
||
|
try:
|
||
|
user_discord: Discord = user.discord[0]
|
||
|
except (AttributeError, IndexError):
|
||
|
user_str = str(user)
|
||
|
else:
|
||
|
user_str = str(f"<@{user_discord.discord_id}>")
|
||
|
|
||
|
urls = await self.get_urls(args)
|
||
|
|
||
|
play_task: aio.Task = self.loop.create_task(
|
||
|
self.interface.call_herald_event("discord", "discord_lazy_play",
|
||
|
urls=urls,
|
||
|
guild_id=guild_id,
|
||
|
user=user_str,
|
||
|
force_color=self.get_embed_color())
|
||
|
)
|
||
|
|
||
|
await data.reply("⌛ Attendi un attimo...")
|
||
|
|
||
|
await play_task
|