mirror of
https://github.com/RYGhub/royalnet.git
synced 2025-03-14 04:23:31 +00:00
53 lines
1.9 KiB
Python
53 lines
1.9 KiB
Python
import typing
|
|
import pickle
|
|
import discord
|
|
from royalnet.commands import *
|
|
from ...utils import NetworkHandler, asyncify
|
|
from ...network import Request, ResponseSuccess
|
|
from ..commanderrors import CommandError
|
|
from ...audio import YtdlDiscord
|
|
if typing.TYPE_CHECKING:
|
|
from ...bots import DiscordBot
|
|
|
|
|
|
class SkipNH(NetworkHandler):
|
|
message_type = "music_skip"
|
|
|
|
@classmethod
|
|
async def discord(cls, bot: "DiscordBot", data: dict):
|
|
# Find the matching guild
|
|
if data["guild_name"]:
|
|
guilds: typing.List[discord.Guild] = bot.client.find_guild_by_name(data["guild_name"])
|
|
else:
|
|
guilds = bot.client.guilds
|
|
if len(guilds) == 0:
|
|
raise CommandError("No guilds with the specified name found.")
|
|
if len(guilds) > 1:
|
|
raise CommandError("Multiple guilds with the specified name found.")
|
|
guild = list(bot.client.guilds)[0]
|
|
# Set the currently playing source as ended
|
|
voice_client: discord.VoiceClient = bot.client.find_voice_client_by_guild(guild)
|
|
if not (voice_client.is_playing() or voice_client.is_paused()):
|
|
raise CommandError("Nothing to skip")
|
|
# noinspection PyProtectedMember
|
|
voice_client._player.stop()
|
|
return ResponseSuccess()
|
|
|
|
|
|
class SkipCommand(Command):
|
|
name: str = "skip"
|
|
|
|
aliases = ["s", "next", "n"]
|
|
|
|
description: str = "Salta la canzone attualmente in riproduzione in chat vocale."
|
|
|
|
syntax: str = "[ [guild] ]"
|
|
|
|
def __init__(self, interface: CommandInterface):
|
|
super().__init__(interface)
|
|
interface.register_net_handler(SkipNH.message_type, SkipNH)
|
|
|
|
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
|
guild, = args.match(r"(?:\[(.+)])?")
|
|
await self.interface.net_request(Request(SkipNH.message_type, {"guild_name": guild}), "discord")
|
|
await data.reply(f"⏩ Richiesto lo skip della canzone attuale.")
|