forked from viveksantayana/geas-bot
44 lines
1.8 KiB
Python
44 lines
1.8 KiB
Python
import os # OS Locations
|
|
import yaml # YAML parser for Bot config files
|
|
import asyncio # Discord Py Dependency
|
|
import discord # Main Lib
|
|
from discord.ext import commands # Commands module
|
|
from discord_slash import SlashCommand, SlashContext, cog_ext, utils # Slash Command Library
|
|
from discord_slash.utils.manage_commands import create_choice, create_option # Slash Command features
|
|
# import discord_components
|
|
import logging
|
|
# logger and handler
|
|
from bot import checkConfig, clearConfig, configFile, parseConfigCheck, setConfig, yaml_dump, yaml_load, loadCogs, unloadCogs
|
|
|
|
#### Actions for the Bot to take once it is ready to interact with commands.
|
|
class on_ready(commands.Cog, name='On Ready Events'):
|
|
def __init__(self, client):
|
|
self.client = client
|
|
|
|
@commands.Cog.listener()
|
|
async def on_ready(self):
|
|
|
|
# discord_components.DiscordComponents(self.client)
|
|
|
|
#### Create any missing config entries for guilds
|
|
for guild in self.client.guilds:
|
|
setConfig(guild)
|
|
|
|
#### Delete any extra config entries for guilds the bot is not in
|
|
conf = yaml_load(configFile)
|
|
for key in list(conf):
|
|
clearConfig(key)
|
|
|
|
#### Check completeness of configurations
|
|
for guild in self.client.guilds:
|
|
status, output = checkConfig(guild)
|
|
conf = yaml_load(configFile)
|
|
if not status:
|
|
await guild.get_channel(conf[str(guild.id)]['channels']['mod']).send(f"```The Bot's configurations are incomplete for the guild `{guild.name}`. Some limited functions will still be available, but most features cannot be used until the configurations are complete.\n{parseConfigCheck(output)}\nYou can set these configuration values using the `/config` command.```")
|
|
|
|
# #### Reload the /commands after the configs have finished loading.
|
|
# unloadCogs('slashcommands')
|
|
# loadCogs('slashcommands')
|
|
|
|
def setup(client):
|
|
client.add_cog(on_ready(client)) |