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

114 lines
3.5 KiB
Python
Raw Normal View History

2017-09-24 18:09:02 +00:00
import asyncio
import datetime as dt
import json
2017-10-17 21:59:58 +00:00
# import logging as log
2017-10-02 21:29:39 +00:00
import subprocess
import sys
import traceback as tb
from contextlib import suppress
import discord as d
2017-09-24 18:09:02 +00:00
from discord import utils
from discord.ext import commands
from discord.ext.commands import errors as errext
2017-09-24 18:09:02 +00:00
from misc import exceptions as exc
from misc import checks
from utils import utils as u
2017-09-24 18:09:02 +00:00
2017-10-17 21:59:58 +00:00
# log.basicConfig(level=log.INFO)
2017-10-14 03:38:58 +00:00
bot = commands.Bot(command_prefix=u.config['prefix'], description='Experimental booru bot')
2017-10-14 03:38:58 +00:00
# Send and print ready message to #testing and console after logon
2017-09-24 15:05:28 +00:00
@bot.event
async def on_ready():
2017-10-17 23:04:45 +00:00
from cogs import booru, info, management, owner, tools
2017-10-14 03:59:14 +00:00
2017-10-17 23:04:45 +00:00
bot.add_cog(tools.Utils(bot))
bot.add_cog(owner.Bot(bot))
bot.add_cog(owner.Tools(bot))
bot.add_cog(management.Administration(bot))
bot.add_cog(info.Info(bot))
bot.add_cog(booru.MsG(bot))
2017-10-17 23:04:45 +00:00
# bot.loop.create_task(u.clear(booru.temp_urls, 30*60))
2017-10-17 23:04:45 +00:00
if u.config['playing'] is not 'None':
await bot.change_presence(game=d.Game(name=u.config['playing']))
else:
await bot.change_presence(game=None)
2017-10-16 18:07:10 +00:00
2017-10-17 23:04:45 +00:00
print('\n\\ \\ \\ \\ \\ \\ \\ \\ \\\nC O N N E C T E D : {}\n/ / / / / / / / /\n'.format(bot.user.name))
await bot.get_channel(u.config['info_channel']).send('**Started** \N{BLACK SUN WITH RAYS} .')
2017-10-17 23:04:45 +00:00
# u.notify('C O N N E C T E D')
if u.temp:
channel = bot.get_channel(u.temp['restart_ch'])
message = await channel.get_message(u.temp['restart_msg'])
await message.add_reaction('\N{WHITE HEAVY CHECK MARK}')
2017-10-17 23:04:45 +00:00
u.temp.clear()
2017-09-24 15:05:28 +00:00
@bot.event
async def on_error(error, *args, **kwargs):
2017-10-17 23:04:45 +00:00
print('\n! ! ! ! !\nE R R O R : {}\n! ! ! ! !\n'.format(error), file=sys.stderr)
tb.print_exc()
await bot.get_user(u.config['owner_id']).send('**ERROR** ⚠ `{}`'.format(error))
await bot.get_channel(u.config['info_channel']).send('**ERROR** ⚠ `{}`'.format(error))
# u.notify('E R R O R')
await bot.logout()
u.close(bot.loop)
@bot.event
async def on_command_error(ctx, error):
2017-10-17 23:04:45 +00:00
if isinstance(error, errext.CheckFailure):
await ctx.send('\N{NO ENTRY} **Insufficient permissions.**', delete_after=10)
await ctx.message.add_reaction('\N{NO ENTRY}')
2017-10-17 23:04:45 +00:00
elif isinstance(error, errext.CommandNotFound):
print('INVALID COMMAND : {}'.format(error), file=sys.stderr)
await ctx.message.add_reaction('\N{CROSS MARK}')
2017-10-17 23:04:45 +00:00
else:
print('\n! ! ! ! ! ! ! ! ! ! ! !\nC O M M A N D E R R O R : {}\n! ! ! ! ! ! ! ! ! ! ! !\n'.format(
error), file=sys.stderr)
tb.print_exception(type(error), error, error.__traceback__, file=sys.stderr)
await bot.get_user(u.config['owner_id']).send('**COMMAND ERROR** ⚠ `{}`'.format(error))
await bot.get_channel(u.config['info_channel']).send('**COMMAND ERROR** ⚠ `{}`'.format(error))
await exc.send_error(ctx, error)
await ctx.message.add_reaction('')
# u.notify('C O M M A N D E R R O R')
async def on_reaction_add(r, u):
2017-10-17 23:04:45 +00:00
pass
async def on_reaction_remove(r, u):
2017-10-17 23:04:45 +00:00
pass
async def reaction_add(r, u):
2017-10-17 23:04:45 +00:00
bot.add_listener(on_reaction_add)
print('Reacted')
bot.remove_listener(on_reaction_remove)
async def reaction_remove(r, u):
2017-10-17 23:04:45 +00:00
bot.add_listener(on_reaction_remove)
print('Removed')
bot.remove_listener(on_reaction_remove)
2017-09-24 15:05:28 +00:00
@bot.command(name=',test', hidden=True)
2017-09-25 19:31:51 +00:00
@commands.is_owner()
2017-09-24 15:05:28 +00:00
@checks.del_ctx()
async def test(ctx):
test = await ctx.send('\N{NUMBER SIGN}\N{COMBINING ENCLOSING KEYCAP}')
await test.add_reaction('\N{THUMBS UP SIGN}')
await test.add_reaction('#\u20e3')
2017-10-17 23:04:45 +00:00
# bot.add_listener(on_reaction_add)
# bot.add_listener(on_reaction_remove)
2017-09-24 15:05:28 +00:00
2017-10-14 03:38:58 +00:00
bot.run(u.config['token'])