54 lines
2.5 KiB
Python
54 lines
2.5 KiB
Python
|
# _____ _
|
||
|
# / ____| (_)
|
||
|
# | (___ ___ __ _ _____ ___ _ __ ___ _ __ ___ ___ _ __
|
||
|
# \___ \ / _ \/ _` / __\ \ /\ / / | '_ ` _ \| '_ ` _ \ / _ \ '__|
|
||
|
# ____) | __/ (_| \__ \\ V V /| | | | | | | | | | | | __/ |
|
||
|
# |_____/ \___|\__,_|___/ \_/\_/ |_|_| |_| |_|_| |_| |_|\___|_|
|
||
|
|
||
|
import json
|
||
|
import subprocess
|
||
|
|
||
|
import discord
|
||
|
from redbot.core import commands
|
||
|
from redbot.core.bot import Red
|
||
|
from redbot.core.utils import chat_formatting as cf
|
||
|
|
||
|
|
||
|
class Speedtest(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)
|
||
|
|
||
|
@commands.command()
|
||
|
@commands.is_owner()
|
||
|
async def speedtest(self, ctx: commands.Context):
|
||
|
"""Run a speedtest."""
|
||
|
msg = await ctx.maybe_send_embed("Running speedtest...")
|
||
|
result = subprocess.run(["speedtest", "-f json", "--accept-license"], stdout=subprocess.PIPE)
|
||
|
r = json.loads(result.stdout.decode("utf-8"))
|
||
|
if await ctx.embed_requested():
|
||
|
embed = discord.Embed(title="Speedtest Results", link=r["result"]["url"], color=await ctx.embed_color())
|
||
|
embed.add_field(name="Bandwidth", value=f"{r['download']['bandwidth'] / 1_000_000:.2f} Mbps down, {r['upload']['bandwidth'] / 1_000_000:.2f} Mbps up")
|
||
|
embed.add_field(name="Ping", value=f"Base: {round(r['ping']['latency'])} ms \nDownload: {round(r['download']['latency']['igm'])} ms \nUpload: {round(r['upload']['latency']['igm'])} ms")
|
||
|
embed.set_image(url=r["result"]["image"] + ".png")
|
||
|
await msg.edit(embed=embed)
|
||
|
else:
|
||
|
await msg.edit(content=f"**Speedtest Results**\n"
|
||
|
f"**Bandwidth**: {r['download']['bandwidth'] / 1_000_000:.2f} Mbps down, {r['upload']['bandwidth'] / 1_000_000:.2f} Mbps up\n"
|
||
|
f"**Ping**: Base: {round(r['ping']['latency'])} ms, Download: {round(r['download']['latency']['igm'])} ms, Upload: {round(r['upload']['latency']['igm'])} ms\n"
|
||
|
f"**Results**: {r['result']['url']}")
|