2018-07-30 04:04:20 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# encoding: utf-8
|
|
|
|
|
2018-07-30 04:34:27 +00:00
|
|
|
import io
|
|
|
|
import imghdr
|
|
|
|
import asyncio
|
|
|
|
import logging
|
2018-07-30 05:43:30 +00:00
|
|
|
import weakref
|
2018-07-30 04:34:27 +00:00
|
|
|
import traceback
|
|
|
|
import contextlib
|
2018-08-01 01:46:21 +00:00
|
|
|
import urllib.parse
|
2018-07-30 04:34:27 +00:00
|
|
|
|
|
|
|
import aiohttp
|
|
|
|
import discord
|
2018-07-30 04:04:20 +00:00
|
|
|
from discord.ext import commands
|
|
|
|
|
2018-07-30 04:34:27 +00:00
|
|
|
import utils
|
2018-07-30 05:26:15 +00:00
|
|
|
import utils.image
|
2018-07-30 04:34:27 +00:00
|
|
|
from utils import errors
|
2018-07-30 05:43:30 +00:00
|
|
|
from utils.paginator import ListPaginator
|
2018-07-30 04:34:27 +00:00
|
|
|
|
2018-07-31 10:13:54 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2018-07-30 04:42:27 +00:00
|
|
|
class Emotes:
|
2018-07-30 04:04:20 +00:00
|
|
|
def __init__(self, bot):
|
|
|
|
self.bot = bot
|
2018-07-30 04:34:27 +00:00
|
|
|
self.http = aiohttp.ClientSession(loop=self.bot.loop, read_timeout=30, headers={
|
|
|
|
'User-Agent':
|
|
|
|
self.bot.config['user_agent'] + ' '
|
|
|
|
+ self.bot.http.user_agent
|
|
|
|
})
|
2018-07-30 05:43:30 +00:00
|
|
|
# keep track of paginators so we can end them when the cog is unloaded
|
|
|
|
self.paginators = weakref.WeakSet()
|
|
|
|
|
|
|
|
def __unload(self):
|
|
|
|
self.bot.loop.create_task(self.http.close())
|
|
|
|
|
|
|
|
async def stop_all_paginators():
|
|
|
|
for paginator in self.paginators:
|
|
|
|
await paginator.stop()
|
|
|
|
|
|
|
|
self.bot.loop.create_task(stop_all_paginators())
|
2018-07-30 05:15:31 +00:00
|
|
|
|
2018-07-30 04:04:20 +00:00
|
|
|
async def __local_check(self, context):
|
2018-07-30 05:15:31 +00:00
|
|
|
if not context.guild:
|
2018-07-31 07:38:14 +00:00
|
|
|
raise commands.NoPrivateMessage
|
2018-08-12 02:08:23 +00:00
|
|
|
|
|
|
|
if context.command is self.list:
|
|
|
|
return True
|
2018-07-30 05:15:31 +00:00
|
|
|
|
2018-07-31 00:04:43 +00:00
|
|
|
if (
|
|
|
|
not context.author.guild_permissions.manage_emojis
|
|
|
|
or not context.guild.me.guild_permissions.manage_emojis
|
|
|
|
):
|
2018-07-31 07:38:14 +00:00
|
|
|
raise errors.MissingManageEmojisPermission
|
2018-07-30 05:15:31 +00:00
|
|
|
|
2018-08-12 02:08:23 +00:00
|
|
|
return True
|
2018-07-30 05:15:31 +00:00
|
|
|
|
|
|
|
async def on_command_error(self, context, error):
|
2018-07-31 07:38:14 +00:00
|
|
|
if isinstance(error, (errors.EmoteManagerError, errors.MissingManageEmojisPermission)):
|
2018-07-30 05:15:31 +00:00
|
|
|
await context.send(str(error))
|
2018-07-30 04:04:20 +00:00
|
|
|
|
2018-07-31 07:38:14 +00:00
|
|
|
if isinstance(error, commands.NoPrivateMessage):
|
|
|
|
await context.send(
|
|
|
|
f'{utils.SUCCESS_EMOTES[False]} Sorry, this command may only be used in a server.')
|
|
|
|
|
2018-07-30 04:34:27 +00:00
|
|
|
@commands.command()
|
|
|
|
async def add(self, context, *args):
|
2018-07-30 05:57:47 +00:00
|
|
|
"""Add a new emote to this server.
|
|
|
|
|
|
|
|
You can use it like this:
|
|
|
|
`add :thonkang:` (if you already have that emote)
|
|
|
|
`add rollsafe https://image.noelshack.com/fichiers/2017/06/1486495269-rollsafe.png`
|
|
|
|
`add speedtest <https://cdn.discordapp.com/emojis/379127000398430219.png>`
|
|
|
|
|
|
|
|
With a file attachment:
|
|
|
|
`add name` will upload a new emote using the first attachment as the image and call it `name`
|
|
|
|
`add` will upload a new emote using the first attachment as the image,
|
|
|
|
and its filename as the name
|
|
|
|
"""
|
2018-07-30 04:34:27 +00:00
|
|
|
try:
|
|
|
|
name, url = self.parse_add_command_args(context, args)
|
|
|
|
except commands.BadArgument as exception:
|
|
|
|
return await context.send(exception)
|
|
|
|
|
|
|
|
async with context.typing():
|
|
|
|
message = await self.add_safe(context.guild, name, url, context.message.author.id)
|
|
|
|
await context.send(message)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def parse_add_command_args(cls, context, args):
|
|
|
|
if context.message.attachments:
|
|
|
|
return cls.parse_add_command_attachment(context, args)
|
|
|
|
|
|
|
|
elif len(args) == 1:
|
|
|
|
match = utils.emote.RE_CUSTOM_EMOTE.match(args[0])
|
|
|
|
if match is None:
|
|
|
|
raise commands.BadArgument(
|
|
|
|
'Error: I expected a custom emote as the first argument, '
|
|
|
|
'but I got something else. '
|
|
|
|
"If you're trying to add an emote using an image URL, "
|
|
|
|
'you need to provide a name as the first argument, like this:\n'
|
|
|
|
'`{}add NAME_HERE URL_HERE`'.format(context.prefix))
|
|
|
|
else:
|
|
|
|
animated, name, id = match.groups()
|
|
|
|
url = utils.emote.url(id, animated=animated)
|
|
|
|
|
|
|
|
return name, url
|
|
|
|
|
|
|
|
elif len(args) >= 2:
|
|
|
|
name = args[0]
|
|
|
|
match = utils.emote.RE_CUSTOM_EMOTE.match(args[1])
|
|
|
|
if match is None:
|
|
|
|
url = utils.strip_angle_brackets(args[1])
|
|
|
|
else:
|
|
|
|
url = utils.emote.url(match.group('id'))
|
|
|
|
|
|
|
|
return name, url
|
|
|
|
|
|
|
|
elif not args:
|
|
|
|
raise commands.BadArgument('Your message had no emotes and no name!')
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def parse_add_command_attachment(context, args):
|
|
|
|
attachment = context.message.attachments[0]
|
|
|
|
# as far as i can tell, this is how discord replaces filenames when you upload an emote image
|
|
|
|
name = ''.join(args) if args else attachment.filename.split('.')[0].replace(' ', '')
|
|
|
|
url = attachment.url
|
|
|
|
|
|
|
|
return name, url
|
|
|
|
|
2018-08-01 01:46:21 +00:00
|
|
|
@commands.command(name='add-from-ec', aliases=['addfromec'])
|
|
|
|
async def add_from_ec(self, context, name):
|
|
|
|
"""Copies an emote from Emoji Connoisseur to your server.
|
|
|
|
|
|
|
|
The list of possible emotes you can copy is here:
|
|
|
|
https://emoji-connoissuer.python-for.life/list
|
|
|
|
"""
|
|
|
|
async with self.http.get(
|
|
|
|
self.bot.config['ec_api_url'] + '/emote/' + urllib.parse.quote(name, safe='')
|
|
|
|
) as resp:
|
|
|
|
if resp.status == 404:
|
|
|
|
return await context.send("Emote not found in Emoji Connoisseur's database.")
|
2018-08-14 05:16:43 +00:00
|
|
|
if resp.status != 200:
|
|
|
|
return await context.send(
|
|
|
|
f'Error: the Emoji Connoisseur API returned status code {resp.status}')
|
2018-08-01 01:46:21 +00:00
|
|
|
|
|
|
|
emote = await resp.json()
|
|
|
|
|
|
|
|
reason = (
|
|
|
|
f'Added from Emoji Connoisseur by {utils.format_user(self.bot, context.author.id)}. '
|
|
|
|
f'Original emote author: {utils.format_user(self.bot, int(emote["author"]))}')
|
|
|
|
|
|
|
|
async with context.typing():
|
|
|
|
message = await self.add_safe(context.guild, name, utils.emote.url(
|
|
|
|
emote['id'], animated=emote['animated']
|
|
|
|
), context.author.id, reason=reason)
|
|
|
|
|
|
|
|
await context.send(message)
|
|
|
|
|
|
|
|
async def add_safe(self, guild, name, url, author_id, *, reason=None):
|
2018-07-30 04:34:27 +00:00
|
|
|
"""Try to add an emote. Returns a string that should be sent to the user."""
|
|
|
|
try:
|
2018-08-01 01:46:21 +00:00
|
|
|
emote = await self.add_from_url(guild, name, url, author_id, reason=reason)
|
2018-07-30 04:34:27 +00:00
|
|
|
except discord.HTTPException as ex:
|
|
|
|
return (
|
|
|
|
'An error occurred while creating the emote:\n'
|
|
|
|
+ utils.format_http_exception(ex))
|
|
|
|
except asyncio.TimeoutError:
|
|
|
|
return 'Error: retrieving the image took too long.'
|
|
|
|
except ValueError:
|
|
|
|
return 'Error: Invalid URL.'
|
|
|
|
else:
|
|
|
|
return f'Emote {emote} successfully created.'
|
|
|
|
|
2018-08-01 01:46:21 +00:00
|
|
|
async def add_from_url(self, guild, name, url, author_id, *, reason=None):
|
2018-07-30 04:34:27 +00:00
|
|
|
image_data = await self.fetch_emote(url)
|
2018-08-01 01:46:21 +00:00
|
|
|
emote = await self.create_emote_from_bytes(guild, name, author_id, image_data, reason=reason)
|
2018-07-30 04:34:27 +00:00
|
|
|
|
|
|
|
return emote
|
|
|
|
|
|
|
|
async def fetch_emote(self, url):
|
|
|
|
# credits to @Liara#0001 (ID 136900814408122368) for most of this part
|
|
|
|
# https://gitlab.com/Pandentia/element-zero/blob/47bc8eeeecc7d353ec66e1ef5235adab98ca9635/element_zero/cogs/emoji.py#L217-228
|
|
|
|
async with self.http.head(url, timeout=5) as response:
|
|
|
|
if response.reason != 'OK':
|
|
|
|
raise errors.HTTPException(response.status)
|
|
|
|
if response.headers.get('Content-Type') not in ('image/png', 'image/jpeg', 'image/gif'):
|
|
|
|
raise errors.InvalidImageError
|
|
|
|
|
|
|
|
async with self.http.get(url) as response:
|
|
|
|
if response.reason != 'OK':
|
|
|
|
raise errors.HTTPException(response.status)
|
|
|
|
return io.BytesIO(await response.read())
|
|
|
|
|
2018-08-01 01:46:21 +00:00
|
|
|
async def create_emote_from_bytes(self, guild, name, author_id, image_data: io.BytesIO, *, reason=None):
|
2018-07-30 04:34:27 +00:00
|
|
|
# resize_until_small is normally blocking, because wand is.
|
|
|
|
# run_in_executor is magic that makes it non blocking somehow.
|
|
|
|
# also, None as the executor arg means "use the loop's default executor"
|
2018-07-30 05:26:15 +00:00
|
|
|
image_data = await self.bot.loop.run_in_executor(None, utils.image.resize_until_small, image_data)
|
2018-08-01 01:46:21 +00:00
|
|
|
if reason is None:
|
|
|
|
reason = f'Created by {utils.format_user(self.bot, author_id)}'
|
2018-07-30 04:34:27 +00:00
|
|
|
return await guild.create_custom_emoji(
|
|
|
|
name=name,
|
|
|
|
image=image_data.read(),
|
2018-08-01 01:46:21 +00:00
|
|
|
reason=reason)
|
2018-07-30 04:34:27 +00:00
|
|
|
|
2018-07-30 05:15:09 +00:00
|
|
|
@commands.command()
|
2018-07-30 05:58:03 +00:00
|
|
|
async def remove(self, context, *names):
|
|
|
|
"""Remove an emote from this server.
|
|
|
|
|
|
|
|
names: the names of one or more emotes you'd like to remove.
|
|
|
|
"""
|
|
|
|
if len(names) == 1:
|
|
|
|
emote = await self.disambiguate(context, names[0])
|
|
|
|
await emote.delete(reason=f'Removed by {utils.format_user(self.bot, context.author.id)}')
|
|
|
|
await context.send(f'Emote \:{emote.name}: successfully removed.')
|
|
|
|
else:
|
|
|
|
for name in names:
|
|
|
|
await context.invoke(self.remove, name)
|
2018-07-30 05:15:09 +00:00
|
|
|
|
2018-07-30 05:33:13 +00:00
|
|
|
@commands.command()
|
|
|
|
async def rename(self, context, old_name, new_name):
|
2018-07-30 05:57:47 +00:00
|
|
|
"""Rename an emote on this server.
|
|
|
|
|
|
|
|
old_name: the name of the emote to rename
|
|
|
|
new_name: what you'd like to rename it to
|
|
|
|
"""
|
2018-07-30 05:33:13 +00:00
|
|
|
emote = await self.disambiguate(context, old_name)
|
|
|
|
try:
|
|
|
|
await emote.edit(
|
|
|
|
name=new_name,
|
|
|
|
reason=f'Renamed by {utils.format_user(self.bot, context.author.id)}')
|
|
|
|
except discord.HTTPException as ex:
|
|
|
|
return await context.send(
|
|
|
|
'An error occurred while renaming the emote:\n'
|
|
|
|
+ utils.format_http_exception(ex))
|
|
|
|
|
|
|
|
await context.send(f'Emote \:{old_name}: successfully renamed to \:{new_name}:')
|
|
|
|
|
2018-07-30 05:43:30 +00:00
|
|
|
@commands.command()
|
|
|
|
async def list(self, context):
|
2018-07-31 10:13:54 +00:00
|
|
|
"""A list of all emotes on this server.
|
|
|
|
|
|
|
|
The list shows each emote and its raw form.
|
|
|
|
"""
|
2018-07-30 05:43:30 +00:00
|
|
|
emotes = sorted(
|
|
|
|
filter(lambda e: e.require_colons, context.guild.emojis),
|
|
|
|
key=lambda e: e.name.lower())
|
|
|
|
|
|
|
|
processed = []
|
|
|
|
for emote in emotes:
|
2018-07-31 10:13:54 +00:00
|
|
|
raw = str(emote).replace(':', '\:')
|
|
|
|
processed.append(f'{emote} {raw}')
|
2018-07-30 05:43:30 +00:00
|
|
|
|
|
|
|
paginator = ListPaginator(context, processed)
|
|
|
|
self.paginators.add(paginator)
|
|
|
|
await paginator.begin()
|
|
|
|
|
2018-07-30 05:15:09 +00:00
|
|
|
async def disambiguate(self, context, name):
|
|
|
|
candidates = [e for e in context.guild.emojis if e.name.lower() == name.lower() and e.require_colons]
|
|
|
|
if not candidates:
|
|
|
|
raise errors.EmoteNotFoundError(name)
|
|
|
|
|
|
|
|
if len(candidates) == 1:
|
|
|
|
return candidates[0]
|
|
|
|
|
|
|
|
message = ['Multiple emotes were found with that name. Which one do you mean?']
|
|
|
|
for i, emote in enumerate(candidates, 1):
|
|
|
|
message.append(f'{i}. {emote} (\:{emote.name}:)')
|
|
|
|
|
|
|
|
await context.send('\n'.join(message))
|
|
|
|
|
|
|
|
def check(message):
|
|
|
|
try:
|
|
|
|
int(message.content)
|
|
|
|
except ValueError:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return message.author == context.author
|
|
|
|
|
|
|
|
try:
|
|
|
|
message = await self.bot.wait_for('message', check=check, timeout=30)
|
|
|
|
except asyncio.TimeoutError:
|
|
|
|
raise commands.UserInputError('Sorry, you took too long. Try again.')
|
|
|
|
|
|
|
|
return candidates[int(message.content)-1]
|
2018-07-30 04:34:27 +00:00
|
|
|
|
|
|
|
|
2018-07-30 04:04:20 +00:00
|
|
|
def setup(bot):
|
2018-07-30 04:42:27 +00:00
|
|
|
bot.add_cog(Emotes(bot))
|