2020-11-11 01:27:51 +01:00
|
|
|
import inspect
|
2020-11-09 01:18:55 +01:00
|
|
|
import logging
|
2020-11-11 01:27:51 +01:00
|
|
|
import os
|
2020-11-09 01:18:55 +01:00
|
|
|
import platform
|
|
|
|
|
|
|
|
import discord
|
|
|
|
import humanize
|
|
|
|
import psutil
|
|
|
|
from discord.ext import commands
|
|
|
|
from tuxbot import version_info, __version__
|
|
|
|
|
|
|
|
from tuxbot.core.utils.functions.extra import command_extra, ContextPlus
|
|
|
|
from tuxbot.core.bot import Tux
|
|
|
|
from tuxbot.core.i18n import (
|
|
|
|
Translator,
|
|
|
|
)
|
|
|
|
from .functions.info import fetch_info
|
|
|
|
|
|
|
|
log = logging.getLogger("tuxbot.cogs.Utils")
|
|
|
|
_ = Translator("Utils", __file__)
|
|
|
|
|
|
|
|
|
2021-04-20 17:12:38 +02:00
|
|
|
class Utils(commands.Cog):
|
2020-11-09 01:18:55 +01:00
|
|
|
def __init__(self, bot: Tux):
|
|
|
|
self.bot = bot
|
|
|
|
|
2020-11-11 01:05:36 +01:00
|
|
|
# =========================================================================
|
|
|
|
# =========================================================================
|
|
|
|
|
2020-11-09 01:18:55 +01:00
|
|
|
@command_extra(name="info", aliases=["about"])
|
|
|
|
async def _info(self, ctx: ContextPlus):
|
|
|
|
proc = psutil.Process()
|
|
|
|
infos = fetch_info()
|
|
|
|
|
|
|
|
with proc.oneshot():
|
|
|
|
mem = proc.memory_full_info()
|
2021-01-25 14:52:30 +01:00
|
|
|
cpu = proc.cpu_percent() / psutil.cpu_count()
|
|
|
|
|
2020-11-09 01:18:55 +01:00
|
|
|
e = discord.Embed(
|
|
|
|
title=_("Information about TuxBot", ctx, self.bot.config),
|
|
|
|
color=0x89C4F9,
|
|
|
|
)
|
|
|
|
|
|
|
|
e.add_field(
|
2020-11-11 02:46:48 +01:00
|
|
|
name=_(
|
|
|
|
"__:busts_in_silhouette: Development__",
|
|
|
|
ctx,
|
|
|
|
self.bot.config,
|
|
|
|
),
|
2020-11-09 01:18:55 +01:00
|
|
|
value="**Romain#5117:** [git](https://git.gnous.eu/Romain)\n"
|
|
|
|
"**Outout#4039:** [git](https://git.gnous.eu/mael)\n",
|
|
|
|
inline=True,
|
|
|
|
)
|
|
|
|
e.add_field(
|
|
|
|
name="__<:python:596577462335307777> Python__",
|
|
|
|
value=f"**python** `{platform.python_version()}`\n"
|
|
|
|
f"**discord.py** `{discord.__version__}`",
|
|
|
|
inline=True,
|
|
|
|
)
|
|
|
|
e.add_field(
|
|
|
|
name="__:gear: Usage__",
|
2020-11-11 02:46:48 +01:00
|
|
|
value=_(
|
2021-01-25 14:52:30 +01:00
|
|
|
"**{}** physical memory\n"
|
|
|
|
"**{}** virtual memory\n"
|
|
|
|
"**{:.2f}**% CPU",
|
2020-11-11 02:46:48 +01:00
|
|
|
ctx,
|
|
|
|
self.bot.config,
|
|
|
|
).format(
|
|
|
|
humanize.naturalsize(mem.rss),
|
|
|
|
humanize.naturalsize(mem.vms),
|
2021-01-25 14:52:30 +01:00
|
|
|
cpu,
|
2020-11-11 02:46:48 +01:00
|
|
|
),
|
2020-11-09 01:18:55 +01:00
|
|
|
inline=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
e.add_field(
|
2020-11-11 02:46:48 +01:00
|
|
|
name=_("__Servers count__", ctx, self.bot.config),
|
2020-11-09 01:18:55 +01:00
|
|
|
value=str(len(self.bot.guilds)),
|
|
|
|
inline=True,
|
|
|
|
)
|
|
|
|
e.add_field(
|
2020-11-11 02:46:48 +01:00
|
|
|
name=_("__Channels count__", ctx, self.bot.config),
|
2020-11-09 01:18:55 +01:00
|
|
|
value=str(len(list(self.bot.get_all_channels()))),
|
|
|
|
inline=True,
|
|
|
|
)
|
|
|
|
e.add_field(
|
2020-11-11 02:46:48 +01:00
|
|
|
name=_("__Members count__", ctx, self.bot.config),
|
2020-11-09 01:18:55 +01:00
|
|
|
value=str(len(list(self.bot.get_all_members()))),
|
|
|
|
inline=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
e.add_field(
|
2020-11-11 02:46:48 +01:00
|
|
|
name=_("__:file_folder: Files__", ctx, self.bot.config),
|
2020-11-09 01:18:55 +01:00
|
|
|
value=f"{infos.get('file_amount')} "
|
|
|
|
f"*({infos.get('python_file_amount')}"
|
|
|
|
f" <:python:596577462335307777>)*",
|
|
|
|
inline=True,
|
|
|
|
)
|
|
|
|
e.add_field(
|
2020-11-11 02:46:48 +01:00
|
|
|
name=_("__¶ Lines__", ctx, self.bot.config),
|
2020-11-09 01:18:55 +01:00
|
|
|
value=f"{infos.get('total_lines')} "
|
2021-01-20 17:29:16 +01:00
|
|
|
f"*({infos.get('total_python_class')} "
|
|
|
|
+ _("class", ctx, self.bot.config)
|
|
|
|
+ ","
|
|
|
|
f" {infos.get('total_python_functions')} "
|
|
|
|
+ _("functions", ctx, self.bot.config)
|
|
|
|
+ ","
|
|
|
|
f" {infos.get('total_python_coroutines')} "
|
|
|
|
+ _("coroutines", ctx, self.bot.config)
|
|
|
|
+ ","
|
|
|
|
f" {infos.get('total_python_comments')} "
|
|
|
|
+ _("comments", ctx, self.bot.config)
|
|
|
|
+ ")*",
|
2020-11-09 01:18:55 +01:00
|
|
|
inline=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
e.add_field(
|
2020-11-11 02:46:48 +01:00
|
|
|
name=_("__Latest changes__", ctx, self.bot.config),
|
2020-11-09 01:18:55 +01:00
|
|
|
value=version_info.info,
|
|
|
|
inline=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
e.add_field(
|
2020-11-11 02:46:48 +01:00
|
|
|
name=_("__:link: Links__", ctx, self.bot.config),
|
2020-11-09 01:18:55 +01:00
|
|
|
value="[tuxbot.gnous.eu](https://tuxbot.gnous.eu/) "
|
|
|
|
"| [gnous.eu](https://gnous.eu/) "
|
|
|
|
"| [git](https://git.gnous.eu/gnouseu/tuxbot-bot) "
|
|
|
|
"| [status](https://status.gnous.eu/check/154250) "
|
2020-11-11 02:46:48 +01:00
|
|
|
+ _("| [Invite]", ctx, self.bot.config)
|
|
|
|
+ "(https://discordapp.com/oauth2/authorize?client_id="
|
|
|
|
"301062143942590465&scope=bot&permissions=268749888)",
|
2020-11-09 01:18:55 +01:00
|
|
|
inline=False,
|
|
|
|
)
|
|
|
|
|
2020-11-09 01:27:19 +01:00
|
|
|
e.set_footer(text=f"version: {__version__} • prefix: {ctx.prefix}")
|
2020-11-09 01:18:55 +01:00
|
|
|
|
|
|
|
await ctx.send(embed=e)
|
2020-11-11 01:05:36 +01:00
|
|
|
|
|
|
|
# =========================================================================
|
|
|
|
|
|
|
|
@command_extra(name="credits", aliases=["contributors", "authors"])
|
|
|
|
async def _credits(self, ctx: ContextPlus):
|
|
|
|
e = discord.Embed(
|
|
|
|
title=_("Contributors", ctx, self.bot.config), color=0x36393F
|
|
|
|
)
|
|
|
|
|
|
|
|
e.add_field(
|
|
|
|
name="**Romain#5117** ",
|
|
|
|
value="• [github](https://github.com/Rom1-J)\n"
|
|
|
|
"• [gitea](https://git.gnous.eu/Romain)\n"
|
|
|
|
"• romain@gnous.eu",
|
|
|
|
inline=True,
|
|
|
|
)
|
|
|
|
e.add_field(
|
|
|
|
name="**Outout#4039** ",
|
|
|
|
value="• [gitea](https://git.gnous.eu/mael)\n"
|
|
|
|
"• [@outoutxyz](https://twitter.com/outouxyz)\n"
|
|
|
|
"• mael@gnous.eu",
|
|
|
|
inline=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
await ctx.send(embed=e)
|
|
|
|
|
|
|
|
# =========================================================================
|
|
|
|
|
|
|
|
@command_extra(name="invite")
|
|
|
|
async def _invite(self, ctx: ContextPlus):
|
|
|
|
basic_perms = discord.Permissions(
|
|
|
|
add_reactions=True,
|
|
|
|
read_messages=True,
|
|
|
|
send_messages=True,
|
|
|
|
manage_messages=True,
|
|
|
|
embed_links=True,
|
|
|
|
attach_files=True,
|
|
|
|
read_message_history=True,
|
|
|
|
external_emojis=True,
|
|
|
|
connect=True,
|
|
|
|
speak=True,
|
|
|
|
manage_roles=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
admin_perms = discord.Permissions(
|
|
|
|
create_instant_invite=True,
|
|
|
|
kick_members=True,
|
|
|
|
ban_members=True,
|
|
|
|
add_reactions=True,
|
|
|
|
read_messages=True,
|
|
|
|
send_messages=True,
|
|
|
|
manage_messages=True,
|
|
|
|
embed_links=True,
|
|
|
|
attach_files=True,
|
|
|
|
read_message_history=True,
|
|
|
|
external_emojis=True,
|
|
|
|
connect=True,
|
|
|
|
speak=True,
|
|
|
|
manage_roles=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
e = discord.Embed(
|
|
|
|
title=_("Invite", ctx, self.bot.config), color=0x36393F
|
|
|
|
)
|
|
|
|
|
|
|
|
e.add_field(
|
|
|
|
name=_("Minimal", ctx, self.bot.config),
|
|
|
|
value=_(
|
|
|
|
"The minimum permissions include the strict requirements for "
|
|
|
|
"the proper functioning of all basics commands.\n",
|
|
|
|
ctx,
|
|
|
|
self.bot.config,
|
|
|
|
)
|
2020-11-11 02:46:48 +01:00
|
|
|
+ _("[Add!]", ctx, self.bot.config)
|
|
|
|
+ f"({discord.utils.oauth_url(self.bot.user.id, basic_perms)})",
|
2020-11-11 01:05:36 +01:00
|
|
|
inline=False,
|
|
|
|
)
|
|
|
|
e.add_field(
|
|
|
|
name=_("Admin", ctx, self.bot.config),
|
|
|
|
value=_(
|
|
|
|
"All minimal permissions + extra permissions for admin "
|
|
|
|
"commands such as kick and ban\n",
|
|
|
|
ctx,
|
|
|
|
self.bot.config,
|
|
|
|
)
|
2020-11-11 02:46:48 +01:00
|
|
|
+ _("[Add!]", ctx, self.bot.config)
|
|
|
|
+ f"({discord.utils.oauth_url(self.bot.user.id, admin_perms)})",
|
2020-11-11 01:05:36 +01:00
|
|
|
inline=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
await ctx.send(embed=e)
|
2020-11-11 01:27:51 +01:00
|
|
|
|
|
|
|
# =========================================================================
|
|
|
|
|
|
|
|
@command_extra(name="source")
|
2020-11-11 02:46:48 +01:00
|
|
|
async def _source(self, ctx: ContextPlus, *, name=None):
|
2020-11-11 01:27:51 +01:00
|
|
|
base_url = "https://github.com/Rom1-J/tuxbot-bot"
|
|
|
|
|
|
|
|
if not name:
|
|
|
|
return await ctx.send(f"<{base_url}>")
|
|
|
|
|
|
|
|
cmd = self.bot.get_command(name)
|
|
|
|
|
|
|
|
if cmd:
|
2021-04-20 15:43:20 +02:00
|
|
|
# noinspection PyUnresolvedReferences
|
2020-11-11 01:27:51 +01:00
|
|
|
src = cmd.callback.__code__
|
|
|
|
rpath = src.co_filename
|
|
|
|
else:
|
|
|
|
return await ctx.send(
|
|
|
|
_("Unable to find `{}`", ctx, self.bot.config).format(name)
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
|
|
|
lines, start_line = inspect.getsourcelines(src)
|
|
|
|
except OSError:
|
|
|
|
return await ctx.send(
|
|
|
|
_(
|
|
|
|
"Unable to fetch lines for `{}`", ctx, self.bot.config
|
|
|
|
).format(name)
|
|
|
|
)
|
|
|
|
|
|
|
|
location = (
|
|
|
|
os.path.relpath(rpath)
|
|
|
|
.replace("\\", "/")
|
|
|
|
.split("site-packages/")[1]
|
|
|
|
)
|
|
|
|
|
|
|
|
final_url = (
|
|
|
|
f"<{base_url}/tree/master/{location}#L{start_line}"
|
|
|
|
f"-L{start_line + len(lines) - 1}>"
|
|
|
|
)
|
|
|
|
await ctx.send(final_url)
|