2019-10-27 12:09:07 +00:00
using System ;
using System.Collections.Concurrent ;
2020-07-05 11:38:18 +00:00
using System.Collections.Generic ;
2019-10-27 12:09:07 +00:00
using System.Linq ;
using System.Net.Http ;
using System.Threading.Tasks ;
2020-04-17 21:10:01 +00:00
2020-06-14 20:19:12 +00:00
using App.Metrics ;
2020-04-17 21:10:01 +00:00
using DSharpPlus ;
using DSharpPlus.Entities ;
2019-10-27 12:09:07 +00:00
using Serilog ;
namespace PluralKit.Bot
{
public class WebhookCacheService
{
public static readonly string WebhookName = "PluralKit Proxy Webhook" ;
2020-08-29 11:46:27 +00:00
private readonly DiscordShardedClient _client ;
private readonly ConcurrentDictionary < ulong , Lazy < Task < DiscordWebhook > > > _webhooks ;
2019-10-27 12:09:07 +00:00
2020-08-29 11:46:27 +00:00
private readonly IMetrics _metrics ;
private readonly ILogger _logger ;
2019-10-27 12:09:07 +00:00
2020-06-14 20:19:12 +00:00
public WebhookCacheService ( DiscordShardedClient client , ILogger logger , IMetrics metrics )
2019-10-27 12:09:07 +00:00
{
2020-04-17 21:10:01 +00:00
_client = client ;
2020-06-14 20:19:12 +00:00
_metrics = metrics ;
2019-10-27 12:09:07 +00:00
_logger = logger . ForContext < WebhookCacheService > ( ) ;
2020-04-17 21:10:01 +00:00
_webhooks = new ConcurrentDictionary < ulong , Lazy < Task < DiscordWebhook > > > ( ) ;
2019-10-27 12:09:07 +00:00
}
2020-04-17 21:10:01 +00:00
public async Task < DiscordWebhook > GetWebhook ( DiscordClient client , ulong channelId )
2019-10-27 12:09:07 +00:00
{
2020-07-02 16:29:04 +00:00
var channel = await client . GetChannel ( channelId ) ;
2019-10-27 12:09:07 +00:00
if ( channel = = null ) return null ;
2020-04-17 21:10:01 +00:00
if ( channel . Type = = ChannelType . Text ) return null ;
2019-10-27 12:09:07 +00:00
return await GetWebhook ( channel ) ;
}
2020-04-17 21:10:01 +00:00
public async Task < DiscordWebhook > GetWebhook ( DiscordChannel channel )
2019-10-27 12:09:07 +00:00
{
// We cache the webhook through a Lazy<Task<T>>, this way we make sure to only create one webhook per channel
// If the webhook is requested twice before it's actually been found, the Lazy<T> wrapper will stop the
// webhook from being created twice.
2020-06-11 14:13:18 +00:00
Lazy < Task < DiscordWebhook > > GetWebhookTaskInner ( )
{
Task < DiscordWebhook > Factory ( ) = > GetOrCreateWebhook ( channel ) ;
return _webhooks . GetOrAdd ( channel . Id , new Lazy < Task < DiscordWebhook > > ( Factory ) ) ;
}
var lazyWebhookValue = GetWebhookTaskInner ( ) ;
2019-10-27 12:09:07 +00:00
2020-06-11 14:13:18 +00:00
// If we've cached a failed Task, we need to clear it and try again
// This is so errors don't become "sticky" and *they* in turn get cached (not good)
// although, keep in mind this block gets hit the call *after* the task failed (since we only await it below)
if ( lazyWebhookValue . IsValueCreated & & lazyWebhookValue . Value . IsFaulted )
{
2020-07-05 11:38:18 +00:00
_logger . Warning ( lazyWebhookValue . Value . Exception , "Cached webhook task for {Channel} faulted with below exception" , channel . Id ) ;
2020-06-11 14:13:18 +00:00
// Specifically don't recurse here so we don't infinite-loop - if this one errors too, it'll "stick"
// until next time this function gets hit (which is okay, probably).
_webhooks . TryRemove ( channel . Id , out _ ) ;
lazyWebhookValue = GetWebhookTaskInner ( ) ;
}
2019-10-27 12:09:07 +00:00
// It's possible to "move" a webhook to a different channel after creation
// Here, we ensure it's actually still pointing towards the proper channel, and if not, wipe and refetch one.
var webhook = await lazyWebhookValue . Value ;
2020-04-17 21:10:01 +00:00
if ( webhook . ChannelId ! = channel . Id ) return await InvalidateAndRefreshWebhook ( channel , webhook ) ;
2019-10-27 12:09:07 +00:00
return webhook ;
}
2020-04-17 21:10:01 +00:00
public async Task < DiscordWebhook > InvalidateAndRefreshWebhook ( DiscordChannel channel , DiscordWebhook webhook )
2019-10-27 12:09:07 +00:00
{
_logger . Information ( "Refreshing webhook for channel {Channel}" , webhook . ChannelId ) ;
_webhooks . TryRemove ( webhook . ChannelId , out _ ) ;
2020-04-17 21:10:01 +00:00
return await GetWebhook ( channel ) ;
2019-10-27 12:09:07 +00:00
}
2020-04-17 21:10:01 +00:00
private async Task < DiscordWebhook > GetOrCreateWebhook ( DiscordChannel channel )
2019-10-27 12:09:07 +00:00
{
_logger . Debug ( "Webhook for channel {Channel} not found in cache, trying to fetch" , channel . Id ) ;
2020-06-14 20:19:12 +00:00
_metrics . Measure . Meter . Mark ( BotMetrics . WebhookCacheMisses ) ;
2020-07-05 11:38:18 +00:00
_logger . Debug ( "Finding webhook for channel {Channel}" , channel . Id ) ;
var webhooks = await FetchChannelWebhooks ( channel ) ;
// If the channel has a webhook created by PK, just return that one
var ourWebhook = webhooks . FirstOrDefault ( IsWebhookMine ) ;
if ( ourWebhook ! = null )
return ourWebhook ;
// We don't have one, so we gotta create a new one
// but first, make sure we haven't hit the webhook cap yet...
if ( webhooks . Count > = 10 )
throw new PKError ( "This channel has the maximum amount of possible webhooks (10) already created. A server admin must delete one or more webhooks so PluralKit can create one for proxying." ) ;
return await DoCreateWebhook ( channel ) ;
}
private async Task < IReadOnlyList < DiscordWebhook > > FetchChannelWebhooks ( DiscordChannel channel )
{
try
{
return await channel . GetWebhooksAsync ( ) ;
}
catch ( HttpRequestException e )
{
_logger . Warning ( e , "Error occurred while fetching webhook list" ) ;
// This happens sometimes when Discord returns a malformed request for the webhook list
// Nothing we can do than just assume that none exist.
return new DiscordWebhook [ 0 ] ;
}
2019-10-27 12:09:07 +00:00
}
2020-04-17 21:10:01 +00:00
private async Task < DiscordWebhook > FindExistingWebhook ( DiscordChannel channel )
2019-10-27 12:09:07 +00:00
{
_logger . Debug ( "Finding webhook for channel {Channel}" , channel . Id ) ;
try
{
return ( await channel . GetWebhooksAsync ( ) ) . FirstOrDefault ( IsWebhookMine ) ;
}
catch ( HttpRequestException e )
{
_logger . Warning ( e , "Error occurred while fetching webhook list" ) ;
// This happens sometimes when Discord returns a malformed request for the webhook list
// Nothing we can do than just assume that none exist and return null.
return null ;
}
}
2020-04-17 21:10:01 +00:00
private Task < DiscordWebhook > DoCreateWebhook ( DiscordChannel channel )
2019-10-27 12:09:07 +00:00
{
_logger . Information ( "Creating new webhook for channel {Channel}" , channel . Id ) ;
return channel . CreateWebhookAsync ( WebhookName ) ;
}
2020-04-17 21:10:01 +00:00
private bool IsWebhookMine ( DiscordWebhook arg ) = > arg . User . Id = = _client . CurrentUser . Id & & arg . Name = = WebhookName ;
2019-10-27 12:09:07 +00:00
public int CacheSize = > _webhooks . Count ;
}
2019-05-16 23:23:09 +00:00
}