2020-01-05 23:44:02 +00:00
|
|
|
from .play import PlayCommand
|
|
|
|
from royalnet.commands import *
|
|
|
|
import aiohttp
|
|
|
|
import urllib.parse
|
|
|
|
|
|
|
|
|
|
|
|
class FunkwhaleCommand(PlayCommand):
|
2020-01-16 02:07:38 +00:00
|
|
|
name: str = "funkwhale"
|
2020-01-05 23:44:02 +00:00
|
|
|
|
2020-01-16 02:07:38 +00:00
|
|
|
aliases = ["fuckwhale", "fw", "royalwhale", "rw"]
|
2020-01-05 23:44:02 +00:00
|
|
|
|
|
|
|
description: str = "Cerca un video su RoyalWhale e lo aggiunge alla coda della chat vocale."
|
|
|
|
|
|
|
|
syntax = "{ricerca}"
|
|
|
|
|
|
|
|
async def get_url(self, args):
|
|
|
|
search = urllib.parse.quote(args.joined(require_at_least=1))
|
|
|
|
async with aiohttp.ClientSession() as session:
|
|
|
|
async with session.get(self.config["Funkwhale"]["instance_url"] +
|
|
|
|
f"/api/v1/search?query={search}") as response:
|
|
|
|
j = await response.json()
|
|
|
|
if len(j["tracks"]) < 1:
|
|
|
|
raise InvalidInputError("Nessun video trovato.")
|
|
|
|
return f'{self.config["Funkwhale"]["instance_url"]}{j["tracks"][0]["listen_url"]}'
|