2020-05-10 22:46:12 +00:00
|
|
|
from typing import *
|
|
|
|
import royalnet.commands as rc
|
2020-03-29 19:19:58 +00:00
|
|
|
import aiohttp
|
|
|
|
import urllib.parse
|
|
|
|
|
2020-05-10 22:46:12 +00:00
|
|
|
from .lazyplay import LazyplayCommand
|
|
|
|
|
2020-03-29 19:19:58 +00:00
|
|
|
|
|
|
|
class LazypeertubeCommand(LazyplayCommand):
|
|
|
|
name: str = "lazypeertube"
|
|
|
|
|
|
|
|
aliases = ["lpt", "lazyroyaltube", "lrt"]
|
|
|
|
|
|
|
|
description: str = "Cerca un video su RoyalTube e lo aggiunge (lazy) alla coda della chat vocale."
|
|
|
|
|
|
|
|
syntax = "{ricerca}"
|
|
|
|
|
|
|
|
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["Peertube"]["instance_url"] +
|
|
|
|
f"/api/v1/search/videos?search={search}") as response:
|
|
|
|
j = await response.json()
|
|
|
|
if j["total"] < 1:
|
2020-05-10 22:46:12 +00:00
|
|
|
raise rc.InvalidInputError("Nessun video trovato.")
|
2020-03-29 19:19:58 +00:00
|
|
|
return [f'{self.config["Peertube"]["instance_url"]}/videos/watch/{j["data"][0]["uuid"]}']
|