1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 13:02:38 +00:00
modufur/run.py

50 lines
1.3 KiB
Python
Raw Permalink Normal View History

2022-02-21 07:10:57 +00:00
import os
2022-02-21 20:53:53 +00:00
2022-02-21 07:10:57 +00:00
import hikari
import lightbulb
import miru
import config as c
# Unix optimizations
# https://github.com/hikari-py/hikari#uvloop
2022-02-21 20:53:53 +00:00
if os.name != "nt":
2022-02-21 07:10:57 +00:00
import uvloop
2022-02-21 20:53:53 +00:00
2022-02-21 07:10:57 +00:00
uvloop.install()
2022-02-23 04:16:02 +00:00
bot = lightbulb.BotApp(
token=c.config["token"],
default_enabled_guilds=c.config["guilds"],
2022-03-04 06:56:12 +00:00
help_slash_command=False,
2022-02-23 04:16:02 +00:00
)
2022-02-21 07:10:57 +00:00
2022-03-04 05:59:46 +00:00
# Listener for global command exceptions
2022-02-21 07:10:57 +00:00
@bot.listen(lightbulb.CommandErrorEvent)
async def on_error(event):
error = c.ERROR
2022-03-04 06:02:32 +00:00
match event.exception.__cause__ or event.exception:
case lightbulb.BotMissingRequiredPermission():
error = f"***Missing required permissions: `{event.exception.missing_perms}`***"
case lightbulb.MissingRequiredPermission():
error = f"***You are missing required permissions: `{event.exception.missing_perms}`***"
2022-03-04 06:02:32 +00:00
case hikari.ForbiddenError():
raise event.exception
2022-03-04 06:02:32 +00:00
case _:
await bot.application.owner.send(c.error(event))
try:
await event.context.respond(error, flags=hikari.MessageFlag.EPHEMERAL)
except:
await event.context.interaction.edit_initial_response(error, components=None)
2022-03-04 06:02:32 +00:00
raise event.exception
2022-02-21 07:10:57 +00:00
2023-03-07 02:36:53 +00:00
miru.install(bot)
2022-02-21 20:53:53 +00:00
bot.load_extensions_from("tools", "commands")
2022-02-23 06:18:54 +00:00
bot.run(activity=hikari.Activity(name=c.config["activity"], type=c.ACTIVITY) if c.config["activity"] else None)