goober/bot.py

419 lines
12 KiB
Python
Raw Normal View History

2025-01-05 21:03:49 +01:00
import os
import re
import json
import time
import random
import traceback
2025-01-05 21:03:49 +01:00
import subprocess
import tempfile
import shutil
import sys
2025-07-23 10:19:08 +03:00
from typing import (
List,
Dict,
Literal,
Set,
Optional,
Tuple,
Any,
TypedDict,
Union,
Callable,
Coroutine,
TypeVar,
Type,
)
import logging
2025-06-27 19:45:44 +02:00
from modules.prestartchecks import start_checks
from modules.logger import GooberFormatter
import modules.keys as k
from modules import key_compiler
import logging
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler
from modules.settings import instance as settings_manager
2025-07-23 10:19:08 +03:00
from modules.permission import requires_admin
import threading
2025-07-23 10:19:08 +03:00
def build_keys():
2025-07-23 10:19:08 +03:00
key_compiler.build_result(
"en",
"assets/locales",
types=True,
output_path="modules/keys.py",
generate_comments=True,
)
build_keys()
2025-07-25 23:19:24 +03:00
logger = logging.getLogger("goober")
logger.setLevel(logging.DEBUG)
console_handler = logging.StreamHandler()
console_handler.setLevel(logging.DEBUG)
console_handler.setFormatter(GooberFormatter())
file_handler = logging.FileHandler("log.txt", mode="w+", encoding="UTF-8")
file_handler.setLevel(logging.DEBUG)
file_handler.setFormatter(GooberFormatter(colors=False))
logger.addHandler(console_handler)
logger.addHandler(file_handler)
settings = settings_manager.settings
splash_text: str = ""
2025-07-25 23:19:24 +03:00
k.change_language(settings["locale"])
with open(settings["splash_text_loc"], "r", encoding="UTF-8") as f:
splash_text = "".join(f.readlines())
print(splash_text)
2025-06-27 19:45:44 +02:00
start_checks()
import discord
from discord.ext import commands
from discord import app_commands
2025-07-23 10:19:08 +03:00
from discord import Colour, Message
from better_profanity import profanity
from discord.ext import commands
2025-06-27 19:45:44 +02:00
2025-06-20 23:48:10 +02:00
from modules.markovmemory import *
2025-06-21 12:00:49 +02:00
from modules.sentenceprocessing import *
2025-06-22 20:49:07 +02:00
from modules.unhandledexception import handle_exception
2025-07-23 10:19:08 +03:00
from modules.image import gen_demotivator
2025-03-16 16:39:26 +01:00
2025-06-27 19:45:44 +02:00
sys.excepthook = handle_exception
2025-03-16 16:39:26 +01:00
class MessageMetadata(TypedDict):
user_id: str
user_name: str
guild_id: str | Literal["DM"]
guild_name: str | Literal["DM"]
channel_id: str
channel_name: str
message: str
timestamp: float
2025-07-23 10:19:08 +03:00
# Constants with type hints
positive_gifs: List[str] = settings["bot"]["misc"]["positive_gifs"]
currenthash: str = ""
launched: bool = False
slash_commands_enabled: bool = False
2025-01-05 21:03:49 +01:00
# Set up Discord bot intents and create bot instance
intents: discord.Intents = discord.Intents.default()
2025-01-05 21:03:49 +01:00
intents.messages = True
intents.message_content = True
bot: commands.Bot = commands.Bot(
command_prefix=settings["bot"]["prefix"],
intents=intents,
2025-07-23 10:19:08 +03:00
allowed_mentions=discord.AllowedMentions(
everyone=False, roles=False, users=False, replied_user=True
),
)
# Load memory and Markov model for text generation
memory: List[str | Dict[Literal["_meta"], MessageMetadata]] = load_memory()
markov_model: Optional[markovify.Text] = load_markov_model()
2025-01-05 21:03:49 +01:00
if not markov_model:
logger.error(k.markov_model_not_found())
2025-01-05 21:03:49 +01:00
memory = load_memory()
markov_model = train_markov_model(memory)
generated_sentences: Set[str] = set()
used_words: Set[str] = set()
2025-07-23 10:19:08 +03:00
async def load_cogs_from_folder(bot: commands.Bot, folder_name="assets/cogs"):
for filename in [file for file in os.listdir(folder_name) if file.endswith(".py")]:
2025-07-23 10:19:08 +03:00
cog_name: str = filename[:-3]
if (
"internal" not in folder_name
and cog_name not in settings["bot"]["enabled_cogs"]
):
logger.debug(f"Skipping cog {cog_name} (not in enabled cogs)")
continue
module_path = folder_name.replace("/", ".").replace("\\", ".") + f".{cog_name}"
try:
await bot.load_extension(module_path)
logger.info(f"{k.loaded_cog()} {cog_name}")
except Exception as e:
logger.error(f"{k.cog_fail()} {cog_name} {e}")
traceback.print_exc()
2025-01-05 21:03:49 +01:00
# Event: Called when the bot is ready
2025-01-05 21:03:49 +01:00
@bot.event
async def on_ready() -> None:
2025-06-21 00:33:33 +02:00
global launched
2025-07-23 10:19:08 +03:00
folder_name: str = "cogs"
if launched:
return
2025-07-23 10:19:08 +03:00
await load_cogs_from_folder(bot, "assets/cogs/internal")
await load_cogs_from_folder(bot)
2025-01-05 21:03:49 +01:00
try:
synced: List[discord.app_commands.AppCommand] = await bot.tree.sync()
logger.info(f"{k.synced_commands()} {len(synced)} {k.synced_commands2()}")
logger.info(k.started(settings["name"]))
2025-07-02 15:58:51 +02:00
except discord.errors.Forbidden as perm_error:
2025-07-23 10:19:08 +03:00
logger.error(f"Permission error while syncing commands: {perm_error}")
logger.error(
"Make sure the bot has the 'applications.commands' scope and is invited with the correct permissions."
)
quit()
2025-01-05 21:03:49 +01:00
except Exception as e:
logger.error(f"{k.fail_commands_sync()} {e}")
2025-03-16 16:39:26 +01:00
traceback.print_exc()
quit()
2025-07-23 10:19:08 +03:00
if not settings["bot"]["misc"]["active_song"]:
2025-07-23 10:19:08 +03:00
return
await bot.change_presence(
activity=discord.Activity(
type=discord.ActivityType.listening,
name=settings["bot"]["misc"]["active_song"],
)
)
launched = True
2025-01-05 21:03:49 +01:00
2025-07-23 10:19:08 +03:00
2025-06-22 20:49:07 +02:00
@bot.event
async def on_command_error(ctx: commands.Context, error: commands.CommandError) -> None:
2025-06-22 20:49:07 +02:00
from modules.unhandledexception import handle_exception
2025-07-23 10:19:08 +03:00
2025-06-22 20:49:07 +02:00
if isinstance(error, commands.CommandInvokeError):
original: Exception = error.original
2025-06-22 20:49:07 +02:00
handle_exception(
2025-07-23 10:19:08 +03:00
type(original),
original,
original.__traceback__,
context=f"Command: {ctx.command} | User: {ctx.author}",
2025-06-22 20:49:07 +02:00
)
else:
handle_exception(
2025-07-23 10:19:08 +03:00
type(error),
error,
error.__traceback__,
context=f"Command: {ctx.command} | User: {ctx.author}",
2025-06-22 20:49:07 +02:00
)
2025-07-23 10:19:08 +03:00
# New demotivator command
@bot.hybrid_command(description="Generate a demotivator poster with two lines of text")
async def demotivator(ctx: commands.Context) -> None:
assets_folder: str = "assets/images"
temp_input: str | None = None
def get_random_asset_image() -> Optional[str]:
2025-07-23 10:19:08 +03:00
files: List[str] = [
f
for f in os.listdir(assets_folder)
if f.lower().endswith((".png", ".jpg", ".jpeg", ".webp"))
]
if not files:
return None
return os.path.join(assets_folder, random.choice(files))
if ctx.message.attachments:
attachment: discord.Attachment = ctx.message.attachments[0]
if attachment.content_type and attachment.content_type.startswith("image/"):
ext: str = os.path.splitext(attachment.filename)[1]
temp_input = f"tempy{ext}"
with open(temp_input, "wb") as f:
await attachment.save(f)
input_path: str = temp_input
else:
fallback_image: Optional[str] = get_random_asset_image()
if fallback_image is None:
await ctx.reply(k.no_image_available())
return
temp_input = tempfile.mktemp(suffix=os.path.splitext(fallback_image)[1])
shutil.copy(fallback_image, temp_input)
input_path = temp_input
else:
fallback_image = get_random_asset_image()
if fallback_image is None:
await ctx.reply(k.no_image_available())
return
temp_input = tempfile.mktemp(suffix=os.path.splitext(fallback_image)[1])
shutil.copy(fallback_image, temp_input)
input_path = temp_input
output_path: Optional[str] = await gen_demotivator(input_path)
2025-06-27 19:17:13 +02:00
if output_path is None or not os.path.isfile(output_path):
if temp_input and os.path.exists(temp_input):
os.remove(temp_input)
await ctx.reply("Failed to generate demotivator.")
return
2025-06-27 19:17:13 +02:00
await ctx.send(file=discord.File(output_path))
2025-06-27 19:17:13 +02:00
if temp_input and os.path.exists(temp_input):
os.remove(temp_input)
2025-07-23 10:19:08 +03:00
# Event: Called on every message
2025-01-05 21:03:49 +01:00
@bot.event
async def on_message(message: discord.Message) -> None:
global memory, markov_model
2025-07-23 10:19:08 +03:00
EMOJIS = [
"\U0001f604",
"\U0001f44d",
"\U0001f525",
"\U0001f4af",
"\U0001f389",
"\U0001f60e",
] # originally was emojis but it would probably shit itself on systems without unicode so....
2025-01-05 21:03:49 +01:00
if message.author.bot:
return
if message.author.id in settings["bot"]["blacklisted_users"]:
2025-01-05 21:03:49 +01:00
return
2025-07-23 10:19:08 +03:00
commands = [
settings["bot"]["prefix"] + command.name for command in bot.tree.get_commands()
]
if message.content.startswith(tuple(commands)):
logger.info(f"{k.command_ran(message.author.name, message.content)}")
2025-01-05 21:03:49 +01:00
await bot.process_commands(message)
return
2025-07-23 10:19:08 +03:00
if (
profanity.contains_profanity(message.content)
and settings["bot"]["misc"]["block_profanity"]
):
2025-01-05 21:03:49 +01:00
return
if message.content:
if not settings["bot"]["user_training"]:
2025-01-05 21:03:49 +01:00
return
2025-07-23 10:19:08 +03:00
formatted_message: str = append_mentions_to_18digit_integer(message.content)
cleaned_message: str = preprocess_message(formatted_message)
2025-01-05 21:03:49 +01:00
if cleaned_message:
memory.append(cleaned_message)
message_metadata: MessageMetadata = {
2025-07-16 19:27:12 +02:00
"user_id": str(message.author.id),
"user_name": str(message.author),
"guild_id": str(message.guild.id) if message.guild else "DM",
"guild_name": str(message.guild.name) if message.guild else "DM",
"channel_id": str(message.channel.id),
"channel_name": str(message.channel),
"message": message.content,
2025-07-23 10:19:08 +03:00
"timestamp": time.time(),
2025-07-16 19:27:12 +02:00
}
try:
if isinstance(memory, list):
memory.append({"_meta": message_metadata})
else:
logger.warning("Memory is not a list; can't append metadata")
except Exception as e:
logger.warning(f"Failed to append metadata to memory: {e}")
save_memory(memory)
2025-01-05 21:03:49 +01:00
2025-07-23 10:19:08 +03:00
sentiment_score = is_positive(
message.content
) # doesnt work but im scared to change the logic now please ignore
2025-07-06 23:31:07 +02:00
if sentiment_score > 0.8:
if not settings["bot"]["react_to_messages"]:
2025-07-06 23:44:04 +02:00
return
2025-07-06 23:31:07 +02:00
emoji = random.choice(EMOJIS)
try:
await message.add_reaction(emoji)
except Exception as e:
logger.info(f"Failed to react with emoji: {e}")
2025-07-06 23:31:07 +02:00
2025-01-05 21:03:49 +01:00
await bot.process_commands(message)
2025-07-23 10:19:08 +03:00
# Event: Called on every interaction (slash command, etc.)
@bot.event
async def on_interaction(interaction: discord.Interaction) -> None:
logger.info(f"{k.command_ran_s(interaction.user.name)} {interaction.user.name}")
2025-07-23 10:19:08 +03:00
# Global check: Block blacklisted users from running commands
@bot.check
async def block_blacklisted(ctx: commands.Context) -> bool:
2025-07-23 10:19:08 +03:00
if ctx.author.id not in settings["bot"]["blacklisted_users"]:
return True
try:
if isinstance(ctx, discord.Interaction):
if not ctx.response.is_done():
await ctx.response.send_message(k.blacklisted(), ephemeral=True)
else:
2025-07-23 10:19:08 +03:00
await ctx.followup.send(k.blacklisted(), ephemeral=True)
else:
await ctx.send(k.blacklisted_user(), ephemeral=True)
except:
return False
2025-07-23 10:19:08 +03:00
return True
2025-07-23 10:19:08 +03:00
# Helper: Improve sentence coherence (simple capitalization fix)
def improve_sentence_coherence(sentence: str) -> str:
# Capitalizes "i" to "I" in the sentence
2025-01-05 21:03:49 +01:00
sentence = sentence.replace(" i ", " I ")
return sentence
class OnMyWatch:
watchDirectory = "assets/locales"
def __init__(self):
self.observer = Observer()
def run(self):
event_handler = Handler()
2025-07-23 10:19:08 +03:00
self.observer.schedule(event_handler, self.watchDirectory, recursive=True)
self.observer.start()
try:
while True:
time.sleep(5)
except:
self.observer.stop()
print("Observer Stopped")
self.observer.join()
class Handler(FileSystemEventHandler):
def on_any_event(self, event):
if event.is_directory:
return None
2025-07-23 10:19:08 +03:00
elif event.event_type == "modified":
build_keys()
observer = Observer()
observer.schedule(Handler(), "assets/locales")
observer.start()
# Start the bot
if __name__ == "__main__":
bot.run(os.environ.get("DISCORD_BOT_TOKEN", ""))