mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
40 lines
1.4 KiB
Python
40 lines
1.4 KiB
Python
from typing import *
|
|
import royalnet.constellation.api as rca
|
|
import logging
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class ApiDiscordPlayStar(rca.ApiStar):
|
|
path = "/api/discord/play/v2"
|
|
|
|
parameters = {
|
|
"post": {
|
|
"url": "The url of the audio file to add.",
|
|
"user": "The name to display in the File Added message.",
|
|
"guild_id": "The id of the guild owning the RoyalQueue to add the audio file to.",
|
|
}
|
|
}
|
|
|
|
tags = ["discord"]
|
|
|
|
@rca.magic
|
|
async def post(self, data: rca.ApiData) -> dict:
|
|
"""Add a audio file to the RoyalQueue of a Discord Guild."""
|
|
url = data["url"]
|
|
user = data.get("user")
|
|
guild_id_str = data.get("guild_id")
|
|
if guild_id_str:
|
|
try:
|
|
guild_id: Optional[int] = int(guild_id_str)
|
|
except (ValueError, TypeError):
|
|
raise rca.InvalidParameterError("'guild_id' is not a valid int.")
|
|
else:
|
|
guild_id = None
|
|
log.info(f"Received request to play {url} on guild_id {guild_id} via web")
|
|
response = await self.interface.call_herald_event("discord", "discord_play",
|
|
urls=[url],
|
|
guild_id=guild_id,
|
|
user=user)
|
|
return response
|