mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
28 lines
1,007 B
Python
28 lines
1,007 B
Python
|
from .lazyplay import LazyplayCommand
|
||
|
from royalnet.commands import *
|
||
|
import aiohttp
|
||
|
import urllib.parse
|
||
|
|
||
|
|
||
|
class LazyfunkwhaleCommand(LazyplayCommand):
|
||
|
name: str = "lazyfunkwhale"
|
||
|
|
||
|
aliases = ["lazyfuckwhale", "lfw", "lazyroyalwhale", "lrw"]
|
||
|
|
||
|
description: str = "Cerca una canzone su RoyalWhale e aggiungila (lazy) 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/search?query={search}") as response:
|
||
|
j = await response.json()
|
||
|
if len(j["tracks"]) < 1:
|
||
|
raise UserError("Nessun file audio trovato con il nome richiesto.")
|
||
|
return [f'{self.config["Funkwhale"]["instance_url"]}{j["tracks"][0]["listen_url"]}']
|