PluralKit/bot/pluralkit/proxy.py

190 lines
8.4 KiB
Python
Raw Normal View History

2018-07-11 22:47:44 +00:00
import os
2018-07-13 19:11:31 +00:00
import json
2018-07-11 22:47:44 +00:00
import time
import aiohttp
2018-07-12 13:03:34 +00:00
import discord
2018-07-11 22:47:44 +00:00
from pluralkit import db
from pluralkit.bot import client, logger
2018-07-13 20:27:03 +00:00
def make_log_embed(hook_message, member, channel_name):
author_name = "#{}: {}".format(channel_name, member["name"])
2018-07-12 13:03:34 +00:00
if member["system_name"]:
author_name += " ({})".format(member["system_name"])
embed = discord.Embed()
embed.colour = discord.Colour.blue()
2018-07-12 15:48:05 +00:00
embed.description = hook_message.clean_content
2018-07-12 13:03:34 +00:00
embed.timestamp = hook_message.timestamp
2018-07-13 20:27:03 +00:00
embed.set_author(name=author_name, icon_url=member["avatar_url"] or discord.Embed.Empty)
2018-07-13 19:11:31 +00:00
if len(hook_message.attachments) > 0:
embed.set_image(url=hook_message.attachments[0]["url"])
2018-07-13 20:27:03 +00:00
return embed
async def log_message(original_message, hook_message, member, log_channel):
# hook_message is kinda broken, and doesn't include details from server or channel
# We rely on the fact that original_message must be in the same channel, this'll break if that changes
embed = make_log_embed(hook_message, member, channel_name=original_message.channel.name)
embed.set_footer(text="System ID: {} | Member ID: {} | Sender: {}#{} | Message ID: {}".format(member["system_hid"], member["hid"], original_message.author.name, original_message.author.discriminator, hook_message.id))
message_link = "https://discordapp.com/channels/{}/{}/{}".format(original_message.server.id, original_message.channel.id, hook_message.id)
embed.author.url = message_link
await client.send_message(log_channel, embed=embed)
async def log_delete(hook_message, member, log_channel):
embed = make_log_embed(hook_message, member, channel_name=hook_message.channel.name)
embed.set_footer(text="System ID: {} | Member ID: {} | Message ID: {}".format(member["system_hid"], member["hid"], hook_message.id))
embed.colour = discord.Colour.dark_red()
2018-07-12 13:03:34 +00:00
await client.send_message(log_channel, embed=embed)
2018-07-11 22:49:02 +00:00
2018-07-13 20:27:03 +00:00
async def get_log_channel(conn, server):
# Check server info for a log channel
server_info = await db.get_server_info(conn, server.id)
if server_info and server_info["log_channel"]:
channel = server.get_channel(str(server_info["log_channel"]))
return channel
2018-07-11 22:47:44 +00:00
async def get_webhook(conn, channel):
async with conn.transaction():
# Try to find an existing webhook
hook_row = await db.get_webhook(conn, channel_id=channel.id)
# There's none, we'll make one
if not hook_row:
async with aiohttp.ClientSession() as session:
req_data = {"name": "PluralKit Proxy Webhook"}
2018-07-11 22:49:02 +00:00
req_headers = {
"Authorization": "Bot {}".format(os.environ["TOKEN"])}
2018-07-11 22:47:44 +00:00
async with session.post("https://discordapp.com/api/v6/channels/{}/webhooks".format(channel.id), json=req_data, headers=req_headers) as resp:
data = await resp.json()
hook_id = data["id"]
token = data["token"]
# Insert new hook into DB
await db.add_webhook(conn, channel_id=channel.id, webhook_id=hook_id, webhook_token=token)
return hook_id, token
2018-07-11 22:49:02 +00:00
2018-07-11 22:47:44 +00:00
return hook_row["webhook"], hook_row["token"]
2018-07-13 19:11:31 +00:00
async def send_hook_message(member, hook_id, hook_token, text=None, image_url=None):
2018-07-11 22:49:02 +00:00
async with aiohttp.ClientSession() as session:
2018-07-13 19:11:31 +00:00
# Set up headers
req_headers = {
"Authorization": "Bot {}".format(os.environ["TOKEN"])
2018-07-11 22:47:44 +00:00
}
2018-07-12 13:03:34 +00:00
2018-07-13 19:11:31 +00:00
# Set up parameters
# Use FormData because the API doesn't like JSON requests with file data
fd = aiohttp.FormData()
fd.add_field("username", "{} {}".format(member["name"], member["tag"] or "").strip())
if member["avatar_url"]:
fd.add_field("avatar_url", member["avatar_url"])
2018-07-13 19:11:31 +00:00
if text:
fd.add_field("content", text)
if image_url:
# Fetch the image URL and proxy it directly into the file data (async streaming!)
image_resp = await session.get(image_url)
fd.add_field("file", image_resp.data, content_type=image_resp.content_type, filename=image_resp.url.name)
# Send the actual webhook request, and wait for a response
async with session.post("https://discordapp.com/api/v6/webhooks/{}/{}?wait=true".format(hook_id, hook_token),
data=fd,
headers=req_headers) as resp:
2018-07-12 13:03:34 +00:00
if resp.status == 200:
resp_data = await resp.json()
2018-07-13 19:11:31 +00:00
# Make a fake message object for passing on - this is slightly broken but works for most things
2018-07-13 19:41:28 +00:00
msg = discord.Message(reactions=[], **resp_data)
# Make sure it's added to the client's message cache - otherwise events r
#client.messages.append(msg)
return msg
2018-07-12 13:03:34 +00:00
else:
# Fake a Discord exception, also because #yolo
raise discord.HTTPException(resp, await resp.text())
async def proxy_message(conn, member, trigger_message, inner):
2018-07-13 19:11:31 +00:00
logger.debug("Proxying message '{}' for member {}".format(inner, member["hid"]))
2018-07-12 13:03:34 +00:00
# Get the webhook details
hook_id, hook_token = await get_webhook(conn, trigger_message.channel)
2018-07-13 19:11:31 +00:00
# Get attachment image URL if present (only works for one...)
image_urls = [a["url"] for a in trigger_message.attachments if "url" in a]
image_url = image_urls[0] if len(image_urls) > 0 else None
# Send the hook message
hook_message = await send_hook_message(member, hook_id, hook_token, text=inner, image_url=image_url)
2018-07-12 13:03:34 +00:00
# Insert new message details into the DB
2018-07-14 19:16:39 +00:00
await db.add_message(conn, message_id=hook_message.id, channel_id=trigger_message.channel.id, member_id=member["id"], sender_id=trigger_message.author.id, content=inner)
2018-07-11 22:47:44 +00:00
2018-07-13 20:27:03 +00:00
# Log message to logging channel if necessary
log_channel = await get_log_channel(conn, trigger_message.server)
if log_channel:
await log_message(trigger_message, hook_message, member, log_channel)
2018-07-11 22:47:44 +00:00
2018-07-13 19:11:31 +00:00
# Delete the original message
await client.delete_message(trigger_message)
2018-07-11 22:49:02 +00:00
2018-07-11 22:47:44 +00:00
async def handle_proxying(conn, message):
# Big fat query to find every member associated with this account
# Returned member object has a few more keys (system tag, for example)
members = await db.get_members_by_account(conn, account_id=message.author.id)
# Sort by specificity (members with both prefix and suffix go higher)
2018-07-11 22:49:02 +00:00
members = sorted(members, key=lambda x: int(
bool(x["prefix"])) + int(bool(x["suffix"])), reverse=True)
2018-07-11 22:47:44 +00:00
msg = message.content
for member in members:
# If no proxy details are configured, skip
if not member["prefix"] and not member["suffix"]:
continue
# Database stores empty strings as null, fix that here
prefix = member["prefix"] or ""
suffix = member["suffix"] or ""
# If we have a match, proxy the message
if msg.startswith(prefix) and msg.endswith(suffix):
# Extract the actual message contents sans tags
if suffix:
2018-07-11 22:49:02 +00:00
inner_message = message.content[len(
prefix):-len(suffix)].strip()
2018-07-11 22:47:44 +00:00
else:
# Slicing to -0 breaks, don't do that
inner_message = message.content[len(prefix):].strip()
await proxy_message(conn, member, message, inner_message)
break
2018-07-13 19:41:28 +00:00
async def handle_reaction(conn, user_id, message_id, emoji):
if emoji == "":
2018-07-11 22:47:44 +00:00
async with conn.transaction():
# Find the message in the DB, and make sure it's sent by the user who reacted
2018-07-13 19:41:28 +00:00
db_message = await db.get_message_by_sender_and_id(conn, message_id=message_id, sender_id=user_id)
if db_message:
logger.debug("Deleting message {} by reaction from {}".format(message_id, user_id))
# If so, remove it from the DB
await db.delete_message(conn, message_id)
# And look up the message and then delete it
channel = client.get_channel(str(db_message["channel"]))
message = await client.get_message(channel, message_id)
await client.delete_message(message)
2018-07-13 20:27:03 +00:00
# Log deletion to logging channel if necessary
log_channel = await get_log_channel(conn, message.server)
if log_channel:
# db_message contains enough member data for the things to work
await log_delete(message, db_message, log_channel)