1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/royalpack/stars/api_discord_play.py

31 lines
1.1 KiB
Python
Raw Normal View History

2020-01-10 18:03:14 +00:00
from typing import *
from starlette.requests import Request
from starlette.responses import *
2020-02-08 00:49:07 +00:00
from royalnet.constellation.api import *
2020-01-11 14:51:31 +00:00
import logging
log = logging.getLogger(__name__)
2020-01-10 18:03:14 +00:00
2020-02-08 00:49:07 +00:00
class ApiDiscordPlayStar(ApiStar):
2020-01-10 18:03:14 +00:00
path = "/api/discord/play"
2020-02-08 00:49:07 +00:00
async def api(self, data: ApiData) -> dict:
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 InvalidParameterError("'guild_id' is not a valid int.")
2020-01-11 14:51:31 +00:00
log.info(f"Received request to play {url} on guild_id {guild_id} via web")
2020-01-13 13:51:06 +00:00
response = await self.interface.call_herald_event("discord", "discord_play",
url=url,
guild_id=guild_id,
user=user)
2020-01-11 02:27:21 +00:00
return JSONResponse(response, headers={
2020-01-13 13:51:06 +00:00
"Access-Control-Allow-Origin": "*",
2020-01-11 02:27:21 +00:00
})