2018-08-12 19:00:04 +00:00
|
|
|
import asyncio
|
|
|
|
import logging
|
|
|
|
|
|
|
|
from discord import Game
|
|
|
|
from discord.ext import commands
|
|
|
|
from discord.utils import oauth_url
|
2018-08-19 16:37:59 +00:00
|
|
|
from sqlalchemy.exc import OperationalError
|
2018-08-29 15:08:21 +00:00
|
|
|
import logging.handlers as handlers
|
|
|
|
from sys import stdout
|
2018-08-30 13:59:32 +00:00
|
|
|
from os import path
|
2018-08-29 15:08:21 +00:00
|
|
|
|
2018-08-29 21:10:35 +00:00
|
|
|
from geoffrey.BotConfig import *
|
2018-08-21 20:36:51 +00:00
|
|
|
from geoffrey.BotErrors import *
|
|
|
|
from geoffrey.Commands import Commands
|
|
|
|
from geoffrey.DatabaseModels import Player
|
|
|
|
from geoffrey.MinecraftAccountInfoGrabber import *
|
2018-08-12 03:21:21 +00:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
2018-08-11 21:07:33 +00:00
|
|
|
|
|
|
|
description = '''
|
|
|
|
Geoffrey (pronounced JOFF-ree) started his life as an inside joke none of you will understand.
|
|
|
|
At some point, she was to become an airhorn bot. Now, they know where your stuff is.
|
|
|
|
|
|
|
|
Please respect Geoffrey, the bot is very sensitive.
|
|
|
|
|
2018-09-13 16:25:40 +00:00
|
|
|
All commands must be prefaced with '?'
|
|
|
|
|
|
|
|
If have a suggestion or if something is borked, you can PM my ding dong of a creator BirbHD.
|
2018-08-11 21:07:33 +00:00
|
|
|
|
|
|
|
*You must use ?register before adding things to Geoffrey*
|
2018-09-12 22:21:35 +00:00
|
|
|
|
2018-09-13 20:31:54 +00:00
|
|
|
For a better a explanation on how this bot works go the following link:
|
|
|
|
https://github.com/joeyahines/Geoffrey/blob/master/README.md
|
|
|
|
|
2018-08-11 21:07:33 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
bad_error_message = 'OOPSIE WOOPSIE!! Uwu We made a fucky wucky!! A wittle fucko boingo! The admins at our ' \
|
2018-08-19 16:37:59 +00:00
|
|
|
'headquarters are working VEWY HAWD to fix this! (Error in command {})'
|
2018-08-11 21:07:33 +00:00
|
|
|
|
2018-08-29 15:49:32 +00:00
|
|
|
extensions = ['geoffrey.cogs.Add_Commands',
|
|
|
|
'geoffrey.cogs.Delete_Commands',
|
|
|
|
'geoffrey.cogs.Edit_Commands',
|
|
|
|
'geoffrey.cogs.Search_Commands',
|
|
|
|
'geoffrey.cogs.Admin_Commands']
|
2018-08-11 21:07:33 +00:00
|
|
|
|
2018-08-19 16:37:59 +00:00
|
|
|
|
2018-08-30 16:34:19 +00:00
|
|
|
class GeoffreyBot(commands.Bot):
|
|
|
|
def __init__(self, config):
|
|
|
|
super().__init__(command_prefix=config.prefix, description=description, pm_help=True, case_insensitive=True)
|
|
|
|
self.error_users = config.error_users
|
|
|
|
self.admin_users = config.bot_mod
|
2018-08-30 16:46:20 +00:00
|
|
|
self.special_users = config.special_name_list
|
2018-08-30 16:34:19 +00:00
|
|
|
self.bot_commands = Commands(config)
|
2018-08-30 17:31:15 +00:00
|
|
|
self.default_status = config.status
|
2018-08-19 16:37:59 +00:00
|
|
|
|
2018-08-30 16:34:19 +00:00
|
|
|
for extension in extensions:
|
|
|
|
try:
|
|
|
|
self.load_extension(extension)
|
|
|
|
except Exception as e:
|
|
|
|
logger.info('Failed to load extension {}'.format(extension))
|
|
|
|
raise e
|
2018-08-11 21:07:33 +00:00
|
|
|
|
2018-09-19 14:23:03 +00:00
|
|
|
self.loop.create_task(self.username_update())
|
|
|
|
|
2018-08-30 16:34:19 +00:00
|
|
|
async def on_ready(self):
|
|
|
|
logger.info("%s Online, ID: %s", self.user.name, self.user.id)
|
|
|
|
info = await self.application_info()
|
|
|
|
url = oauth_url(info.id)
|
|
|
|
logger.info("Bot url: %s", url)
|
2018-09-12 17:01:44 +00:00
|
|
|
await self.change_presence(activity=Game(self.default_status))
|
2018-08-30 16:34:19 +00:00
|
|
|
|
2018-09-12 21:11:56 +00:00
|
|
|
async def on_command(self, ctx):
|
2018-08-30 16:34:19 +00:00
|
|
|
if ctx.invoked_subcommand is None:
|
|
|
|
subcommand = ""
|
|
|
|
else:
|
2018-09-12 21:11:56 +00:00
|
|
|
subcommand = ":" + ctx.invoked_subcommand.__str__()
|
2018-08-30 16:34:19 +00:00
|
|
|
|
2018-09-27 20:06:15 +00:00
|
|
|
logger.info("User %s, used command %s%s with context: %s", ctx.message.author, ctx.command.name, subcommand,
|
2018-08-30 16:34:19 +00:00
|
|
|
ctx.args)
|
|
|
|
|
2018-09-22 02:08:14 +00:00
|
|
|
if ctx.invoked_with.lower() == 'help' and ctx.message.guild is not None:
|
2018-09-14 13:21:02 +00:00
|
|
|
await ctx.send("{}, I sent you some help in the DMs.".format(ctx.message.author.mention))
|
|
|
|
|
2018-09-12 21:11:56 +00:00
|
|
|
async def on_command_error(self, ctx, error):
|
2018-08-30 16:34:19 +00:00
|
|
|
error_str = ''
|
|
|
|
if hasattr(ctx, 'cog'):
|
|
|
|
if "Admin_Commands" in ctx.cog.__str__():
|
|
|
|
return
|
|
|
|
if hasattr(error, 'original'):
|
|
|
|
if isinstance(error.original, NoPermissionError):
|
|
|
|
error_str = 'You don\'t have permission for that cool command.'
|
|
|
|
elif isinstance(error.original, UsernameLookupFailed):
|
|
|
|
error_str = 'Your user name was not found, either Mojang is having a fucky wucky ' \
|
|
|
|
'or your nickname is not set correctly. *stares at the Mods*'
|
|
|
|
elif isinstance(error.original, PlayerNotFound):
|
|
|
|
error_str = 'Make sure to use ?register first you ding dong.'
|
|
|
|
elif isinstance(error.original, EntryNameNotUniqueError):
|
|
|
|
error_str = 'An entry in the database already has that name you ding dong.'
|
|
|
|
elif isinstance(error.original, DatabaseValueError):
|
|
|
|
error_str = 'Use a shorter name or a smaller value, dong ding.'
|
|
|
|
elif isinstance(error.original, NotOnServerError):
|
|
|
|
error_str = 'Command needs to be run on 24CC. Run this command there whoever you are.'.format()
|
|
|
|
elif isinstance(error.original, OperationalError):
|
|
|
|
await self.send_error_message('Error connecting to the MySQL server, is it offline?')
|
|
|
|
error_str = 'Database connection issue, looks like some admin has to fix something.'.format()
|
|
|
|
elif isinstance(error, commands.CommandOnCooldown):
|
|
|
|
return
|
|
|
|
elif isinstance(error, commands.UserInputError):
|
|
|
|
error_str = 'Invalid syntax for **{}** you ding dong:' \
|
|
|
|
.format(ctx.invoked_with, ctx.invoked_with)
|
|
|
|
|
2018-09-12 21:11:56 +00:00
|
|
|
pages = await self.formatter.format_help_for(ctx, ctx.command)
|
2018-08-30 16:34:19 +00:00
|
|
|
for page in pages:
|
|
|
|
error_str = error_str + '\n' + page
|
|
|
|
elif isinstance(error, commands.CommandNotFound):
|
|
|
|
return
|
2018-08-11 21:07:33 +00:00
|
|
|
|
2018-08-30 16:34:19 +00:00
|
|
|
if error_str is '':
|
|
|
|
await self.send_error_message(
|
2018-09-27 20:06:15 +00:00
|
|
|
'Geoffrey encountered unhandled exception: {} Command: **{}** Context: {}'.format(error,
|
|
|
|
ctx.command.name,
|
|
|
|
ctx.args))
|
2018-08-30 16:34:19 +00:00
|
|
|
error_str = bad_error_message.format(ctx.invoked_with)
|
2018-08-12 15:32:35 +00:00
|
|
|
|
2018-09-12 19:33:57 +00:00
|
|
|
logger.error("Geoffrey encountered exception: %s", error)
|
|
|
|
|
2018-09-12 21:11:56 +00:00
|
|
|
await ctx.message.channel.send('{} **Error Running Command:** {}'.format(
|
2018-08-30 16:46:20 +00:00
|
|
|
ctx.message.author.mention, error_str))
|
2018-08-12 15:32:35 +00:00
|
|
|
|
2018-08-30 16:34:19 +00:00
|
|
|
async def send_error_message(self, msg):
|
|
|
|
for user_id in self.error_users:
|
|
|
|
user = await self.get_user_info(user_id)
|
2018-09-12 21:11:56 +00:00
|
|
|
await user.send(msg)
|
2018-08-12 15:32:35 +00:00
|
|
|
|
2018-09-19 14:23:03 +00:00
|
|
|
async def username_update(self):
|
|
|
|
await self.wait_until_ready()
|
|
|
|
|
|
|
|
while not self.is_closed():
|
|
|
|
session = self.bot_commands.interface.database.Session()
|
|
|
|
try:
|
|
|
|
logger.info("Updating MC usernames...")
|
|
|
|
session = self.bot_commands.interface.database.Session()
|
|
|
|
player_list = session.query(Player).all()
|
|
|
|
for player in player_list:
|
|
|
|
player.name = grab_playername(player.mc_uuid)
|
|
|
|
|
|
|
|
session.commit()
|
|
|
|
logger.info("Username update done.")
|
|
|
|
|
|
|
|
except UsernameLookupFailed:
|
|
|
|
logger.info("Username lookup error.")
|
|
|
|
session.rollback()
|
|
|
|
except OperationalError:
|
|
|
|
await self.send_error_message('Error connecting to the MySQL server, is it offline?')
|
|
|
|
logger.info("MySQL connection error")
|
|
|
|
finally:
|
|
|
|
session.close()
|
2018-08-30 16:34:19 +00:00
|
|
|
|
2018-08-12 15:32:35 +00:00
|
|
|
await asyncio.sleep(600)
|
2018-08-11 21:07:33 +00:00
|
|
|
|
2018-08-29 21:10:35 +00:00
|
|
|
|
|
|
|
def setup_logging(config):
|
2018-08-29 15:08:21 +00:00
|
|
|
discord_logger = logging.getLogger('discord')
|
|
|
|
discord_logger.setLevel(logging.INFO)
|
|
|
|
sql_logger = logging.getLogger('sqlalchemy.engine')
|
2018-09-19 14:23:03 +00:00
|
|
|
sql_logger.setLevel(logging.ERROR)
|
2018-08-29 15:08:21 +00:00
|
|
|
bot_info_logger = logging.getLogger('geoffrey.bot')
|
|
|
|
bot_info_logger.setLevel(logging.INFO)
|
2018-09-12 19:33:57 +00:00
|
|
|
log_path = path.abspath(config.log_path)
|
2018-08-29 15:08:21 +00:00
|
|
|
|
2018-09-12 19:33:57 +00:00
|
|
|
handler = handlers.TimedRotatingFileHandler(filename="{}/Geoffrey.log".format(log_path), when='D',
|
|
|
|
interval=config.rotation_duration, backupCount=config.count,
|
2018-08-29 15:08:21 +00:00
|
|
|
encoding='utf-8')
|
|
|
|
|
|
|
|
handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s'))
|
|
|
|
|
|
|
|
console = logging.StreamHandler(stdout)
|
|
|
|
|
|
|
|
console.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s'))
|
|
|
|
|
|
|
|
discord_logger.addHandler(handler)
|
|
|
|
sql_logger.addHandler(handler)
|
|
|
|
bot_info_logger.addHandler(handler)
|
|
|
|
bot_info_logger.addHandler(console)
|
2018-08-11 21:07:33 +00:00
|
|
|
|
2018-08-29 18:37:06 +00:00
|
|
|
|
2018-08-30 13:59:32 +00:00
|
|
|
def start_bot(config_path="{}/GeoffreyConfig.ini".format(path.dirname(path.abspath(__file__)))):
|
2018-08-30 16:46:20 +00:00
|
|
|
bot = None
|
2018-08-11 21:07:33 +00:00
|
|
|
try:
|
2018-08-29 21:10:35 +00:00
|
|
|
bot_config = get_config(config_path)
|
|
|
|
|
2018-08-30 16:34:19 +00:00
|
|
|
bot = GeoffreyBot(bot_config)
|
2018-08-29 21:10:35 +00:00
|
|
|
|
2018-08-30 16:34:19 +00:00
|
|
|
setup_logging(bot_config)
|
2018-08-29 21:10:35 +00:00
|
|
|
|
2018-08-11 21:07:33 +00:00
|
|
|
bot.run(bot_config.token)
|
2018-08-29 21:10:35 +00:00
|
|
|
|
2018-08-12 15:32:35 +00:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
logger.info("Bot received keyboard interrupt")
|
|
|
|
except Exception as e:
|
|
|
|
logger.info('Bot encountered the following unhandled exception %s', e)
|
2018-08-11 23:02:50 +00:00
|
|
|
finally:
|
2018-08-30 16:46:20 +00:00
|
|
|
if bot is not None:
|
|
|
|
bot.loop.stop()
|
2018-08-12 03:21:21 +00:00
|
|
|
logger.info("Bot shutting down...")
|