2019-11-11 08:56:08 +00:00
|
|
|
import discord
|
2020-01-30 19:08:31 +00:00
|
|
|
import asyncio as aio
|
2019-12-01 22:53:47 +00:00
|
|
|
from typing import *
|
2019-11-11 08:56:08 +00:00
|
|
|
from royalnet.commands import *
|
2020-01-13 13:51:06 +00:00
|
|
|
from royalnet.backpack.tables import User, Discord
|
2019-11-11 08:56:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PlayCommand(Command):
|
|
|
|
name: str = "play"
|
|
|
|
|
|
|
|
aliases = ["p"]
|
|
|
|
|
|
|
|
description: str = "Aggiunge un url alla coda della chat vocale."
|
|
|
|
|
2019-12-01 22:53:47 +00:00
|
|
|
syntax = "{url}"
|
2019-11-11 08:56:08 +00:00
|
|
|
|
2019-12-17 19:11:05 +00:00
|
|
|
async def get_url(self, args: CommandArgs):
|
2020-01-30 19:08:31 +00:00
|
|
|
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
|
2019-12-02 20:25:56 +00:00
|
|
|
|
2019-11-11 08:56:08 +00:00
|
|
|
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
2019-12-01 22:53:47 +00:00
|
|
|
if self.interface.name == "discord":
|
|
|
|
message: discord.Message = data.message
|
|
|
|
guild: discord.Guild = message.guild
|
2019-12-17 19:11:05 +00:00
|
|
|
if guild is None:
|
|
|
|
guild_id = None
|
|
|
|
else:
|
|
|
|
guild_id: Optional[int] = guild.id
|
2019-12-01 22:53:47 +00:00
|
|
|
else:
|
|
|
|
guild_id = None
|
2020-01-13 13:51:06 +00:00
|
|
|
|
|
|
|
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)
|
2019-11-11 08:56:08 +00:00
|
|
|
else:
|
2020-01-13 13:51:06 +00:00
|
|
|
user_str = str(f"<@{user_discord.discord_id}>")
|
|
|
|
|
2020-01-30 19:08:31 +00:00
|
|
|
play_task: aio.Task = self.loop.create_task(
|
|
|
|
self.interface.call_herald_event("discord", "discord_play",
|
|
|
|
url=await self.get_url(args),
|
|
|
|
guild_id=guild_id,
|
|
|
|
user=user_str,
|
|
|
|
force_color=self.get_embed_color())
|
|
|
|
)
|
|
|
|
|
|
|
|
await data.reply("⌛ Attendi un attimo...")
|
2019-12-02 20:25:56 +00:00
|
|
|
|
2020-01-30 19:08:31 +00:00
|
|
|
await play_task
|