2020-01-04 02:46:12 +01:00
|
|
|
# Created by romain at 04/01/2020
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
import discord
|
|
|
|
from discord.ext import commands
|
2020-01-05 01:01:06 +01:00
|
|
|
from discord import utils
|
2020-01-04 02:46:12 +01:00
|
|
|
|
|
|
|
from bot import TuxBot
|
2020-01-04 21:16:37 +01:00
|
|
|
from utils import Texts
|
2020-01-05 01:01:06 +01:00
|
|
|
from utils.paginator import FieldPages
|
2020-01-04 02:46:12 +01:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class HelpCommand(commands.HelpCommand):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
2020-01-05 19:49:02 +01:00
|
|
|
self.ignore_cogs = ["Monitoring", "Help"]
|
|
|
|
self.owner_cogs = ["Jishaku"]
|
|
|
|
self.admin_cogs = ["Admin"]
|
2020-01-05 01:01:06 +01:00
|
|
|
|
2020-01-05 19:49:02 +01:00
|
|
|
def common_command_formatting(self, e, command):
|
2020-01-05 01:30:40 +01:00
|
|
|
prefix = self.context.prefix if str(self.context.bot.user.id) not in self.context.prefix else f"@{self.context.bot.user.name}"
|
2020-01-05 01:01:06 +01:00
|
|
|
|
2020-01-05 19:49:02 +01:00
|
|
|
e.title = self.get_command_signature(command)
|
|
|
|
e.description = command.description
|
2020-01-05 01:01:06 +01:00
|
|
|
|
2020-01-05 19:49:02 +01:00
|
|
|
e.add_field(
|
|
|
|
name="TODO: Text.params :",
|
|
|
|
value=command.usage
|
|
|
|
)
|
|
|
|
e.add_field(
|
|
|
|
name="TODO: Text.usage :",
|
|
|
|
value=f"{prefix}{command.qualified_name} " + command.usage
|
|
|
|
)
|
2020-01-05 01:01:06 +01:00
|
|
|
|
|
|
|
aliases = "`" + '`, `'.join(command.aliases) + "`"
|
|
|
|
if aliases == "``":
|
|
|
|
aliases = Texts(
|
|
|
|
'help', self.context
|
|
|
|
).get(
|
|
|
|
'command_help.no_aliases'
|
|
|
|
)
|
2020-01-05 19:49:02 +01:00
|
|
|
e.add_field(
|
2020-01-05 01:01:06 +01:00
|
|
|
name=Texts(
|
|
|
|
'help', self.context
|
|
|
|
).get(
|
|
|
|
'command_help.aliases'
|
|
|
|
),
|
|
|
|
value=aliases
|
|
|
|
)
|
|
|
|
|
2020-01-05 19:49:02 +01:00
|
|
|
return e
|
2020-01-04 02:46:12 +01:00
|
|
|
|
|
|
|
async def send_bot_help(self, mapping):
|
2020-01-04 21:16:37 +01:00
|
|
|
owners = self.context.bot.owners
|
|
|
|
owners_name = [
|
|
|
|
f"{owner.name}#{owner.discriminator}"
|
|
|
|
for owner in owners
|
|
|
|
]
|
2020-01-05 01:01:06 +01:00
|
|
|
prefix = self.context.prefix if str(self.context.bot.user.id) not in self.context.prefix else f"@{self.context.bot.user.name} "
|
2020-01-04 21:16:37 +01:00
|
|
|
|
|
|
|
e = discord.Embed(
|
2020-01-05 01:01:06 +01:00
|
|
|
color=discord.Color.blue(),
|
2020-01-04 21:16:37 +01:00
|
|
|
description=Texts(
|
|
|
|
'help', self.context
|
|
|
|
).get(
|
|
|
|
'main_page.description'
|
|
|
|
).format(
|
|
|
|
', '.join(owners_name[:-1]) + ' & ' + owners_name[-1]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
e.set_author(
|
|
|
|
icon_url=self.context.author.avatar_url_as(format='png'),
|
|
|
|
name=self.context.author
|
|
|
|
)
|
2020-01-05 01:01:06 +01:00
|
|
|
e.set_footer(
|
|
|
|
text=Texts(
|
|
|
|
'help', self.context
|
|
|
|
).get(
|
|
|
|
'main_page.footer'
|
|
|
|
).format(
|
|
|
|
prefix
|
|
|
|
)
|
|
|
|
)
|
2020-01-04 02:46:12 +01:00
|
|
|
|
|
|
|
cogs = ""
|
|
|
|
for extension in self.context.bot.cogs.values():
|
2020-01-04 21:16:37 +01:00
|
|
|
if self.context.author not in owners \
|
2020-01-05 01:01:06 +01:00
|
|
|
and extension.__class__.__name__ in self.owner_cogs:
|
2020-01-04 02:46:12 +01:00
|
|
|
continue
|
2020-01-05 01:01:06 +01:00
|
|
|
if extension.__class__.__name__ in self.ignore_cogs:
|
2020-01-04 02:46:12 +01:00
|
|
|
continue
|
2020-01-05 01:01:06 +01:00
|
|
|
|
2020-01-04 02:46:12 +01:00
|
|
|
cogs += f"• {extension.icon} **{extension.qualified_name}**\n"
|
|
|
|
|
2020-01-04 21:16:37 +01:00
|
|
|
e.add_field(
|
|
|
|
name=Texts(
|
|
|
|
'help', self.context
|
|
|
|
).get(
|
|
|
|
'main_page.categories'
|
|
|
|
),
|
|
|
|
value=cogs
|
|
|
|
)
|
|
|
|
|
|
|
|
await self.context.send(embed=e)
|
2020-01-04 02:46:12 +01:00
|
|
|
|
2020-01-05 01:01:06 +01:00
|
|
|
async def send_cog_help(self, cog):
|
|
|
|
pages = {}
|
2020-01-05 01:30:40 +01:00
|
|
|
prefix = self.context.prefix if str(self.context.bot.user.id) not in self.context.prefix else f"@{self.context.bot.user.name}"
|
2020-01-05 01:01:06 +01:00
|
|
|
|
|
|
|
if cog.__class__.__name__ in self.owner_cogs \
|
|
|
|
and self.context.author not in self.context.bot.owners:
|
|
|
|
return self.command_not_found(cog.qualified_name)
|
|
|
|
|
|
|
|
for cmd in cog.get_commands():
|
|
|
|
if self.context.author not in self.context.bot.owners \
|
|
|
|
and (cmd.hidden or cmd.category == "Hidden"):
|
|
|
|
continue
|
|
|
|
|
|
|
|
if cmd.category not in pages:
|
|
|
|
pages[cmd.category] = "```asciidoc\n"
|
|
|
|
|
|
|
|
pages[cmd.category] \
|
|
|
|
+= f"{cmd.name}" \
|
|
|
|
+ ' ' * int(17 - len(cmd.name)) \
|
2020-01-05 19:49:02 +01:00
|
|
|
+ f":: {cmd.help}\n"
|
2020-01-05 01:01:06 +01:00
|
|
|
|
|
|
|
if isinstance(cmd, commands.Group):
|
|
|
|
for group_command in cmd.commands:
|
|
|
|
pages[cmd.category] \
|
|
|
|
+= f"━ {group_command.name}" \
|
|
|
|
+ ' ' * int(15 - len(group_command.name)) \
|
2020-01-05 19:49:02 +01:00
|
|
|
+ f":: {cmd.help}\n"
|
2020-01-05 01:01:06 +01:00
|
|
|
for e in pages:
|
|
|
|
pages[e] += "```"
|
|
|
|
formatted = []
|
|
|
|
for name, cont in pages.items():
|
|
|
|
formatted.append((name, cont))
|
|
|
|
footer_text = Texts('help', self.context) \
|
|
|
|
.get('main_page.footer') \
|
|
|
|
.format(prefix)
|
|
|
|
|
|
|
|
pages = FieldPages(
|
|
|
|
self.context,
|
|
|
|
embed_color=discord.Color.blue(),
|
|
|
|
entries=formatted,
|
|
|
|
title=cog.qualified_name.upper(),
|
|
|
|
thumbnail=cog.big_icon,
|
|
|
|
footericon=self.context.bot.user.avatar_url,
|
|
|
|
footertext=footer_text,
|
|
|
|
per_page=1
|
|
|
|
)
|
|
|
|
await pages.paginate()
|
|
|
|
|
|
|
|
async def send_group_help(self, group):
|
|
|
|
if group.cog_name in self.ignore_cogs:
|
|
|
|
return await self.send_error_message(
|
|
|
|
self.command_not_found(group.name)
|
|
|
|
)
|
|
|
|
|
|
|
|
formatted = self.common_command_formatting(
|
|
|
|
discord.Embed(color=discord.Color.blue()),
|
|
|
|
group
|
|
|
|
)
|
|
|
|
sub_cmd_list = ""
|
|
|
|
for group_command in group.commands:
|
|
|
|
sub_cmd_list += f"└> **{group_command.name}** - {group_command.description}\n"
|
|
|
|
subcommands = Texts(
|
|
|
|
'help', self.context
|
|
|
|
).get(
|
|
|
|
'command_help.subcommands'
|
|
|
|
)
|
|
|
|
|
|
|
|
formatted.add_field(name=subcommands, value=sub_cmd_list, inline=False)
|
|
|
|
await self.context.send(embed=formatted)
|
|
|
|
|
|
|
|
async def send_command_help(self, command):
|
|
|
|
if isinstance(command, commands.Group):
|
|
|
|
return await self.send_group_help(command)
|
|
|
|
|
|
|
|
if command.cog_name in self.ignore_cogs:
|
|
|
|
return await self.send_error_message(
|
|
|
|
self.command_not_found(command.name))
|
|
|
|
|
|
|
|
formatted = self.common_command_formatting(
|
|
|
|
discord.Embed(color=discord.Color.blue()),
|
|
|
|
command
|
|
|
|
)
|
|
|
|
|
|
|
|
await self.context.send(embed=formatted)
|
|
|
|
|
|
|
|
def command_not_found(self, command):
|
|
|
|
return Texts(
|
|
|
|
'help', self.context
|
|
|
|
).get(
|
|
|
|
'main_page.not_found'
|
|
|
|
).format(
|
|
|
|
command
|
|
|
|
)
|
|
|
|
|
2020-01-04 02:46:12 +01:00
|
|
|
|
|
|
|
class Help(commands.Cog):
|
|
|
|
def __init__(self, bot: TuxBot):
|
|
|
|
bot.help_command = HelpCommand()
|
|
|
|
|
|
|
|
|
|
|
|
def setup(bot: TuxBot):
|
|
|
|
bot.add_cog(Help(bot))
|