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
2020-01-11 15:51:31 +01:00

25 lines
908 B
Python

from typing import *
from starlette.requests import Request
from starlette.responses import *
from royalnet.constellation import *
from royalnet.utils import *
import logging
log = logging.getLogger(__name__)
class ApiDiscordPlayStar(PageStar):
path = "/api/discord/play"
async def page(self, request: Request) -> JSONResponse:
url = request.query_params.get("url", "")
try:
guild_id: Optional[int] = int(request.query_params.get("guild_id", None))
except (ValueError, TypeError):
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", url=url, guild_id=guild_id)
return JSONResponse(response, headers={
"Access-Control-Allow-Origin": self.interface.config['Funkwhale']['instance_url'],
})