2024-05-13 19:26:13 -04:00
|
|
|
# _____ _
|
|
|
|
# / ____| (_)
|
|
|
|
# | (___ ___ __ _ _____ ___ _ __ ___ _ __ ___ ___ _ __
|
|
|
|
# \___ \ / _ \/ _` / __\ \ /\ / / | '_ ` _ \| '_ ` _ \ / _ \ '__|
|
|
|
|
# ____) | __/ (_| \__ \\ V V /| | | | | | | | | | | | __/ |
|
|
|
|
# |_____/ \___|\__,_|___/ \_/\_/ |_|_| |_| |_|_| |_| |_|\___|_|
|
|
|
|
|
|
|
|
import inspect
|
2024-05-13 21:12:51 -04:00
|
|
|
import operator
|
2024-05-17 00:12:40 -04:00
|
|
|
from functools import partial, partialmethod
|
|
|
|
from typing import Any
|
2024-05-13 19:26:13 -04:00
|
|
|
|
2024-05-17 00:12:40 -04:00
|
|
|
from discord import Embed, app_commands
|
|
|
|
from discord.utils import CachedSlotProperty, cached_property
|
2024-05-13 19:26:13 -04:00
|
|
|
from redbot.core import commands
|
|
|
|
from redbot.core.bot import Red
|
2024-05-17 00:12:40 -04:00
|
|
|
from redbot.core.dev_commands import cleanup_code
|
2024-05-13 19:26:13 -04:00
|
|
|
from redbot.core.utils import chat_formatting as cf
|
2024-05-13 21:09:02 -04:00
|
|
|
from redbot.core.utils.views import SimpleMenu
|
2024-05-13 19:26:13 -04:00
|
|
|
|
|
|
|
|
|
|
|
class SeaUtils(commands.Cog):
|
|
|
|
"""A collection of random utilities."""
|
|
|
|
|
|
|
|
__author__ = ["SeaswimmerTheFsh"]
|
|
|
|
__version__ = "1.0.0"
|
|
|
|
|
|
|
|
def __init__(self, bot: Red):
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
def format_help_for_context(self, ctx: commands.Context) -> str:
|
|
|
|
pre_processed = super().format_help_for_context(ctx) or ""
|
|
|
|
n = "\n" if "\n\n" not in pre_processed else ""
|
|
|
|
text = [
|
|
|
|
f"{pre_processed}{n}",
|
|
|
|
f"Cog Version: **{self.__version__}**",
|
|
|
|
f"Author: {cf.humanize_list(self.__author__)}"
|
|
|
|
]
|
|
|
|
return "\n".join(text)
|
|
|
|
|
2024-05-17 00:12:40 -04:00
|
|
|
def format_src(self, ctx: commands.Context, obj: Any) -> str:
|
|
|
|
"""A large portion of this code is repurposed from Zephyrkul's RTFS cog.
|
|
|
|
https://github.com/Zephyrkul/FluffyCogs/blob/master/rtfs/rtfs.py"""
|
|
|
|
obj = inspect.unwrap(obj)
|
|
|
|
src: Any = getattr(obj, "__func__", obj)
|
|
|
|
if isinstance(obj, (commands.Command, app_commands.Command)):
|
|
|
|
src = obj.callback
|
|
|
|
elif isinstance(obj, (partial, partialmethod)):
|
|
|
|
src = obj.func
|
|
|
|
elif isinstance(obj, property):
|
|
|
|
src = obj.fget
|
|
|
|
elif isinstance(obj, (cached_property, CachedSlotProperty)):
|
|
|
|
src = obj.function
|
|
|
|
return inspect.getsource(src)
|
|
|
|
|
2024-05-13 20:22:13 -04:00
|
|
|
@commands.command(aliases=["source", "src", "code", "showsource"])
|
2024-05-13 19:26:13 -04:00
|
|
|
@commands.is_owner()
|
2024-05-17 00:12:40 -04:00
|
|
|
async def showcode(self, ctx: commands.Context, *, object: str):
|
|
|
|
"""Show the code for a particular object."""
|
2024-05-13 19:26:13 -04:00
|
|
|
try:
|
2024-05-17 00:12:40 -04:00
|
|
|
if object.startswith("/") and (obj := ctx.bot.tree.get_command(object[1:])):
|
|
|
|
text = self.format_src(ctx, obj)
|
|
|
|
elif obj := ctx.bot.get_cog(object):
|
|
|
|
text = self.format_src(ctx, type(obj))
|
2024-05-17 00:20:00 -04:00
|
|
|
elif obj := ctx.bot.get_command(object):
|
2024-05-17 00:12:40 -04:00
|
|
|
text = self.format_src(ctx, obj)
|
2024-05-13 21:11:15 -04:00
|
|
|
temp_content = cf.pagify(
|
2024-05-17 00:12:40 -04:00
|
|
|
text=cleanup_code(text),
|
2024-05-13 21:09:02 -04:00
|
|
|
escape_mass_mentions=True,
|
|
|
|
page_length = 1977
|
2024-05-13 21:11:15 -04:00
|
|
|
)
|
|
|
|
content = []
|
2024-05-13 21:12:51 -04:00
|
|
|
max_i = operator.length_hint(temp_content)
|
2024-05-13 21:09:02 -04:00
|
|
|
i = 1
|
|
|
|
for page in temp_content:
|
2024-05-13 21:11:15 -04:00
|
|
|
content.append(f"**Page {i}/{max_i}**\n{cf.box(page, lang='py')}")
|
2024-05-13 21:09:02 -04:00
|
|
|
i += 1
|
2024-05-13 21:14:15 -04:00
|
|
|
await SimpleMenu(pages=content, disable_after_timeout=True, timeout=180).start(ctx)
|
2024-05-17 00:14:33 -04:00
|
|
|
except (OSError, AttributeError, UnboundLocalError):
|
2024-05-13 21:14:15 -04:00
|
|
|
if ctx.embed_requested():
|
2024-05-17 00:12:40 -04:00
|
|
|
embed = Embed(title="Object not found!", color=await ctx.embed_color())
|
2024-05-13 21:14:15 -04:00
|
|
|
await ctx.send(embed=embed, reference=ctx.message.to_reference(fail_if_not_exists=False))
|
|
|
|
else:
|
2024-05-17 00:12:40 -04:00
|
|
|
await ctx.send(content="Object not found!", reference=ctx.message.to_reference(fail_if_not_exists=False))
|