mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
33 lines
1.3 KiB
Python
33 lines
1.3 KiB
Python
|
from .play import PlayCommand
|
||
|
from royalnet.commands import *
|
||
|
import aiohttp
|
||
|
import urllib.parse
|
||
|
|
||
|
|
||
|
class FunkwhaleplaylistCommand(PlayCommand):
|
||
|
name: str = "funkwhaleplaylist"
|
||
|
|
||
|
aliases = ["fwp", "fwplaylist", "funkwhalep"]
|
||
|
|
||
|
description: str = "Cerca una playlist su RoyalWhale e aggiungila alla coda della chat vocale."
|
||
|
|
||
|
syntax = "{ricerca}"
|
||
|
|
||
|
def get_embed_color(self):
|
||
|
return 0x009FE3
|
||
|
|
||
|
async def get_urls(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/playlists/?q={search}&ordering=-creation_date&playable=true") as response:
|
||
|
j = await response.json()
|
||
|
if len(j["results"]) < 1:
|
||
|
raise UserError("Nessuna playlist trovata con il nome richiesto.")
|
||
|
playlist = j["results"][0]
|
||
|
playlist_id = playlist["id"]
|
||
|
async with session.get(self.config["Funkwhale"]["instance_url"] +
|
||
|
f"/api/v1/playlists/{playlist_id}/tracks") as response:
|
||
|
j = await response.json()
|
||
|
return list(map(lambda t: f'{self.config["Funkwhale"]["instance_url"]}{t["track"]["listen_url"]}', j["results"]))
|