1
0
Fork 0
mirror of synced 2024-05-29 16:59:42 +12:00
Bonfire/cogs/owner.py

138 lines
4.6 KiB
Python
Raw Normal View History

2016-07-09 13:27:19 +12:00
from discord.ext import commands
from . import utils
2016-07-09 13:27:19 +12:00
import re
import glob
2016-07-09 13:27:19 +12:00
import discord
import inspect
import aiohttp
2016-10-08 09:39:41 +13:00
import pendulum
2016-12-17 08:55:05 +13:00
import asyncio
2016-07-09 13:27:19 +12:00
class Owner:
"""Commands that can only be used by Phantom, bot management commands"""
2016-07-09 13:27:19 +12:00
def __init__(self, bot):
self.bot = bot
2016-08-31 10:33:46 +12:00
2016-10-08 09:39:41 +13:00
@commands.command()
@commands.check(utils.is_owner)
2016-10-08 09:39:41 +13:00
async def motd_push(self, *, message):
"""Used to push a new message to the message of the day"""
date = pendulum.utcnow().to_date_string()
r_filter = {'date': date}
entry = {'motd': message, 'date': date}
# Try to add this, if there's an entry for that date, lets update it to make sure only one motd is sent a day
# I should be managing this myself, more than one should not be sent in a day
if await utils.add_content('motd', entry, r_filter):
await utils.update_content('motd', entry, r_filter)
2016-10-08 09:39:41 +13:00
await self.bot.say("New motd update for {}!".format(date))
2016-07-31 10:15:59 +12:00
@commands.command(pass_context=True)
@commands.check(utils.is_owner)
async def debug(self, ctx, *, code : str):
"""Evaluates code."""
code = code.strip('` ')
python = '```py\n{}\n```'
result = None
2016-08-17 03:22:32 +12:00
env = {
'bot': self.bot,
'ctx': ctx,
'message': ctx.message,
'server': ctx.message.server,
'channel': ctx.message.channel,
'author': ctx.message.author
}
2016-08-17 03:22:32 +12:00
env.update(globals())
2016-08-17 03:22:32 +12:00
try:
result = eval(code, env)
if inspect.isawaitable(result):
result = await result
except Exception as e:
await self.bot.say(python.format(type(e).__name__ + ': ' + str(e)))
return
2016-08-17 03:22:32 +12:00
await self.bot.say(python.format(result))
2016-07-09 13:27:19 +12:00
@commands.command(pass_context=True)
@commands.check(utils.is_owner)
2016-07-09 13:27:19 +12:00
async def shutdown(self, ctx):
"""Shuts the bot down"""
fmt = 'Shutting down, I will miss you {0.author.name}'
await self.bot.say(fmt.format(ctx.message))
await self.bot.logout()
await self.bot.close()
2016-07-09 13:27:19 +12:00
@commands.command()
@commands.check(utils.is_owner)
async def name(self, newNick: str):
2016-07-09 13:27:19 +12:00
"""Changes the bot's name"""
await self.bot.edit_profile(username=newNick)
await self.bot.say('Changed username to ' + newNick)
2016-07-09 13:27:19 +12:00
@commands.command()
@commands.check(utils.is_owner)
async def status(self, *, status: str):
2016-07-09 13:27:19 +12:00
"""Changes the bot's 'playing' status"""
await self.bot.change_status(discord.Game(name=status, type=0))
2016-08-17 03:22:32 +12:00
await self.bot.say("Just changed my status to '{0}'!".format(status))
2016-07-09 13:27:19 +12:00
@commands.command()
@commands.check(utils.is_owner)
async def load(self, *, module: str):
"""Loads a module"""
2016-08-17 03:22:32 +12:00
# Do this because I'm too lazy to type cogs.module
2016-07-28 23:45:27 +12:00
module = module.lower()
if not module.startswith("cogs"):
module = "cogs.{}".format(module)
2016-08-17 03:22:32 +12:00
# This try catch will catch errors such as syntax errors in the module we are loading
try:
self.bot.load_extension(module)
await self.bot.say("I have just loaded the {} module".format(module))
except Exception as error:
fmt = 'An error occurred while processing this request: ```py\n{}: {}\n```'
await self.bot.say(fmt.format(type(error).__name__, error))
2016-08-17 03:22:32 +12:00
@commands.command()
@commands.check(utils.is_owner)
async def unload(self, *, module: str):
"""Unloads a module"""
2016-08-17 03:22:32 +12:00
# Do this because I'm too lazy to type cogs.module
2016-07-28 23:45:27 +12:00
module = module.lower()
if not module.startswith("cogs"):
module = "cogs.{}".format(module)
2016-08-17 03:22:32 +12:00
self.bot.unload_extension(module)
await self.bot.say("I have just unloaded the {} module".format(module))
@commands.command()
@commands.check(utils.is_owner)
async def reload(self, *, module: str):
"""Reloads a module"""
2016-08-17 03:22:32 +12:00
# Do this because I'm too lazy to type cogs.module
2016-07-28 23:45:27 +12:00
module = module.lower()
if not module.startswith("cogs"):
module = "cogs.{}".format(module)
self.bot.unload_extension(module)
2016-08-17 03:22:32 +12:00
# This try block will catch errors such as syntax errors in the module we are loading
try:
self.bot.load_extension(module)
await self.bot.say("I have just reloaded the {} module".format(module))
except Exception as error:
fmt = 'An error occurred while processing this request: ```py\n{}: {}\n```'
await self.bot.say(fmt.format(type(error).__name__, error))
2016-07-09 13:27:19 +12:00
def setup(bot):
bot.add_cog(Owner(bot))