mirror of
https://github.com/neoarz/Syntrel.git
synced 2025-12-25 11:40:12 +01:00
110 lines
4.5 KiB
Python
110 lines
4.5 KiB
Python
import discord
|
|
from discord import app_commands
|
|
from discord.ext import commands
|
|
from discord.ext.commands import Context
|
|
|
|
|
|
class ideviceSelect(discord.ui.Select):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
options = [
|
|
discord.SelectOption(
|
|
label="No Apps",
|
|
value="noapps",
|
|
description="Help when apps aren't showing in installed apps view",
|
|
),
|
|
discord.SelectOption(
|
|
label="Error Codes",
|
|
value="errorcodes_ephemeral",
|
|
description="Browse idevice error code slash commands",
|
|
),
|
|
]
|
|
super().__init__(placeholder="Choose an idevice command...", options=options)
|
|
|
|
async def callback(self, interaction: discord.Interaction):
|
|
command_name = self.values[0]
|
|
command = self.bot.get_command(command_name)
|
|
|
|
if command_name == "errorcodes_ephemeral":
|
|
embed = discord.Embed(
|
|
title="Idevice Error Codes",
|
|
description="Use /errorcode to search errors by name or number.",
|
|
color=0xfa8c4a,
|
|
)
|
|
embed.set_author(name="idevice", icon_url="https://yes.nighty.works/raw/snLMuO.png")
|
|
await interaction.response.edit_message(embed=embed, view=None)
|
|
await interaction.followup.send(embed=embed, ephemeral=True)
|
|
return
|
|
|
|
if command:
|
|
try:
|
|
ctx = await self.bot.get_context(interaction.message)
|
|
if ctx:
|
|
await ctx.invoke(command)
|
|
embed = discord.Embed(
|
|
title="Command Executed",
|
|
description=f"Successfully executed `/{command_name}`",
|
|
color=0x00FF00
|
|
)
|
|
embed.set_author(name="idevice", icon_url="https://yes.nighty.works/raw/snLMuO.png")
|
|
await interaction.response.edit_message(embed=embed, view=None)
|
|
except discord.Forbidden:
|
|
self.bot.logger.warning(f"Bot missing permissions in server {interaction.guild.name} (ID: {interaction.guild.id}) - cannot execute {command_name} command")
|
|
embed = discord.Embed(
|
|
title="Permission Error",
|
|
description="The bot doesn't have the required permissions in this server to execute this command. Use the slash command `/{command_name}` instead.",
|
|
color=0xFF0000
|
|
)
|
|
embed.set_author(name="idevice", icon_url="https://yes.nighty.works/raw/snLMuO.png")
|
|
await interaction.response.edit_message(embed=embed, view=None)
|
|
except Exception as e:
|
|
self.bot.logger.error(f"Error executing {command_name} command: {e}")
|
|
embed = discord.Embed(
|
|
title="Error",
|
|
description="An error occurred while executing the command.",
|
|
color=0xFF0000
|
|
)
|
|
embed.set_author(name="idevice", icon_url="https://yes.nighty.works/raw/snLMuO.png")
|
|
await interaction.response.edit_message(embed=embed, view=None)
|
|
else:
|
|
embed = discord.Embed(
|
|
title="Error",
|
|
description="Command not found!",
|
|
color=0xFF0000
|
|
)
|
|
embed.set_author(name="idevice", icon_url="https://yes.nighty.works/raw/snLMuO.png")
|
|
await interaction.response.edit_message(embed=embed, view=None)
|
|
|
|
|
|
class ideviceView(discord.ui.View):
|
|
def __init__(self, bot):
|
|
super().__init__()
|
|
self.add_item(ideviceSelect(bot))
|
|
|
|
|
|
class idevice(commands.Cog, name="idevice"):
|
|
def __init__(self, bot) -> None:
|
|
self.bot = bot
|
|
|
|
@commands.hybrid_command(
|
|
name="idevice", description="idevice troubleshooting and help"
|
|
)
|
|
async def idevice(self, context: Context) -> None:
|
|
embed = discord.Embed(
|
|
title="idevice Commands",
|
|
description="Choose a command from the dropdown below to get help with specific issues:",
|
|
color=0xfa8c4a
|
|
)
|
|
embed.set_author(name="idevice", icon_url="https://yes.nighty.works/raw/snLMuO.png")
|
|
|
|
view = ideviceView(self.bot)
|
|
|
|
if context.interaction:
|
|
await context.interaction.response.send_message(embed=embed, view=view, ephemeral=True)
|
|
else:
|
|
await context.send(embed=embed, view=view)
|
|
|
|
|
|
async def setup(bot) -> None:
|
|
await bot.add_cog(idevice(bot))
|