134 lines
4.5 KiB
Python
134 lines
4.5 KiB
Python
import os
|
||
import platform
|
||
import time
|
||
|
||
import discord
|
||
import humanize
|
||
import psutil
|
||
from discord.ext import commands
|
||
|
||
from bot import TuxBot
|
||
from .utils.lang import Texts
|
||
|
||
|
||
class Basics(commands.Cog):
|
||
|
||
def __init__(self, bot: TuxBot):
|
||
self.bot = bot
|
||
|
||
@staticmethod
|
||
def _latest_commits():
|
||
cmd = 'git log -n 3 -s --format="[\`%h\`](https://git.gnous.eu/gnouseu/tuxbot-bot/commits/%H) %s (%cr)"'
|
||
|
||
return os.popen(cmd).read().strip()
|
||
|
||
"""---------------------------------------------------------------------"""
|
||
|
||
@commands.command(name='ping')
|
||
async def _ping(self, ctx: commands.Context):
|
||
start = time.perf_counter()
|
||
await ctx.trigger_typing()
|
||
end = time.perf_counter()
|
||
|
||
latency = round(self.bot.latency * 1000, 2)
|
||
typing = round((end - start) * 1000, 2)
|
||
|
||
e = discord.Embed(title='Ping', color=discord.Color.teal())
|
||
e.add_field(name='Websocket', value=f'{latency}ms')
|
||
e.add_field(name='Typing', value=f'{typing}ms')
|
||
await ctx.send(embed=e)
|
||
|
||
"""---------------------------------------------------------------------"""
|
||
|
||
@commands.command(name='info', aliases=['about'])
|
||
async def _info(self, ctx: commands.Context):
|
||
proc = psutil.Process()
|
||
with proc.oneshot():
|
||
mem = proc.memory_full_info()
|
||
e = discord.Embed(
|
||
title=f"{Texts('basics').get('Information about TuxBot')}",
|
||
color=0x89C4F9)
|
||
|
||
e.add_field(
|
||
name=f"__{Texts('basics').get('Latest changes')}__",
|
||
value=self._latest_commits(),
|
||
inline=False)
|
||
|
||
e.add_field(
|
||
name=f"__:busts_in_silhouette: "
|
||
f"{Texts('basics').get('Development')}__",
|
||
value=f"**Romain#5117:** [git](https://git.gnous.eu/Romain)\n"
|
||
f"**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__",
|
||
value=f"**{humanize.naturalsize(mem.rss)}** "
|
||
f"{Texts('basics').get('physical memory')}\n"
|
||
f"**{humanize.naturalsize(mem.vms)}** "
|
||
f"{Texts('basics').get('virtual memory')}\n",
|
||
inline=True
|
||
)
|
||
|
||
e.add_field(
|
||
name=f"__{Texts('basics').get('Servers count')}__",
|
||
value=str(len(self.bot.guilds)),
|
||
inline=True
|
||
)
|
||
e.add_field(
|
||
name=f"__{Texts('basics').get('Channels count')}__",
|
||
value=str(len([_ for _ in self.bot.get_all_channels()])),
|
||
inline=True
|
||
)
|
||
e.add_field(
|
||
name=f"__{Texts('basics').get('Members count')}__",
|
||
value=str(len([_ for _ in self.bot.get_all_members()])),
|
||
inline=True
|
||
)
|
||
|
||
e.add_field(
|
||
name=f"__{Texts('basics').get('Links')}__",
|
||
value="[tuxbot.gnous.eu](https://tuxbot.gnous.eu/) "
|
||
"| [gnous.eu](https://gnous.eu/) "
|
||
f"| [{Texts('basics').get('Invite')}](https://discordapp.com/oauth2/authorize?client_id=301062143942590465&scope=bot&permissions=268749888)",
|
||
inline=False
|
||
)
|
||
|
||
e.set_footer(text=f'version: {self.bot.version}')
|
||
|
||
await ctx.send(embed=e)
|
||
|
||
"""---------------------------------------------------------------------"""
|
||
|
||
@commands.command(name='credits', aliases=['contributors'])
|
||
async def _credits(self, ctx: commands.Context):
|
||
e = discord.Embed(
|
||
title=Texts('basics').get('Contributors'),
|
||
color=0x36393f
|
||
)
|
||
|
||
e.add_field(
|
||
name="**Outout#4039** ",
|
||
value="• https://git.gnous.eu/mael ⠀\n"
|
||
"• mael@gnous.eu\n"
|
||
"• [@outoutxyz](https://twitter.com/outouxyz)",
|
||
inline=True
|
||
)
|
||
e.add_field(
|
||
name="**Romain#5117** ",
|
||
value="• https://git.gnous.eu/Romain\n"
|
||
"• romain@gnous.eu",
|
||
inline=True
|
||
)
|
||
|
||
await ctx.send(embed=e)
|
||
|
||
|
||
def setup(bot: TuxBot):
|
||
bot.add_cog(Basics(bot))
|