mostly working idfk
This commit is contained in:
parent
b0ba03f97d
commit
4e111b410d
12 changed files with 822 additions and 291 deletions
435
main.py
435
main.py
|
@ -7,16 +7,30 @@ import traceback
|
|||
import subprocess
|
||||
import tempfile
|
||||
import shutil
|
||||
import psutil
|
||||
import asyncio
|
||||
import platform
|
||||
import sys
|
||||
from typing import List, Dict, Set, Optional, Tuple, Any, Union, Callable, Coroutine, TypeVar, Type
|
||||
from typing import (
|
||||
List,
|
||||
Dict,
|
||||
Literal,
|
||||
Set,
|
||||
Optional,
|
||||
Tuple,
|
||||
Any,
|
||||
TypedDict,
|
||||
Union,
|
||||
Callable,
|
||||
Coroutine,
|
||||
TypeVar,
|
||||
Type,
|
||||
)
|
||||
import logging
|
||||
from modules.globalvars import *
|
||||
from modules.prestartchecks import start_checks
|
||||
from modules.logger import GooberFormatter
|
||||
from modules.volta.main import *
|
||||
import logging
|
||||
from modules.settings import Settings as SettingsManager
|
||||
from modules.permission import requires_admin
|
||||
from modules.volta.main import _
|
||||
|
||||
logger = logging.getLogger("goober")
|
||||
logger.setLevel(logging.DEBUG)
|
||||
|
@ -32,37 +46,64 @@ file_handler.setFormatter(GooberFormatter(colors=False))
|
|||
logger.addHandler(console_handler)
|
||||
logger.addHandler(file_handler)
|
||||
|
||||
# Print splash text and check for updates
|
||||
print(splashtext) # Print splash text (from modules/globalvars.py)
|
||||
settings_manager = SettingsManager()
|
||||
settings = settings_manager.settings
|
||||
|
||||
splash_text: str = ""
|
||||
|
||||
with open(settings["splash_text_loc"], "r", encoding="UTF-8") as f:
|
||||
splash_text = "".join(f.readlines())
|
||||
print(splash_text)
|
||||
|
||||
start_checks()
|
||||
|
||||
import requests
|
||||
import discord
|
||||
from discord.ext import commands
|
||||
from discord import app_commands
|
||||
from discord import Colour, Embed, File, Interaction, Message
|
||||
from discord.abc import Messageable
|
||||
from discord import Colour, Message
|
||||
|
||||
from better_profanity import profanity
|
||||
from discord.ext import commands
|
||||
|
||||
from modules.volta.main import _, set_language
|
||||
from modules.markovmemory import *
|
||||
from modules.version import *
|
||||
from modules.sentenceprocessing import *
|
||||
from modules.unhandledexception import handle_exception
|
||||
|
||||
sys.excepthook = handle_exception
|
||||
check_for_update()
|
||||
T = TypeVar('T')
|
||||
MessageContext = Union[commands.Context, discord.Interaction]
|
||||
MessageReference = Union[Message, discord.WebhookMessage]
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
# Constants with type hints
|
||||
positive_gifs: List[str] = os.getenv("POSITIVE_GIFS", "").split(',')
|
||||
positive_gifs: List[str] = settings["bot"]["misc"]["positive_gifs"]
|
||||
currenthash: str = ""
|
||||
launched: bool = False
|
||||
slash_commands_enabled: bool = False
|
||||
|
||||
# Set up Discord bot intents and create bot instance
|
||||
intents: discord.Intents = discord.Intents.default()
|
||||
intents.messages = True
|
||||
intents.message_content = True
|
||||
|
||||
bot: commands.Bot = commands.Bot(
|
||||
command_prefix=settings["bot"]["prefix"],
|
||||
intents=intents,
|
||||
allowed_mentions=discord.AllowedMentions(
|
||||
everyone=False, roles=False, users=False, replied_user=True
|
||||
),
|
||||
)
|
||||
|
||||
# Load memory and Markov model for text generation
|
||||
memory: List[str] = load_memory()
|
||||
memory: List[str | Dict[Literal["_meta"], MessageMetadata]] = load_memory()
|
||||
markov_model: Optional[markovify.Text] = load_markov_model()
|
||||
if not markov_model:
|
||||
logger.error(_('markov_model_not_found'))
|
||||
|
@ -72,148 +113,65 @@ if not markov_model:
|
|||
generated_sentences: Set[str] = set()
|
||||
used_words: Set[str] = set()
|
||||
|
||||
def get_git_remote_url():
|
||||
try:
|
||||
url = subprocess.check_output(
|
||||
["git", "config", "--get", "remote.origin.url"],
|
||||
text=True,
|
||||
stderr=subprocess.DEVNULL,
|
||||
).strip()
|
||||
return url
|
||||
except subprocess.CalledProcessError:
|
||||
return "Unknown"
|
||||
|
||||
async def load_cogs_from_folder(bot, folder_name="assets/cogs"):
|
||||
for filename in os.listdir(folder_name):
|
||||
if filename.endswith(".py") and not filename.startswith("_"):
|
||||
cog_name = filename[:-3]
|
||||
module_path = folder_name.replace("/", ".").replace("\\", ".") + f".{cog_name}"
|
||||
try:
|
||||
await bot.load_extension(module_path)
|
||||
logger.info(f"{(_('loaded_cog'))} {cog_name}")
|
||||
except Exception as e:
|
||||
logger.error(f"{(_('cog_fail'))} {cog_name} {e}")
|
||||
traceback.print_exc()
|
||||
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")]:
|
||||
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"{_('loaded_cog')} {cog_name}")
|
||||
except Exception as e:
|
||||
logger.error(f"{_('cog_fail')} {cog_name} {e}")
|
||||
traceback.print_exc()
|
||||
|
||||
|
||||
# Event: Called when the bot is ready
|
||||
@bot.event
|
||||
async def on_ready() -> None:
|
||||
global launched
|
||||
global slash_commands_enabled
|
||||
global NAME
|
||||
global status
|
||||
|
||||
|
||||
folder_name: str = "cogs"
|
||||
if launched:
|
||||
return
|
||||
|
||||
|
||||
await load_cogs_from_folder(bot)
|
||||
await load_cogs_from_folder(bot, "assets/cogs/internal")
|
||||
try:
|
||||
synced: List[discord.app_commands.AppCommand] = await bot.tree.sync()
|
||||
logger.info(f"{_('synced_commands')} {len(synced)} {(_('synced_commands2'))}")
|
||||
slash_commands_enabled = True
|
||||
logger.info(f"{(_('started')).format(name=NAME)}")
|
||||
|
||||
logger.info(f"{_('synced_commands')} {len(synced)} {_('synced_commands2')}")
|
||||
logger.info(_('started'))
|
||||
|
||||
except discord.errors.Forbidden as perm_error:
|
||||
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.")
|
||||
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()
|
||||
except Exception as e:
|
||||
logger.error(f"{_('fail_commands_sync')} {e}")
|
||||
traceback.print_exc()
|
||||
quit()
|
||||
|
||||
if not song:
|
||||
|
||||
if not settings["bot"]["misc"]["active_song"]:
|
||||
return
|
||||
|
||||
status = {
|
||||
"idle": discord.Status.idle,
|
||||
"dnd": discord.Status.dnd,
|
||||
"invisible": discord.Status.invisible,
|
||||
"online": discord.Status.online
|
||||
}.get(status.lower(), discord.Status.online)
|
||||
await bot.change_presence(status=status, activity=discord.Activity(type=discord.ActivityType.listening, name=f"{song}"))
|
||||
await bot.change_presence(
|
||||
activity=discord.Activity(
|
||||
type=discord.ActivityType.listening,
|
||||
name=settings["bot"]["misc"]["active_song"],
|
||||
)
|
||||
)
|
||||
launched = True
|
||||
@bot.event
|
||||
async def on_command_error(ctx: commands.Context, error: commands.CommandError) -> None:
|
||||
from modules.unhandledexception import handle_exception
|
||||
|
||||
if isinstance(error, commands.CommandInvokeError):
|
||||
original: Exception = error.original
|
||||
handle_exception(
|
||||
type(original), original, original.__traceback__,
|
||||
context=f"Command: {ctx.command} | User: {ctx.author}"
|
||||
)
|
||||
else:
|
||||
handle_exception(
|
||||
type(error), error, error.__traceback__,
|
||||
context=f"Command: {ctx.command} | User: {ctx.author}"
|
||||
)
|
||||
|
||||
@bot.hybrid_command(description=f"{(_('command_desc_retrain'))}")
|
||||
async def retrain(ctx: commands.Context) -> None:
|
||||
if ctx.author.id != ownerid:
|
||||
return
|
||||
global markov_model
|
||||
|
||||
message_ref: MessageReference = await send_message(ctx, f"{(_('command_markov_retrain'))}")
|
||||
try:
|
||||
with open(MEMORY_FILE, 'r') as f:
|
||||
memory: List[str] = json.load(f)
|
||||
except FileNotFoundError:
|
||||
await send_message(ctx, f"{(_('command_markov_memory_not_found'))}")
|
||||
return
|
||||
except json.JSONDecodeError:
|
||||
await send_message(ctx, f"{(_('command_markov_memory_is_corrupt'))}")
|
||||
return
|
||||
data_size: int = len(memory)
|
||||
processed_data: int = 0
|
||||
processing_message_ref: MessageReference = await send_message(ctx, f"{(_('command_markov_retraining')).format(processed_data=processed_data, data_size=data_size)}")
|
||||
markov_model = train_markov_model(memory)
|
||||
save_markov_model(markov_model)
|
||||
await send_message(ctx, f"{_('command_markov_retrain_successful').format(data_size=data_size)}", edit=True, message_reference=processing_message_ref)
|
||||
|
||||
@bot.hybrid_command(description=f"{(_('command_desc_talk'))}")
|
||||
async def talk(ctx: commands.Context, sentence_size: int = 5) -> None:
|
||||
if not markov_model:
|
||||
await send_message(ctx, f"{(_('command_talk_insufficent_text'))}")
|
||||
return
|
||||
|
||||
response = None
|
||||
for _ in range(20):
|
||||
if sentence_size == 1:
|
||||
sentence = markov_model.make_short_sentence(max_chars=100, tries=100)
|
||||
response = sentence.split()[0] if sentence else None
|
||||
else:
|
||||
response = markov_model.make_sentence(tries=100, max_words=sentence_size)
|
||||
|
||||
if response and response not in generated_sentences:
|
||||
if sentence_size > 1:
|
||||
response = improve_sentence_coherence(response)
|
||||
generated_sentences.add(response)
|
||||
break
|
||||
else:
|
||||
await send_message(ctx, f"{(_('command_talk_generation_fail'))}")
|
||||
return
|
||||
|
||||
cleaned = re.sub(r'[^\w\s]', '', response).lower()
|
||||
coherent = rephrase_for_coherence(cleaned)
|
||||
|
||||
if random.random() < 0.9 and is_positive(coherent):
|
||||
gif_url = random.choice(positive_gifs)
|
||||
message = f"{coherent}\n[jif]({gif_url})"
|
||||
else:
|
||||
message = coherent
|
||||
|
||||
logger.info(message)
|
||||
os.environ['gooberlatestgen'] = message
|
||||
await send_message(ctx, message)
|
||||
|
||||
|
||||
@bot.hybrid_command(description=f"RAM")
|
||||
async def ramusage(ctx):
|
||||
process = psutil.Process(os.getpid())
|
||||
mem = process.memory_info().rss
|
||||
await send_message(ctx, f"{mem / 1024 / 1024:.2f} MB")
|
||||
|
||||
bot.remove_command('help')
|
||||
# Command: Show help information
|
||||
|
@ -245,130 +203,135 @@ async def help(ctx: commands.Context) -> None:
|
|||
|
||||
await send_message(ctx, embed=embed)
|
||||
|
||||
@bot.hybrid_command(description=f"{(_('command_desc_setlang'))}")
|
||||
@app_commands.describe(locale="Choose your language")
|
||||
async def setlanguage(ctx: commands.Context, locale: str) -> None:
|
||||
if ctx.author.id != ownerid:
|
||||
await ctx.send(":thumbsdown:")
|
||||
return
|
||||
await ctx.defer()
|
||||
set_language(locale)
|
||||
await ctx.send(":thumbsup:")
|
||||
@bot.event
|
||||
async def on_command_error(ctx: commands.Context, error: commands.CommandError) -> None:
|
||||
from modules.unhandledexception import handle_exception
|
||||
|
||||
if isinstance(error, commands.CommandInvokeError):
|
||||
original: Exception = error.original
|
||||
handle_exception(
|
||||
type(original),
|
||||
original,
|
||||
original.__traceback__,
|
||||
context=f"Command: {ctx.command} | User: {ctx.author}",
|
||||
)
|
||||
else:
|
||||
handle_exception(
|
||||
type(error),
|
||||
error,
|
||||
error.__traceback__,
|
||||
context=f"Command: {ctx.command} | User: {ctx.author}",
|
||||
)
|
||||
|
||||
# Event: Called on every message
|
||||
@bot.event
|
||||
async def on_message(message: discord.Message) -> None:
|
||||
global memory, markov_model
|
||||
EMOJIS = [
|
||||
"\U0001f604",
|
||||
"\U0001f44d",
|
||||
"\U0001f525",
|
||||
"\U0001f4af",
|
||||
"\U0001f389",
|
||||
"\U0001f60e",
|
||||
] # originally was emojis but it would probably shit itself on systems without unicode so....
|
||||
if message.author.bot:
|
||||
return
|
||||
|
||||
if str(message.author.id) in BLACKLISTED_USERS:
|
||||
if str(message.author.id) in settings["bot"]["blacklisted_users"]:
|
||||
return
|
||||
|
||||
if message.content.startswith((f"{PREFIX}talk", f"{PREFIX}mem", f"{PREFIX}help", f"{PREFIX}stats", f"{PREFIX}")):
|
||||
|
||||
commands = [
|
||||
settings["bot"]["prefix"] + command.name for command in bot.tree.get_commands()
|
||||
]
|
||||
|
||||
if message.content.startswith(tuple(commands)):
|
||||
logger.info(f"{(_('command_ran')).format(message=message)}")
|
||||
await bot.process_commands(message)
|
||||
return
|
||||
|
||||
if (
|
||||
profanity.contains_profanity(message.content)
|
||||
and settings["bot"]["misc"]["block_profanity"]
|
||||
):
|
||||
return
|
||||
|
||||
if message.content:
|
||||
if not USERTRAIN_ENABLED:
|
||||
if not settings["bot"]["user_training"]:
|
||||
return
|
||||
|
||||
formatted_message: str = message.content
|
||||
cleaned_message: str = formatted_message
|
||||
save_memory(memory)
|
||||
cleaned_message: str = preprocess_message(formatted_message)
|
||||
if cleaned_message:
|
||||
memory.append(cleaned_message)
|
||||
|
||||
message_metadata: MessageMetadata = {
|
||||
"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,
|
||||
"timestamp": time.time(),
|
||||
}
|
||||
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)
|
||||
|
||||
sentiment_score = is_positive(
|
||||
message.content
|
||||
) # doesnt work but im scared to change the logic now please ignore
|
||||
if sentiment_score > 0.8:
|
||||
if not settings["bot"]["react_to_messages"]:
|
||||
return
|
||||
emoji = random.choice(EMOJIS)
|
||||
try:
|
||||
await message.add_reaction(emoji)
|
||||
except Exception as e:
|
||||
logger.info(f"Failed to react with emoji: {e}")
|
||||
|
||||
await bot.process_commands(message)
|
||||
|
||||
|
||||
# Event: Called on every interaction (slash command, etc.)
|
||||
@bot.event
|
||||
async def on_interaction(interaction: discord.Interaction) -> None:
|
||||
name = None
|
||||
if interaction.data.get('name') is None:
|
||||
name = "Unknown"
|
||||
else:
|
||||
name = interaction.data['name']
|
||||
logger.info(f"{(_('command_ran_s')).format(interaction=interaction)}{name}")
|
||||
|
||||
|
||||
# Global check: Block blacklisted users from running commands
|
||||
@bot.check
|
||||
async def block_blacklisted(ctx: commands.Context) -> bool:
|
||||
if str(ctx.author.id) in BLACKLISTED_USERS:
|
||||
try:
|
||||
if isinstance(ctx, discord.Interaction):
|
||||
if not ctx.response.is_done():
|
||||
await ctx.response.send_message(_('blacklisted'), ephemeral=True)
|
||||
else:
|
||||
await ctx.followup.send(_('blacklisted'), ephemeral=True)
|
||||
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(_('blacklisted'), ephemeral=True)
|
||||
else:
|
||||
await ctx.send(_('blacklisted_user'), ephemeral=True)
|
||||
except:
|
||||
pass
|
||||
await ctx.followup.send(_('blacklisted'), ephemeral=True)
|
||||
else:
|
||||
await ctx.send(_('blacklisted_user'), ephemeral=True)
|
||||
except:
|
||||
return False
|
||||
|
||||
return True
|
||||
@bot.hybrid_command(description=f"{(_('command_desc_ping'))}")
|
||||
async def ping(ctx: commands.Context) -> None:
|
||||
await ctx.defer()
|
||||
latency: int = round(bot.latency * 1000)
|
||||
|
||||
pingembed: discord.Embed = discord.Embed(
|
||||
title="Pong!!",
|
||||
description=(
|
||||
f"{PING_LINE}\n"
|
||||
f"`{(_('command_ping_embed_desc'))}: {latency}ms`\n"
|
||||
),
|
||||
color=Colour(0x000000)
|
||||
)
|
||||
pingembed.set_footer(text=f"{(_('command_ping_footer'))} {ctx.author.name}", icon_url=ctx.author.avatar.url)
|
||||
|
||||
await ctx.send(embed=pingembed)
|
||||
|
||||
@bot.hybrid_command(description=f"{(_('command_about_desc'))}")
|
||||
async def about(ctx: commands.Context) -> None:
|
||||
latest_version: str = check_for_update(slient=True)
|
||||
embed: discord.Embed = discord.Embed(title=f"{(_('command_about_embed_title'))}", description="", color=Colour(0x000000))
|
||||
embed.add_field(name=f"{(_('command_about_embed_field1'))}", value=f"{NAME}", inline=False)
|
||||
embed.add_field(name=f"{(_('command_about_embed_field2name'))}", value=f"{(_('command_about_embed_field2value')).format(local_version=local_version, latest_version=latest_version)}", inline=False)
|
||||
embed.add_field(name=f"Git", value=get_git_remote_url())
|
||||
embed.add_field(name=f"OS", value=platform.platform())
|
||||
|
||||
await send_message(ctx, embed=embed)
|
||||
|
||||
@bot.hybrid_command(description="stats")
|
||||
async def stats(ctx: commands.Context) -> None:
|
||||
if ctx.author.id != ownerid:
|
||||
return
|
||||
latest_version: str = check_for_update()
|
||||
memory_file: str = 'memory.json'
|
||||
file_size: int = os.path.getsize(memory_file)
|
||||
with open(memory_file, 'r') as file:
|
||||
line_count: int = sum(1 for _ in file)
|
||||
embed: discord.Embed = discord.Embed(title=f"{(_('command_stats_embed_title'))}", description=f"{(_('command_stats_embed_desc'))}", color=Colour(0x000000))
|
||||
embed.add_field(name=f"{(_('command_stats_embed_field1name'))}", value=f"{(_('command_stats_embed_field1value')).format(file_size=file_size, line_count=line_count)}", inline=False)
|
||||
embed.add_field(name=f"{(_('command_stats_embed_field2name'))}", value=f"{(_('command_stats_embed_field2value')).format(local_version=local_version, latest_version=latest_version)}", inline=False)
|
||||
embed.add_field(name=f"{(_('command_stats_embed_field3name'))}", value=f"{(_('command_stats_embed_field3value')).format(NAME=NAME, PREFIX=PREFIX, ownerid=ownerid, PING_LINE=PING_LINE, showmemenabled=showmemenabled, USERTRAIN_ENABLED=USERTRAIN_ENABLED, song=song, splashtext=splashtext)}", inline=False)
|
||||
embed.add_field(name=f"OS", value=platform.platform())
|
||||
embed.add_field(name="Python Version", value=platform.python_version())
|
||||
await send_message(ctx, embed=embed)
|
||||
|
||||
@bot.hybrid_command()
|
||||
async def mem(ctx: commands.Context) -> None:
|
||||
if showmemenabled != "true":
|
||||
return
|
||||
|
||||
with open("memory.json", "rb") as file:
|
||||
files = {
|
||||
"fileToUpload": file
|
||||
}
|
||||
data = {
|
||||
"reqtype": "fileupload",
|
||||
"time": "1h"
|
||||
}
|
||||
|
||||
try:
|
||||
response = requests.post("https://litterbox.catbox.moe/resources/internals/api.php", files=files, data=data)
|
||||
response.raise_for_status()
|
||||
await send_message(ctx, response.text.strip())
|
||||
except requests.RequestException as e:
|
||||
logger.error(f"Upload failed: {e}")
|
||||
await send_message(ctx, "Upload failed.")
|
||||
|
||||
# Helper: Improve sentence coherence (simple capitalization fix)
|
||||
def improve_sentence_coherence(sentence: str) -> str:
|
||||
# Capitalizes "i" to "I" in the sentence
|
||||
sentence = sentence.replace(" i ", " I ")
|
||||
return sentence
|
||||
|
||||
# Start the bot
|
||||
bot.run(TOKEN)
|
||||
if __name__ == "__main__":
|
||||
bot.run(os.environ.get("DISCORDBOTTOKEN", ""))
|
Loading…
Add table
Add a link
Reference in a new issue