feat: Add help command.

This commit is contained in:
Lemon4ksan
2025-01-13 17:46:37 +03:00
parent b79e16fddf
commit 512f1ea12b
3 changed files with 94 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
from typing import cast from typing import cast, TypeAlias
import discord import discord
from discord.ext.commands import Cog from discord.ext.commands import Cog
@@ -22,8 +22,76 @@ class General(Cog):
self.bot = bot self.bot = bot
self.db = BaseUsersDatabase() self.db = BaseUsersDatabase()
@discord.slash_command(description="Войти в Yandex Music с помощью токена.") account = discord.SlashCommandGroup("account", "Команды, связанные с аккаунтом.")
@discord.option("token", type=discord.SlashCommandOptionType.string)
@discord.slash_command(description="Получить информацию о командах YandexMusic.")
@discord.option(
"command",
description="Название команды.",
type=discord.SlashCommandOptionType.string,
default='all'
)
async def help(self, ctx: discord.ApplicationContext, command: str) -> None:
response_message = None
embed = discord.Embed(
color=0xfed42b
)
embed.description = '__Использование__\n'
embed.set_author(name='Помощь')
if command == 'all':
embed.description = ("Данный бот позволяет вам слушать музыку из вашего аккаунта Yandex Music.\n"
"Зарегистрируйте свой токен с помощью /login. Его можно получить [здесь](https://github.com/MarshalX/yandex-music-api/discussions/513).\n"
"Для получения помощи для конкретной команды, введите /help <команда>.\n\n"
"**Для доп. помощи, зайдите на [сервер любителей Яндекс Музыки](https://discord.gg/gkmFDaPMeC).**")
embed.title = 'Помощь'
embed.add_field(
name='__Основные команды__',
value="""
`find`
`help`
`account`
`queue`
`track`
`voice`
"""
)
embed.set_author(name='YandexMusic')
embed.set_footer(text='©️ Bananchiki')
elif command == 'find':
embed.description += ("Вывести информацию о треке (по умолчанию), альбоме, авторе или плейлисте. Позволяет добавить музыку в очередь. "
"В названии можно уточнить автора или версию. Возвращается лучшее совпадение.\n```/find <название> <тип>```")
elif command == 'help':
embed.description += ("Вывести список всех команд.\n```/help```\n"
"Получить информацию о конкретной команде.\n```/help <команда>```")
elif command == 'account':
embed.description += ("Ввести токен от Яндекс Музыки. Его можно получить [здесь](https://github.com/MarshalX/yandex-music-api/discussions/513).\n"
"```/account login <token>```\n"
"Удалить токен из датабазы бота.\n```/account remove```")
elif command == 'queue':
embed.description += ("Получить очередь треков. По 25 элементов на страницу.\n```/queue get```\n"
"Очистить очередь треков и историю прослушивания. Требует согласия части слушателей.\n```/queue clear```\n"
"`Примечание`: Если вы один в голосовом канале или имеете роль администратора бота, голосование не требуется.")
elif command == 'track':
embed.description += ("`Примечание`: Следующие команды требуют согласия части слушателей. Если вы один в голосовом канале или имеете роль администратора бота, голосование не требуется.\n\n"
"Переключиться на следующий трек в очереди и добавить его в историю.\n```/track next```\n"
"Приостановить текущий трек.\n ```/track pause```\n"
"Возобновить текущий трек.\n ```/track resume```\n"
"Прервать проигрывание, удалить историю, очередь и текущий плеер.\n ```/track stop```")
elif command == 'voice':
embed.description += ("Присоединить бота в голосовой канал. Требует роли администратора.\n ```/voice join```\n"
"Заставить бота покинуть голосовой канал. Требует роли администратора.\n ```/voice leave```\n"
"Создать меню проигрывателя. Доступно только если вы единственный в голосовом канале.\n```/voice menu```")
else:
response_message = '❌ Неизвестная команда.'
embed = None
await ctx.respond(response_message, embed=embed, ephemeral=True)
@account.command(description="Ввести токен от Яндекс Музыки.")
@discord.option("token", type=discord.SlashCommandOptionType.string, description="Токен.")
async def login(self, ctx: discord.ApplicationContext, token: str) -> None: async def login(self, ctx: discord.ApplicationContext, token: str) -> None:
try: try:
client = await YMClient(token).init() client = await YMClient(token).init()
@@ -35,23 +103,35 @@ class General(Cog):
self.db.update(uid, {'ym_token': token}) self.db.update(uid, {'ym_token': token})
await ctx.respond(f'Привет, {about['account']['first_name']}!', delete_after=15, ephemeral=True) await ctx.respond(f'Привет, {about['account']['first_name']}!', delete_after=15, ephemeral=True)
@account.command(description="Удалить токен из датабазы бота.")
async def remove(self, ctx: discord.ApplicationContext) -> None:
self.db.update(ctx.user.id, {'ym_token': None})
await ctx.respond(f'Токен был удалён.', delete_after=15, ephemeral=True)
@discord.slash_command(description="Найти контент и отправить информацию о нём. Возвращается лучшее совпадение.") @discord.slash_command(description="Найти контент и отправить информацию о нём. Возвращается лучшее совпадение.")
@discord.option( @discord.option(
"name", "name",
description="Название контента для поиска", description="Название контента для поиска (По умолчанию трек).",
type=discord.SlashCommandOptionType.string type=discord.SlashCommandOptionType.string
) )
@discord.option( @discord.option(
"content_type", "content_type",
description="Тип искомого контента (artist, album, track, playlist).", description="Тип искомого контента (track, album, artist, playlist).",
type=discord.SlashCommandOptionType.string, type=discord.SlashCommandOptionType.string,
default='track' choices=['Artist', 'Album', 'Track', 'Playlist'],
default='Track'
) )
async def find(self, ctx: discord.ApplicationContext, name: str, content_type: str = 'track') -> None: async def find(
if content_type not in ('artist', 'album', 'track', 'playlist'): self,
ctx: discord.ApplicationContext,
name: str,
content_type: str = 'Track'
) -> None:
if content_type not in ['Artist', 'Album', 'Track', 'Playlist']:
await ctx.respond("❌ Недопустимый тип.", delete_after=15, ephemeral=True) await ctx.respond("❌ Недопустимый тип.", delete_after=15, ephemeral=True)
return return
content_type = content_type.lower()
token = self.db.get_ym_token(ctx.user.id) token = self.db.get_ym_token(ctx.user.id)
if not token: if not token:

