tuxbot-bot/tuxbot/cogs/Admin/admin.py

44 lines
1.2 KiB
Python
Raw Normal View History

import logging
from discord.ext import commands
from tuxbot.core.utils import checks
from tuxbot.core.bot import Tux
from tuxbot.core.config import set_for_key
2020-10-19 15:04:10 +02:00
from tuxbot.core.config import Config
from tuxbot.core.i18n import (
Translator,
)
2020-09-02 00:08:06 +02:00
from tuxbot.core.utils.functions.extra import (
command_extra,
ContextPlus,
2020-09-02 00:08:06 +02:00
)
2020-11-09 01:18:55 +01:00
log = logging.getLogger("tuxbot.cogs.Admin")
_ = Translator("Admin", __file__)
2021-04-20 17:12:38 +02:00
class Admin(commands.Cog):
def __init__(self, bot: Tux):
self.bot = bot
async def _save_lang(self, ctx: ContextPlus, lang: str):
set_for_key(
2020-10-19 15:04:10 +02:00
self.bot.config.Servers, ctx.guild.id, Config.Server, locale=lang
)
# =========================================================================
# =========================================================================
2020-09-02 00:08:06 +02:00
@command_extra(name="quit", aliases=["shutdown"], deletable=False)
@checks.is_owner()
async def _quit(self, ctx: ContextPlus):
await ctx.send("*quit...*")
await self.bot.shutdown()
@command_extra(name="restart", deletable=False)
@checks.is_owner()
async def _restart(self, ctx: ContextPlus):
await ctx.send("*restart...*")
await self.bot.shutdown(restart=True)