1
0
Fork 0
mirror of https://github.com/uhIgnacio/EmoteManager.git synced 2024-08-15 02:23:13 +00:00

make the support command dynamically create invites to reduce raids

This commit is contained in:
Benjamin Mintz 2019-07-02 10:03:13 +00:00
parent 05bcf4a412
commit 7dd40ce0e5
2 changed files with 26 additions and 7 deletions

View file

@ -7,6 +7,10 @@ import discord
from discord.ext import commands
class Meta(commands.Cog):
# TODO does this need to be configurable?
INVITE_DURATION_SECONDS = 60 * 60 * 3
MAX_INVITE_USES = 5
def __init__(self, bot):
self.bot = bot
@ -28,17 +32,29 @@ class Meta(commands.Cog):
@commands.command()
async def support(self, context):
"""Directs you to the support server."""
ch = self.bot.get_channel(self.bot.config['support_server_invite_channel'])
if ch is None:
await context.send('This command is temporarily unavailable. Try again later?')
return
invite = await ch.create_invite(max_age=self.INVITE_DURATION_SECONDS, max_uses=self.MAX_INVITE_USES)
try:
await context.author.send(self.bot.config['support_server_invite'])
with contextlib.suppress(discord.HTTPException):
await context.message.add_reaction('📬') # TODO make this emoji configurable too
await context.author.send(f'Official support server invite: {invite}')
except discord.Forbidden:
with contextlib.suppress(discord.HTTPException):
await context.message.add_reaction(utils.SUCCESS_EMOJIS[True])
await context.send('Unable to send invite in DMs. Please allow DMs from server members.')
with contextlib.suppress(discord.HTTPException):
await context.send('Unable to send invite in DMs. Please allow DMs from server members.')
else:
try:
await context.message.add_reaction('📬')
except discord.HTTPException:
with contextlib.suppress(discord.HTTPException):
await context.send('📬')
def setup(bot):
bot.add_cog(Meta(bot))
if not bot.config.get('support_server_invite'):
if not bot.config.get('support_server_invite_channel'):
bot.remove_command('support')