View File

@@ -36,7 +36,6 @@ class PlayTrackButton(Button, VoiceExtension):
await interaction.respond(response_message, delete_after=15) await interaction.respond(response_message, delete_after=15)
class PlayAlbumButton(Button, VoiceExtension): class PlayAlbumButton(Button, VoiceExtension):
def __init__(self, album: Album, **kwargs): def __init__(self, album: Album, **kwargs):
@@ -71,7 +70,6 @@ class PlayAlbumButton(Button, VoiceExtension):
else: else:
await interaction.respond(response_message, delete_after=15) await interaction.respond(response_message, delete_after=15)
class PlayArtistButton(Button, VoiceExtension): class PlayArtistButton(Button, VoiceExtension):
def __init__(self, artist: Artist, **kwargs): def __init__(self, artist: Artist, **kwargs):
Button.__init__(self, **kwargs) Button.__init__(self, **kwargs)

View File

@@ -5,8 +5,7 @@ from discord.ext.commands import Cog
from yandex_music import Track, ClientAsync from yandex_music import Track, ClientAsync
from MusicBot.cogs.utils.find import process_track from MusicBot.cogs.utils.voice import VoiceExtension, generate_player_embed
from MusicBot.cogs.utils.voice import VoiceExtension
from MusicBot.cogs.utils.player import Player from MusicBot.cogs.utils.player import Player
def setup(bot: discord.Bot): def setup(bot: discord.Bot):
@@ -18,7 +17,7 @@ class Voice(Cog, VoiceExtension):
queue = discord.SlashCommandGroup("queue", "Команды, связанные с очередью треков.") queue = discord.SlashCommandGroup("queue", "Команды, связанные с очередью треков.")
track = discord.SlashCommandGroup("track", "Команды, связанные с текущим треком.") track = discord.SlashCommandGroup("track", "Команды, связанные с текущим треком.")
@voice.command(name="menu", description="Переключить меню проигрывателя. Доступно только если вы единственный в голосовом канале.") @voice.command(name="menu", description="Создать меню проигрывателя. Доступно только если вы единственный в голосовом канале.")
async def menu(self, ctx: discord.ApplicationContext) -> None: async def menu(self, ctx: discord.ApplicationContext) -> None:
if not await self.voice_check(ctx): if not await self.voice_check(ctx):
return return
@@ -27,7 +26,7 @@ class Voice(Cog, VoiceExtension):
embed = None embed = None
if guild['current_track']: if guild['current_track']:
embed = await process_track(Track.de_json(guild['current_track'], client=ClientAsync())) # type: ignore embed = await generate_player_embed(Track.de_json(guild['current_track'], client=ClientAsync())) # type: ignore
vc = self.get_voice_client(ctx) vc = self.get_voice_client(ctx)
if vc and vc.is_paused(): if vc and vc.is_paused():
embed.set_footer(text='Приостановлено') embed.set_footer(text='Приостановлено')
@@ -64,7 +63,7 @@ class Voice(Cog, VoiceExtension):
await vc.disconnect(force=True) await vc.disconnect(force=True)
await ctx.respond("Отключение успешно!", delete_after=15, ephemeral=True) await ctx.respond("Отключение успешно!", delete_after=15, ephemeral=True)
@queue.command(description="Очистить очередь и историю треков.") @queue.command(description="Очистить очередь треков и историю прослушивания.")
async def clear(self, ctx: discord.ApplicationContext) -> None: async def clear(self, ctx: discord.ApplicationContext) -> None:
if not await self.voice_check(ctx): if not await self.voice_check(ctx):
return return
@@ -106,16 +105,16 @@ class Voice(Cog, VoiceExtension):
else: else:
await ctx.respond("Воспроизведение не на паузе.", delete_after=15, ephemeral=True) await ctx.respond("Воспроизведение не на паузе.", delete_after=15, ephemeral=True)
@track.command(description="Остановить текущий трек и очистите очередь и историю.") @track.command(description="Прервать проигрывание, удалить историю, очередь и текущий плеер.")
async def stop(self, ctx: discord.ApplicationContext) -> None: async def stop(self, ctx: discord.ApplicationContext) -> None:
if await self.voice_check(ctx): if await self.voice_check(ctx):
self.db.clear_history(ctx.guild.id) self.db.clear_history(ctx.guild.id)
self.stop_playing(ctx) self.stop_playing(ctx)
current_player = self.db.get_guild(ctx.guild.id)['current_player'] current_player = self.db.get_guild(ctx.guild.id)['current_player']
if current_player is not None: if current_player is not None:
self.db.update(ctx.guild.id, {'current_player': None, 'repeat': False, 'shuffle': False})
message = await ctx.fetch_message(current_player) message = await ctx.fetch_message(current_player)
await message.delete() await message.delete()
self.db.update(ctx.guild.id, {'current_player': None, 'repeat': False, 'shuffle': False})
await ctx.respond("Воспроизведение остановлено.", delete_after=15, ephemeral=True) await ctx.respond("Воспроизведение остановлено.", delete_after=15, ephemeral=True)
@track.command(description="Переключиться на следующую песню в очереди.") @track.command(description="Переключиться на следующую песню в очереди.")