searchbot-discord/main.py

130 lines
4.1 KiB
Python
Raw Normal View History

2020-02-19 19:29:27 +00:00
# -*- coding: utf-8 -*-
2020-02-19 21:04:07 +00:00
# search - a tiny little search utility bot for discord.
2020-02-19 19:29:27 +00:00
# All original work by taciturasa, with some code by ry00001.
2020-02-19 21:04:07 +00:00
# Used and modified with permission.
# See LICENSE for license information.
2020-02-19 19:29:27 +00:00
'''Main File'''
import discord
from discord.ext import commands
2020-02-22 21:42:46 +00:00
import traceback
2020-02-19 19:29:27 +00:00
import json
2020-02-22 21:42:46 +00:00
import os
import asyncio
2020-02-19 19:29:27 +00:00
import aiohttp
import random
class Bot(commands.Bot):
'''Custom Bot Class that overrides the commands.ext one'''
def __init__(self, **options):
super().__init__(self._get_prefix_new, **options)
2020-02-19 19:29:27 +00:00
print('Performing initialization...\n')
2020-02-22 21:42:46 +00:00
# Get Config Values
2020-02-19 19:29:27 +00:00
with open('config.json') as f:
self.config = json.load(f)
self.prefix = self.config.get('PREFIX')
self.version = self.config.get('VERSION')
self.maintenance = self.config.get('MAINTENANCE')
2020-02-22 21:42:46 +00:00
# Get Instances
2020-02-20 00:08:41 +00:00
with open('searxes.txt') as f:
self.instances = f.read().split('\n')
2020-02-22 21:42:46 +00:00
2020-02-19 19:29:27 +00:00
print('Initialization complete.\n\n')
2020-02-22 21:42:46 +00:00
async def _get_prefix_new(self, bot, msg):
'''Full flexible check for prefix.'''
if isinstance(msg.channel, discord.DMChannel) and self.config['PREFIXLESS_DMS']:
plus_none = self.prefix.copy()
plus_none.append('')
return commands.when_mentioned_or(*plus_none)(bot, msg)
else:
return commands.when_mentioned_or(*self.prefix)(bot, msg)
2020-02-19 19:29:27 +00:00
2020-02-22 21:42:46 +00:00
async def on_ready(self):
self.request = aiohttp.ClientSession()
2020-02-27 19:09:44 +00:00
self.appinfo = await self.application_info()
# EXTENSION ENTRY POINT
self.load_extension('extensions.core')
2020-02-22 21:42:46 +00:00
2020-02-19 19:29:27 +00:00
msg = "CONNECTED!\n"
msg += "-----------------------------\n"
msg += f"ACCOUNT: {bot.user}\n"
2020-02-27 19:09:44 +00:00
msg += f"OWNER: {self.appinfo.owner}\n"
2020-02-19 19:29:27 +00:00
msg += "-----------------------------\n"
print(msg)
async def on_message(self, message):
mentions = [self.user.mention, f'<@!{self.user.id}>']
2020-02-22 18:11:48 +00:00
ctx = await self.get_context(message)
2020-02-19 19:29:27 +00:00
if message.author.bot:
return
2020-02-22 18:11:48 +00:00
elif message.author.id in self.config.get('BLOCKED'):
2020-02-19 19:29:27 +00:00
return
2020-02-22 18:11:48 +00:00
elif self.maintenance and not message.author.is_owner():
2020-02-19 19:29:27 +00:00
return
2020-02-22 18:11:48 +00:00
elif message.content in mentions:
assist_msg = (
"**Hi there! How can I help?**\n\n"
2020-02-22 21:42:46 +00:00
# Two New Lines Here
2020-02-23 23:00:16 +00:00
f"You may use **{self.user.mention} `term here`** to search, "
2020-02-23 22:54:07 +00:00
f"or **{self.user.mention} `help`** for assistance.")
2020-02-22 18:11:48 +00:00
await ctx.send(assist_msg)
else:
await self.process_commands(message)
2020-02-19 19:29:27 +00:00
2020-02-22 21:42:46 +00:00
2020-02-19 19:29:27 +00:00
bot = Bot(
description='search - a tiny little search utility bot for discord.',
case_insensitive=True)
2020-02-22 18:11:48 +00:00
@bot.listen()
2020-02-19 19:29:27 +00:00
async def on_command_error(ctx, error):
if isinstance(error, commands.CommandNotFound):
2020-02-22 21:42:46 +00:00
return
elif isinstance(error, commands.CommandInvokeError):
# TODO Ensure old code functions
2020-02-22 21:42:46 +00:00
error = error.original
_traceback = traceback.format_tb(error.__traceback__)
_traceback = ''.join(_traceback)
appinfo = await bot.application_info()
embed_fallback = f"**An error occured: {type(error).__name__}. Please contact {appinfo.owner}.**"
error_embed = discord.Embed(
title=f"{type(error).__name__}",
color=0xFF0000,
description=(
"This is (probably) a bug. This has not been automatically "
2020-02-22 21:42:46 +00:00
f"reported, so please give **{appinfo.owner}** a heads-up in DMs.")
)
trace_content = (
"```py\n\nTraceback (most recent call last):"
"\n{}{}: {}```").format(
_traceback,
type(error).__name__,
error)
error_embed.add_field(
name="`{}` in command `{}`".format(
type(error).__name__, ctx.command.qualified_name),
value=(trace_content[:1018] + '...```')
if len(trace_content) > 1024
else trace_content)
await ctx.send(embed_fallback, embed=error_embed)
2020-02-19 19:29:27 +00:00
else:
await ctx.send(error)
bot.run(bot.config['TOKEN'])