2019-04-19 18:48:37 +00:00
using System ;
using System.Collections.Generic ;
using System.Linq ;
2019-07-10 10:52:02 +00:00
using System.Net.Http ;
2019-04-19 18:48:37 +00:00
using System.Threading.Tasks ;
2019-08-14 05:16:48 +00:00
2019-04-19 18:48:37 +00:00
using Discord ;
2019-07-15 19:36:12 +00:00
using Discord.Net ;
2019-04-19 18:48:37 +00:00
using Discord.WebSocket ;
2019-08-14 05:16:48 +00:00
using PluralKit.Core ;
2019-07-18 15:13:42 +00:00
using Serilog ;
2019-04-19 18:48:37 +00:00
2019-04-21 13:33:22 +00:00
namespace PluralKit.Bot
2019-04-19 18:48:37 +00:00
{
class ProxyMatch {
public PKMember Member ;
public PKSystem System ;
public string InnerText ;
}
2019-07-21 02:27:04 +00:00
class ProxyService : IDisposable {
2019-04-19 18:48:37 +00:00
private IDiscordClient _client ;
2019-07-18 15:13:42 +00:00
private LogChannelService _logChannel ;
2019-10-26 17:45:30 +00:00
private IDataStore _data ;
2019-06-21 12:13:56 +00:00
private EmbedService _embeds ;
2019-07-18 15:13:42 +00:00
private ILogger _logger ;
2019-08-12 03:47:55 +00:00
private WebhookExecutorService _webhookExecutor ;
2019-08-12 01:48:08 +00:00
private ProxyCacheService _cache ;
2019-07-21 02:27:04 +00:00
private HttpClient _httpClient ;
2019-08-08 05:36:09 +00:00
2019-10-26 17:45:30 +00:00
public ProxyService ( IDiscordClient client , LogChannelService logChannel , IDataStore data , EmbedService embeds , ILogger logger , ProxyCacheService cache , WebhookExecutorService webhookExecutor )
2019-04-19 18:48:37 +00:00
{
2019-06-21 12:13:56 +00:00
_client = client ;
2019-07-18 15:13:42 +00:00
_logChannel = logChannel ;
2019-10-26 17:45:30 +00:00
_data = data ;
2019-06-21 12:13:56 +00:00
_embeds = embeds ;
2019-08-12 01:48:08 +00:00
_cache = cache ;
2019-08-12 03:47:55 +00:00
_webhookExecutor = webhookExecutor ;
2019-07-18 15:13:42 +00:00
_logger = logger . ForContext < ProxyService > ( ) ;
2019-08-08 05:36:09 +00:00
2019-07-21 02:27:04 +00:00
_httpClient = new HttpClient ( ) ;
2019-04-19 18:48:37 +00:00
}
2019-08-12 01:48:08 +00:00
private ProxyMatch GetProxyTagMatch ( string message , IEnumerable < ProxyCacheService . ProxyDatabaseResult > potentials )
2019-06-27 08:38:45 +00:00
{
// If the message starts with a @mention, and then proceeds to have proxy tags,
// extract the mention and place it inside the inner message
// eg. @Ske [text] => [@Ske text]
int matchStartPosition = 0 ;
string leadingMention = null ;
2019-10-05 05:41:00 +00:00
if ( Utils . HasMentionPrefix ( message , ref matchStartPosition , out _ ) )
2019-06-27 08:38:45 +00:00
{
leadingMention = message . Substring ( 0 , matchStartPosition ) ;
message = message . Substring ( matchStartPosition ) ;
}
2019-04-19 18:48:37 +00:00
2019-05-13 21:12:58 +00:00
// Sort by specificity (ProxyString length desc = prefix+suffix length desc = inner message asc = more specific proxy first!)
var ordered = potentials . OrderByDescending ( p = > p . Member . ProxyString . Length ) ;
2019-06-21 11:49:58 +00:00
foreach ( var potential in ordered )
{
2019-06-21 11:53:19 +00:00
if ( potential . Member . Prefix = = null & & potential . Member . Suffix = = null ) continue ;
2019-08-08 05:36:09 +00:00
2019-04-19 18:48:37 +00:00
var prefix = potential . Member . Prefix ? ? "" ;
var suffix = potential . Member . Suffix ? ? "" ;
2019-07-19 00:14:46 +00:00
if ( message . Length > = prefix . Length + suffix . Length & & message . StartsWith ( prefix ) & & message . EndsWith ( suffix ) ) {
2019-04-19 18:48:37 +00:00
var inner = message . Substring ( prefix . Length , message . Length - prefix . Length - suffix . Length ) ;
2019-06-27 08:38:45 +00:00
if ( leadingMention ! = null ) inner = $"{leadingMention} {inner}" ;
2019-04-19 18:48:37 +00:00
return new ProxyMatch { Member = potential . Member , System = potential . System , InnerText = inner } ;
}
}
2019-08-08 05:36:09 +00:00
2019-04-19 18:48:37 +00:00
return null ;
}
2019-07-11 19:25:23 +00:00
public async Task HandleMessageAsync ( IMessage message )
{
2019-07-28 13:38:28 +00:00
// Bail early if this isn't in a guild channel
2019-08-12 03:47:55 +00:00
if ( ! ( message . Channel is ITextChannel ) ) return ;
2019-08-08 05:36:09 +00:00
2019-08-12 01:48:08 +00:00
var results = await _cache . GetResultsFor ( message . Author . Id ) ;
2019-04-19 18:48:37 +00:00
// Find a member with proxy tags matching the message
var match = GetProxyTagMatch ( message . Content , results ) ;
if ( match = = null ) return ;
2019-08-08 05:36:09 +00:00
2019-07-10 21:16:17 +00:00
// We know message.Channel can only be ITextChannel as PK doesn't work in DMs/groups
// Afterwards we ensure the bot has the right permissions, otherwise bail early
if ( ! await EnsureBotPermissions ( message . Channel as ITextChannel ) ) return ;
2019-08-08 05:36:09 +00:00
2019-07-15 19:37:34 +00:00
// Can't proxy a message with no content and no attachment
if ( match . InnerText . Trim ( ) . Length = = 0 & & message . Attachments . Count = = 0 )
return ;
2019-08-12 03:47:55 +00:00
// Get variables in order and all
var proxyName = match . Member . ProxyName ( match . System . Tag ) ;
var avatarUrl = match . Member . AvatarUrl ? ? match . System . AvatarUrl ;
2019-08-14 05:16:48 +00:00
// If the name's too long (or short), bail
if ( proxyName . Length < 2 ) throw Errors . ProxyNameTooShort ( proxyName ) ;
if ( proxyName . Length > Limits . MaxProxyNameLength ) throw Errors . ProxyNameTooLong ( proxyName ) ;
2019-07-28 13:38:28 +00:00
// Sanitize @everyone, but only if the original user wouldn't have permission to
var messageContents = SanitizeEveryoneMaybe ( message , match . InnerText ) ;
2019-08-12 03:47:55 +00:00
// Execute the webhook itself
var hookMessageId = await _webhookExecutor . ExecuteWebhook (
( ITextChannel ) message . Channel ,
proxyName , avatarUrl ,
messageContents ,
message . Attachments . FirstOrDefault ( )
) ;
2019-04-19 18:48:37 +00:00
// Store the message in the database, and log it in the log channel (if applicable)
2019-10-26 17:45:30 +00:00
await _data . AddMessage ( message . Author . Id , hookMessageId , message . Channel . Id , message . Id , match . Member ) ;
2019-08-08 05:36:09 +00:00
await _logChannel . LogMessage ( match . System , match . Member , hookMessageId , message . Id , message . Channel as IGuildChannel , message . Author , match . InnerText ) ;
2019-04-19 18:48:37 +00:00
// Wait a second or so before deleting the original message
await Task . Delay ( 1000 ) ;
2019-07-15 19:36:12 +00:00
try
{
await message . DeleteAsync ( ) ;
2019-08-12 02:42:16 +00:00
}
2019-08-12 03:47:55 +00:00
catch ( HttpException )
2019-08-12 02:42:16 +00:00
{
2019-08-12 03:47:55 +00:00
// If it's already deleted, we just log and swallow the exception
_logger . Warning ( "Attempted to delete already deleted proxy trigger message {Message}" , message . Id ) ;
2019-08-12 02:42:16 +00:00
}
}
2019-07-28 13:38:28 +00:00
private static string SanitizeEveryoneMaybe ( IMessage message , string messageContents )
{
var senderPermissions = ( ( IGuildUser ) message . Author ) . GetPermissions ( message . Channel as IGuildChannel ) ;
if ( ! senderPermissions . MentionEveryone ) return messageContents . SanitizeEveryone ( ) ;
return messageContents ;
}
2019-07-10 21:16:17 +00:00
private async Task < bool > EnsureBotPermissions ( ITextChannel channel )
{
var guildUser = await channel . Guild . GetCurrentUserAsync ( ) ;
var permissions = guildUser . GetPermissions ( channel ) ;
if ( ! permissions . ManageWebhooks )
{
2019-08-14 05:16:48 +00:00
// todo: PKError-ify these
2019-07-10 21:16:17 +00:00
await channel . SendMessageAsync (
$"{Emojis.Error} PluralKit does not have the *Manage Webhooks* permission in this channel, and thus cannot proxy messages. Please contact a server administrator to remedy this." ) ;
return false ;
}
2019-08-08 05:36:09 +00:00
2019-07-10 21:16:17 +00:00
if ( ! permissions . ManageMessages )
{
await channel . SendMessageAsync (
$"{Emojis.Error} PluralKit does not have the *Manage Messages* permission in this channel, and thus cannot delete the original trigger message. Please contact a server administrator to remedy this." ) ;
return false ;
}
return true ;
}
2019-06-21 12:13:56 +00:00
public Task HandleReactionAddedAsync ( Cacheable < IUserMessage , ulong > message , ISocketMessageChannel channel , SocketReaction reaction )
2019-04-19 18:48:37 +00:00
{
2019-06-21 12:13:56 +00:00
// Dispatch on emoji
switch ( reaction . Emote . Name )
{
case "\u274C" : // Red X
return HandleMessageDeletionByReaction ( message , reaction . UserId ) ;
case "\u2753" : // Red question mark
case "\u2754" : // White question mark
2019-07-14 03:23:27 +00:00
return HandleMessageQueryByReaction ( message , reaction . UserId , reaction . Emote ) ;
2019-06-21 12:13:56 +00:00
default :
return Task . CompletedTask ;
}
}
2019-04-19 18:48:37 +00:00
2019-07-14 03:23:27 +00:00
private async Task HandleMessageQueryByReaction ( Cacheable < IUserMessage , ulong > message , ulong userWhoReacted , IEmote reactedEmote )
2019-06-21 12:13:56 +00:00
{
2019-07-14 03:23:27 +00:00
// Find the user who sent the reaction, so we can DM them
2019-06-21 12:13:56 +00:00
var user = await _client . GetUserAsync ( userWhoReacted ) ;
if ( user = = null ) return ;
2019-07-14 03:23:27 +00:00
// Find the message in the DB
2019-10-26 17:45:30 +00:00
var msg = await _data . GetMessage ( message . Id ) ;
2019-06-21 12:13:56 +00:00
if ( msg = = null ) return ;
2019-08-08 05:36:09 +00:00
2019-07-14 03:23:27 +00:00
// DM them the message card
2019-06-21 12:13:56 +00:00
await user . SendMessageAsync ( embed : await _embeds . CreateMessageInfoEmbed ( msg ) ) ;
2019-08-08 05:36:09 +00:00
2019-07-14 03:23:27 +00:00
// And finally remove the original reaction (if we can)
var msgObj = await message . GetOrDownloadAsync ( ) ;
if ( await msgObj . Channel . HasPermission ( ChannelPermission . ManageMessages ) )
await msgObj . RemoveReactionAsync ( reactedEmote , user ) ;
2019-06-21 12:13:56 +00:00
}
public async Task HandleMessageDeletionByReaction ( Cacheable < IUserMessage , ulong > message , ulong userWhoReacted )
{
2019-04-19 18:48:37 +00:00
// Find the message in the database
2019-10-26 17:45:30 +00:00
var storedMessage = await _data . GetMessage ( message . Id ) ;
2019-04-19 18:48:37 +00:00
if ( storedMessage = = null ) return ; // (if we can't, that's ok, no worries)
// Make sure it's the actual sender of that message deleting the message
2019-06-21 12:13:56 +00:00
if ( storedMessage . Message . Sender ! = userWhoReacted ) return ;
2019-04-19 18:48:37 +00:00
try {
// Then, fetch the Discord message and delete that
// TODO: this could be faster if we didn't bother fetching it and just deleted it directly
// somehow through REST?
await ( await message . GetOrDownloadAsync ( ) ) . DeleteAsync ( ) ;
} catch ( NullReferenceException ) {
// Message was deleted before we got to it... cool, no problem, lmao
}
// Finally, delete it from our database.
2019-10-26 17:45:30 +00:00
await _data . DeleteMessage ( message . Id ) ;
2019-04-19 18:48:37 +00:00
}
public async Task HandleMessageDeletedAsync ( Cacheable < IMessage , ulong > message , ISocketMessageChannel channel )
{
2019-08-12 01:51:54 +00:00
// Don't delete messages from the store if they aren't webhooks
// Non-webhook messages will never be stored anyway.
// If we're not sure (eg. message outside of cache), delete just to be sure.
if ( message . HasValue & & ! message . Value . Author . IsWebhook ) return ;
2019-10-26 17:45:30 +00:00
await _data . DeleteMessage ( message . Id ) ;
2019-04-19 18:48:37 +00:00
}
2019-07-14 19:27:13 +00:00
2019-07-21 15:16:04 +00:00
public async Task HandleMessageBulkDeleteAsync ( IReadOnlyCollection < Cacheable < IMessage , ulong > > messages , IMessageChannel channel )
{
_logger . Information ( "Bulk deleting {Count} messages in channel {Channel}" , messages . Count , channel . Id ) ;
2019-10-26 17:45:30 +00:00
await _data . DeleteMessagesBulk ( messages . Select ( m = > m . Id ) . ToList ( ) ) ;
2019-07-21 15:16:04 +00:00
}
2019-07-21 02:27:04 +00:00
public void Dispose ( )
{
_httpClient . Dispose ( ) ;
}
2019-04-19 18:48:37 +00:00
}
}