* Update docker-compose.yml No dotenv file needed. All environment values are now defined in docker-compose * Update RU.json * Updated docker-compose * Update README.md * Resolved issue where playback didn’t start after user joined channel 247 * Added logging system * Updated logging system * Update player.py * Added 24/7 required intent * Update main.py * Added logs folder * Updated logging system * Updated logging system * Added some typehint * Removed error_log * Renamed a valuable * Removed unnecessary value * Fixed some bugs * Added bot status settings * Added autocomplete in playtop * Added a new emoji in Loop button * Optimized code * Update requirements.txt * Fixed autoplay with empty queue This commit addresses the issue where autoplay was being activated even when the history queue had no tracks. The problem has been resolved to ensure smooth user experience * Enhanced Loop Control Button Functionality * Updated the loop button in controller * Fixed activity update Resolved the issue where activity updates were not reflected when the value remained the same. * Added sync function in debug view * Optimized code * Added version in the debug * Added nodes panel in debug view * Merged .env into settings.json * Rewritten ipc_client * Separated the dashboard from the project * Removed some necessary requirements * Remove support for replit * Update README.md * Update settings Example.json * Added get_recommendations into node class * Saved log file when updating * Rewritten some method in ipc_client * Written swap and remove method in queue * Added remove_track and swap_track method in player * Update methods.py * Added secure protocol in ipc client * Fixed some bugs * Added some method in ipc cilent * Update methods.py * Update methods.py * Added playlist method * Optimized Spotify client code * Added Category class in Spotify client * Added settings method in ipc client * Fixed some bugs * Send track requester_id in initPlayer * Fixed some bugs * Fixed some bugs * Optimized some code * Dump discord.py * Added start and end position for each track * Update methods.py * Fixed a bug * Fixed some bugs * Fixed IPC client creation issue * Rewrote filters * Fixed some bugs * Added filter event in ipc method * Added filter selector in music controller * Added inbox method * Optimized some code * Updated zh-TW local_lang * Fixed some bugs * Delete supervisord.conf * Fixed some bugs * Updated wording in IPC client * Update pool.py * Fixed no song suggestions when spotify_client is None * Fixed connection problem from the dashboard * Fixed some bugs * Added voice status (#33) * Updated the placeholder name for clarity * Added voice status * Dump bot version * Added global template for voice status * Added new placeholder * Updated settings view * Updated version tag * Improved codes * Fixed some bugs * Supported clear queue endpoint in ipc * Update methods.py * Update README.md * Remove PLACEHOLDERS.MD --------- Co-authored-by: Azarath7 <158289825+Azarath7@users.noreply.github.com>
112 lines
5.7 KiB
Python
112 lines
5.7 KiB
Python
"""MIT License
|
||
|
||
Copyright (c) 2023 - present Vocard Development
|
||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
of this software and associated documentation files (the "Software"), to deal
|
||
in the Software without restriction, including without limitation the rights
|
||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
copies of the Software, and to permit persons to whom the Software is
|
||
furnished to do so, subject to the following conditions:
|
||
|
||
The above copyright notice and this permission notice shall be included in all
|
||
copies or substantial portions of the Software.
|
||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||
SOFTWARE.
|
||
"""
|
||
|
||
import discord
|
||
from discord.ext import commands
|
||
|
||
import function as func
|
||
|
||
class HelpDropdown(discord.ui.Select):
|
||
def __init__(self, categorys:list):
|
||
self.view: HelpView
|
||
|
||
super().__init__(
|
||
placeholder="Select Category!",
|
||
min_values=1, max_values=1,
|
||
options=[
|
||
discord.SelectOption(emoji="🆕", label="News", description="View new updates of Vocard."),
|
||
discord.SelectOption(emoji="🕹️", label="Tutorial", description="How to use Vocard."),
|
||
] + [
|
||
discord.SelectOption(emoji=emoji, label=f"{category} Commands", description=f"This is {category.lower()} Category.")
|
||
for category, emoji in zip(categorys, ["1️⃣", "2️⃣", "3️⃣", "4️⃣", "5️⃣", "6️⃣", "7️⃣"])
|
||
],
|
||
custom_id="select"
|
||
)
|
||
|
||
async def callback(self, interaction: discord.Interaction) -> None:
|
||
embed = self.view.build_embed(self.values[0].split(" ")[0])
|
||
await interaction.response.edit_message(embed=embed)
|
||
|
||
class HelpView(discord.ui.View):
|
||
def __init__(self, bot: commands.Bot, author: discord.Member) -> None:
|
||
super().__init__(timeout=60)
|
||
|
||
self.author: discord.Member = author
|
||
self.bot: commands.Bot = bot
|
||
self.response: discord.Message = None
|
||
self.categorys: list[str] = [ name.capitalize() for name, cog in bot.cogs.items() if len([c for c in cog.walk_commands()]) ]
|
||
|
||
self.add_item(discord.ui.Button(label='Website', emoji='🌎', url='https://vocard.xyz'))
|
||
self.add_item(discord.ui.Button(label='Document', emoji=':support:915152950471581696', url='https://docs.vocard.xyz'))
|
||
self.add_item(discord.ui.Button(label='Github', emoji=':github:1098265017268322406', url='https://github.com/ChocoMeow/Vocard'))
|
||
self.add_item(discord.ui.Button(label='Donate', emoji=':patreon:913397909024800878', url='https://www.patreon.com/Vocard'))
|
||
self.add_item(HelpDropdown(self.categorys))
|
||
|
||
async def on_error(self, error, item, interaction) -> None:
|
||
return
|
||
|
||
async def on_timeout(self) -> None:
|
||
for child in self.children:
|
||
if child.custom_id == "select":
|
||
child.disabled = True
|
||
try:
|
||
await self.response.edit(view=self)
|
||
except:
|
||
pass
|
||
|
||
async def interaction_check(self, interaction: discord.Interaction) -> None:
|
||
return interaction.user == self.author
|
||
|
||
def build_embed(self, category: str) -> discord.Embed:
|
||
category = category.lower()
|
||
if category == "news":
|
||
embed = discord.Embed(title="Vocard Help Menu", url="https://discord.com/channels/811542332678996008/811909963718459392/1069971173116481636", color=func.settings.embed_color)
|
||
embed.add_field(
|
||
name=f"Available Categories: [{2 + len(self.categorys)}]",
|
||
value="```py\n👉 News\n2. Tutorial\n{}```".format("".join(f"{i}. {c}\n" for i, c in enumerate(self.categorys, start=3))),
|
||
inline=True
|
||
)
|
||
|
||
update = "Vocard is a simple music bot. It leads to a comfortable experience which is user-friendly, It supports YouTube, Soundcloud, Spotify, Twitch and more!"
|
||
embed.add_field(name="📰 Information:", value=update, inline=True)
|
||
embed.add_field(name="Get Started", value="```Join a voice channel and /play {Song/URL} a song. (Names, Youtube Video Links or Playlist links or Spotify links are supported on Vocard)```", inline=False)
|
||
|
||
return embed
|
||
|
||
embed = discord.Embed(title=f"Category: {category.capitalize()}", color=func.settings.embed_color)
|
||
embed.add_field(name=f"Categories: [{2 + len(self.categorys)}]", value="```py\n" + "\n".join(("👉 " if c == category.capitalize() else f"{i}. ") + c for i, c in enumerate(['News', 'Tutorial'] + self.categorys, start=1)) + "```", inline=True)
|
||
|
||
if category == 'tutorial':
|
||
embed.description = "How can use Vocard? Some simple commands you should know now after watching this video."
|
||
embed.set_image(url="https://cdn.discordapp.com/attachments/674788144931012638/917656288899514388/final_61aef3aa7836890135c6010c_669380.gif")
|
||
else:
|
||
cog = [c for _, c in self.bot.cogs.items() if _.lower() == category][0]
|
||
|
||
commands = [command for command in cog.walk_commands()]
|
||
embed.description = cog.description
|
||
embed.add_field(
|
||
name=f"{category} Commands: [{len(commands)}]",
|
||
value="```{}```".format("".join(f"/{command.qualified_name}\n" for command in commands if not command.qualified_name == cog.qualified_name))
|
||
)
|
||
|
||
return embed |