college-bot-v2/src/main.py

255 lines
9.4 KiB
Python
Raw Normal View History

2024-01-10 09:39:46 +00:00
import asyncio
import datetime
2024-04-29 01:41:02 +01:00
import glob
import logging
2024-04-18 00:24:58 +01:00
import random
import shutil
import sys
2024-04-18 00:24:58 +01:00
import time
import traceback
2024-01-10 09:39:46 +00:00
import typing
from logging import FileHandler
2024-04-18 00:24:58 +01:00
from threading import Event, Thread
import discord
2024-04-18 00:24:58 +01:00
import httpx
from discord.ext import commands
from rich.console import Console
2024-04-18 00:24:58 +01:00
from rich.logging import RichHandler
from conf import CONFIG
2024-03-04 12:39:45 +00:00
class KillableThread(Thread):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.kill = Event()
class KumaThread(KillableThread):
def __init__(self, url: str, interval: float = 60.0):
super().__init__(target=self.run)
self.daemon = True
self.log = logging.getLogger("philip.status")
self.url = url
self.interval = interval
self.kill = Event()
self.retries = 0
self.previous = False
2024-04-16 00:46:26 +01:00
2024-03-04 12:39:45 +00:00
def calculate_backoff(self) -> float:
rnd = random.uniform(0, 1)
retries = min(self.retries, 1000)
2024-04-16 00:46:26 +01:00
t = (2 * 2**retries) + rnd
2024-03-04 12:39:45 +00:00
self.log.debug("Backoff: 2 * (2 ** %d) + %f = %f", retries, rnd, t)
# T can never exceed self.interval
return max(0, min(self.interval, t))
2024-04-16 00:46:26 +01:00
2024-03-04 12:39:45 +00:00
def run(self) -> None:
with httpx.Client(http2=True) as client:
while not self.kill.is_set():
start_time = time.time()
try:
self.retries += 1
2024-05-01 20:18:38 +01:00
url = self.url
if url.endswith("ping="):
url += str(round(bot.latency, 2))
if bot.is_ready() is False:
url = url.replace("status=up", "status=down")
url = url.replace("msg=OK", "msg=Bot%20not%20ready")
response = client.get(url)
2024-03-04 12:39:45 +00:00
response.raise_for_status()
self.previous = bot.is_ready()
2024-03-04 12:39:45 +00:00
except httpx.HTTPError as error:
2024-05-01 20:18:38 +01:00
self.log.error("Failed to connect to uptime-kuma: %r: %r", url, error, exc_info=error)
2024-03-04 12:39:45 +00:00
timeout = self.calculate_backoff()
self.log.warning("Waiting %d seconds before retrying ping.", timeout)
time.sleep(timeout)
continue
self.retries = 0
end_time = time.time()
timeout = self.interval - (end_time - start_time)
if self.previous is False:
timeout = 10
2024-03-04 12:39:45 +00:00
self.kill.wait(timeout)
log = logging.getLogger("jimmy")
CONFIG.setdefault("logging", {})
cols, lns = shutil.get_terminal_size((120, 48))
logging.basicConfig(
2024-01-06 22:32:43 +00:00
format="%(asctime)s %(levelname)s %(name)s: %(message)s",
datefmt="%Y-%m-%d %H:%M:%S",
level=CONFIG["logging"].get("level", "INFO"),
handlers=[
RichHandler(
level=CONFIG["logging"].get("level", "INFO"),
show_time=False,
show_path=False,
markup=True,
2024-04-16 00:46:26 +01:00
console=Console(width=cols, height=lns),
),
2024-04-16 00:46:26 +01:00
FileHandler(filename=CONFIG["logging"].get("file", "jimmy.log"), mode="a", encoding="utf-8", errors="replace"),
],
)
for logger in CONFIG["logging"].get("suppress", []):
logging.getLogger(logger).setLevel(logging.WARNING)
log.info(f"Suppressed logging for {logger}")
2024-01-10 09:39:46 +00:00
class Client(commands.Bot):
def __init_(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.web: typing.Optional[asyncio.Task] = None
2024-03-04 12:39:45 +00:00
self.uptime_thread = None
2024-01-10 09:39:46 +00:00
async def start(self, token: str, *, reconnect: bool = True) -> None:
2024-03-04 12:39:45 +00:00
if CONFIG["jimmy"].get("uptime_kuma_url"):
self.uptime_thread = KumaThread(
2024-04-16 00:46:26 +01:00
CONFIG["jimmy"]["uptime_kuma_url"], CONFIG["jimmy"].get("uptime_kuma_interval", 60.0)
2024-03-04 12:39:45 +00:00
)
self.uptime_thread.start()
2024-01-10 09:39:46 +00:00
await super().start(token, reconnect=reconnect)
async def close(self) -> None:
2024-03-31 18:57:04 +01:00
if self.uptime_thread:
self.uptime_thread.kill.set()
await asyncio.get_event_loop().run_in_executor(None, self.uptime_thread.join)
2024-01-10 09:39:46 +00:00
await super().close()
2024-02-06 23:03:49 +00:00
2024-01-10 09:47:37 +00:00
bot = Client(
command_prefix=commands.when_mentioned_or("h!", "H!"),
case_insensitive=True,
strip_after_prefix=True,
2024-04-14 23:15:17 +01:00
debug_guilds=CONFIG["jimmy"].get("debug_guilds"),
2024-04-16 00:46:26 +01:00
intents=discord.Intents.all(),
)
2024-04-29 01:41:02 +01:00
for module in CONFIG["jimmy"].get("modules", ["cogs/*.py"]):
2024-02-06 23:03:49 +00:00
try:
2024-04-29 01:41:02 +01:00
bot.load_extension(module)
2024-04-29 01:42:02 +01:00
except (discord.ExtensionNotFound, ModuleNotFoundError):
2024-04-29 01:41:02 +01:00
log.debug("%r does not exist - trying as glob pattern", module)
for ext in glob.glob(module, recursive=True):
if ext.endswith(("__init__.py", ".pyc")):
continue
2024-04-29 01:41:02 +01:00
ext = ext.replace("/", ".")[:-3] # foo/bar.py -> foo.bar
2024-04-29 01:43:05 +01:00
if ext.split(".")[-1].startswith("__"):
log.info("Skipping loading %s - starts with double underscore." % ext)
2024-04-29 01:41:02 +01:00
try:
bot.load_extension(ext)
2024-04-29 01:42:16 +01:00
except (discord.ExtensionError, ModuleNotFoundError) as e:
2024-04-29 01:41:02 +01:00
log.error(f"Failed to load extension {ext}", exc_info=e)
else:
log.info(f"Loaded extension {ext}")
2024-02-06 23:03:49 +00:00
except discord.ExtensionError as e:
2024-04-29 01:41:02 +01:00
log.error(f"Failed to load extension {module}", exc_info=e)
2024-02-06 23:03:49 +00:00
else:
2024-04-29 01:41:02 +01:00
log.info(f"Loaded extension {module}")
2024-05-01 20:18:38 +01:00
@bot.event
async def on_ready():
log.info(f"Logged in as {bot.user} ({bot.user.id})")
@bot.listen()
async def on_application_command(ctx: discord.ApplicationContext):
log.info(f"Received command [b]{ctx.command}[/] from {ctx.author} in {ctx.guild}")
ctx.start_time = discord.utils.utcnow()
@bot.listen()
async def on_application_command_error(ctx: discord.ApplicationContext, exc: Exception):
log.error(f"Error in {ctx.command} from {ctx.author} in {ctx.guild}", exc_info=exc)
if isinstance(exc, commands.CommandOnCooldown):
expires = discord.utils.utcnow() + datetime.timedelta(seconds=exc.retry_after)
await ctx.respond(f"Command on cooldown. Try again {discord.utils.format_dt(expires, style='R')}.")
elif isinstance(exc, commands.MaxConcurrencyReached):
await ctx.respond("You've reached the maximum number of concurrent uses for this command.")
else:
if await bot.is_owner(ctx.author):
paginator = commands.Paginator(prefix="```py")
for line in traceback.format_exception(type(exc), exc, exc.__traceback__):
paginator.add_line(line[:1990])
for page in paginator.pages:
await ctx.respond(page)
else:
2024-04-16 00:46:26 +01:00
await ctx.respond(f"An error occurred while processing your command. Please try again later.\n" f"{exc}")
@bot.listen()
async def on_application_command_completion(ctx: discord.ApplicationContext):
time_taken = discord.utils.utcnow() - ctx.start_time
log.info(
f"Completed command [b]{ctx.command}[/] from {ctx.author} in "
f"{ctx.guild} in {time_taken.total_seconds():.2f} seconds."
)
2024-01-10 09:59:45 +00:00
@bot.message_command(name="Delete Message")
2024-01-10 10:14:45 +00:00
async def delete_message(ctx: discord.ApplicationContext, message: discord.Message):
2024-01-10 09:59:45 +00:00
await ctx.defer()
if not ctx.channel.permissions_for(ctx.me).manage_messages:
2024-01-10 10:14:45 +00:00
if message.author != bot.user:
2024-01-10 09:59:45 +00:00
return await ctx.respond("I don't have permission to delete messages in this channel.", delete_after=30)
2024-04-16 00:46:26 +01:00
log.info("%s deleted message %s>%s: %r", ctx.author, ctx.channel.name, message.id, message.content)
2024-01-10 10:14:45 +00:00
await message.delete(delay=3)
await ctx.respond(f"\N{white heavy check mark} Deleted message by {message.author.display_name}.")
2024-01-10 09:59:45 +00:00
await ctx.delete(delay=15)
@bot.check_once
async def check_is_enabled(ctx: commands.Context | discord.ApplicationContext) -> bool:
disabled = CONFIG["jimmy"].get("disabled_commands", [])
if ctx.command.qualified_name in disabled:
raise commands.DisabledCommand(
"%s is disabled via this instance's configuration file." % (
ctx.command.qualified_name
)
)
return True
@bot.check_once
async def add_delays(ctx: commands.Context | discord.ApplicationContext) -> bool:
blocked = CONFIG["jimmy"].get("delay", {})
2024-05-01 01:27:18 +01:00
if str(ctx.author.id) in blocked:
range_start, range_end = blocked[str(ctx.author.id)]
range_start = max(0.01, range_start)
range_end = min(2.89, range_end)
n = random.randint(round(range_start * 100), round(range_end * 100)) / 100
log.warning("Delaying user %s by %.2f seconds.", ctx.author, n)
await asyncio.sleep(n)
log.info("Artificial delay for %s lifted", ctx.author)
else:
log.debug("%s is not in %s", ctx.author.id, blocked.keys())
return True
if not CONFIG["jimmy"].get("token"):
log.critical("No token specified in config.toml. Exiting. (hint: set jimmy.token in config.toml)")
sys.exit(1)
2024-01-10 09:39:46 +00:00
__disabled = CONFIG["jimmy"].get("disabled_commands", [])
__disabled_mode = CONFIG["jimmy"].get("disabled_mode", "disabled").lower()
if __disabled:
if __disabled_mode == "delete":
for __command__name in __disabled:
_cmd = bot.get_application_command(__command__name)
if not _cmd:
log.warning("Unknown command %r - cannot remove.", __command__name)
else:
bot.remove_application_command(_cmd)
2024-05-01 01:29:42 +01:00
log.info("Removed command %s", __command__name)
else:
log.info("Disabled commands are specified, however they're soft-blocked.")
else:
log.info("No commands to disable. Full steam ahead!")
bot.run(CONFIG["jimmy"]["token"])