searchbot-discord/main.py

214 lines
6.8 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
2020-03-03 04:08:20 +00:00
import logging
2020-02-19 19:29:27 +00:00
import random
class Bot(commands.Bot):
2020-03-01 01:51:03 +00:00
"""Custom Bot Class that subclasses the commands.ext one"""
2020-02-19 19:29:27 +00:00
def __init__(self, **options):
2020-03-01 01:51:03 +00:00
"""Initializes the main parts of the bot."""
2020-03-02 07:01:28 +00:00
# Initializes parent class
super().__init__(self._get_prefix_new, **options)
2020-03-02 20:47:58 +00:00
# Setup
self.extensions_list = []
2020-02-19 19:29:27 +00:00
with open('config.json') as f:
self.config = json.load(f)
2020-03-02 07:01:28 +00:00
self.prefix = self.config['PREFIX']
self.version = self.config['VERSION']
self.maintenance = self.config['MAINTENANCE']
self.description = self.config['DESCRIPTION']
self.case_insensitive = self.config['CASE_INSENSITIVE']
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-03-02 20:47:58 +00:00
def _init_extensions(self):
"""Initializes extensions."""
2020-03-02 23:37:34 +00:00
# Utils
2020-03-03 04:56:30 +00:00
# Avoids race conditions with online
utils_dir = os.listdir('extensions/utils')
if 'online.py' in utils_dir:
utils_dir.remove('online.py')
bot.load_extension('extensions.utils.online')
# Rest of utils
for ext in utils_dir:
2020-03-02 20:47:58 +00:00
if ext.endswith('.py'):
try:
2020-03-02 23:37:34 +00:00
bot.load_extension(f'extensions.utils.{ext[:-3]}')
2020-03-02 20:47:58 +00:00
self.extensions_list.append(
2020-03-02 23:37:34 +00:00
f'extensions.utils.{ext[:-3]}')
2020-03-02 20:47:58 +00:00
except Exception as e:
print(e)
2020-03-02 23:37:34 +00:00
# Models
for ext in os.listdir('extensions/models'):
if ext.endswith('.py'):
try:
bot.load_extension(f'extensions.models.{ext[:-3]}')
self.extensions_list.append(
f'extensions.models.{ext[:-3]}')
except Exception as e:
print(e)
2020-03-02 23:37:34 +00:00
# Extensions
for ext in os.listdir('extensions'):
if ext.endswith('.py'):
try:
2020-03-02 23:37:34 +00:00
bot.load_extension(f'extensions.{ext[:-3]}')
self.extensions_list.append(
2020-03-02 23:37:34 +00:00
f'extensions.{ext[:-3]}')
except Exception as e:
print(e)
2020-03-02 23:37:34 +00:00
2020-03-02 20:47:58 +00:00
async def _get_prefix_new(self, bot, msg):
2020-03-02 07:01:28 +00:00
"""More flexible check for prefix."""
2020-03-02 07:01:28 +00:00
# Adds empty prefix if in DMs
if isinstance(msg.channel, discord.DMChannel) and self.config['PREFIXLESS_DMS']:
2020-03-02 07:01:28 +00:00
plus_empty = self.prefix.copy()
plus_empty.append('')
return commands.when_mentioned_or(*plus_empty)(bot, msg)
# Keeps regular if not
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):
2020-03-01 01:51:03 +00:00
"""Initializes the main portion of the bot once it has connected."""
2020-03-02 23:37:34 +00:00
print('Connected.\n')
2020-03-01 01:51:03 +00:00
# Prerequisites
if not hasattr(self, 'request'):
self.request = aiohttp.ClientSession()
if not hasattr(self, 'appinfo'):
self.appinfo = await self.application_info()
if self.description == '':
self.description = self.appinfo.description
2020-03-03 04:26:43 +00:00
# Maintenance Mode
if self.maintenance:
await self.change_presence(
activity=discord.Activity(
name="Maintenance",
type=discord.ActivityType.watching
),
status=discord.Status.dnd
)
else:
await self.change_presence(
activity=discord.Activity(
name=f"@{self.user.name}",
type=discord.ActivityType.listening
),
2020-03-03 04:31:30 +00:00
status=discord.Status.online
2020-03-03 04:26:43 +00:00
)
2020-03-02 07:01:28 +00:00
# NOTE Extension Entry Point
# Loads core, which loads all other extensions
if self.extensions_list == []:
self._init_extensions()
2020-02-22 21:42:46 +00:00
2020-03-02 23:37:34 +00:00
print('Initialized.\n')
2020-03-01 01:51:03 +00:00
# Logging
2020-03-02 23:37:34 +00:00
msg = "ALL ENGINES GO!\n"
2020-02-19 19:29:27 +00:00
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)
2020-03-03 04:44:36 +00:00
2020-03-03 04:26:43 +00:00
await self.logging.info(content=msg, name="On Ready")
2020-02-19 19:29:27 +00:00
async def on_message(self, message):
2020-03-02 07:01:28 +00:00
"""Handles what the bot does whenever a message comes across."""
2020-03-01 01:51:03 +00:00
# Prerequisites
2020-03-02 04:58:05 +00:00
mentions = [self.user.mention, f'<@!{self.user.id}>']
2020-02-22 18:11:48 +00:00
ctx = await self.get_context(message)
2020-03-03 04:49:21 +00:00
# Avoid warnings while loading
if not hasattr(bot, 'appinfo'):
return
2020-03-01 01:51:03 +00:00
# Handling
2020-03-02 07:01:28 +00:00
# Turn away bots
2020-03-03 04:49:21 +00:00
elif message.author.bot:
2020-02-19 19:29:27 +00:00
return
2020-03-02 07:01:28 +00:00
# Ignore blocked users
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-03-02 07:01:28 +00:00
# Maintenance mode
2020-03-03 04:44:36 +00:00
elif self.maintenance and not message.author.id == bot.appinfo.owner.id:
2020-02-19 19:29:27 +00:00
return
2020-03-02 07:01:28 +00:00
# Empty ping for assistance
2020-03-02 04:58:05 +00:00
elif message.content in mentions and self.config.get('MENTION_ASSIST'):
2020-02-22 18:11:48 +00:00
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)
2020-03-02 07:01:28 +00:00
# Move on to command handling
2020-02-22 18:11:48 +00:00
else:
await self.process_commands(message)
2020-02-19 19:29:27 +00:00
2020-03-02 07:02:11 +00:00
2020-03-02 07:01:28 +00:00
# Creates Bot object
bot = Bot()
2020-02-19 19:29:27 +00:00
2020-03-02 07:02:11 +00:00
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):
2020-03-02 07:01:28 +00:00
"""Handles all errors stemming from ext.commands."""
# Lets other cogs handle CommandNotFound.
# Change this if you want command not found handling
2020-03-03 04:08:20 +00:00
if isinstance(error, commands.CommandNotFound)or isinstance(error, commands.CheckFailure):
2020-02-22 21:42:46 +00:00
return
2020-03-01 01:51:03 +00:00
2020-03-02 07:01:28 +00:00
# Provides a very pretty embed if something's actually a dev's fault.
2020-02-22 21:42:46 +00:00
elif isinstance(error, commands.CommandInvokeError):
2020-03-02 23:37:34 +00:00
2020-03-01 01:51:03 +00:00
# Prerequisites
2020-03-03 04:08:20 +00:00
embed_fallback = f"**An error occured: {type(error).__name__}. Please contact {bot.appinfo.owner}.**"
error_embed = await bot.logging.error(error, ctx, ctx.command.cog.qualified_name)
2020-03-01 01:51:03 +00:00
2020-03-02 07:01:28 +00:00
# Sending
2020-02-22 21:42:46 +00:00
await ctx.send(embed_fallback, embed=error_embed)
2020-03-01 01:51:03 +00:00
2020-03-02 07:01:28 +00:00
# If anything else goes wrong, just go ahead and send it in chat.
2020-02-19 19:29:27 +00:00
else:
await bot.logging.error(error, ctx, ctx.command.cog.qualified_name)
2020-02-19 19:29:27 +00:00
await ctx.send(error)
2020-03-02 07:01:28 +00:00
# NOTE Bot Entry Point
# Starts the bot
2020-03-02 23:37:34 +00:00
print("Connecting...\n")
2020-02-19 19:29:27 +00:00
bot.run(bot.config['TOKEN'])