PluralKit/PluralKit.Bot/Bot.cs

244 lines
9.5 KiB
C#
Raw Normal View History

2020-04-24 21:47:35 +00:00
using System.Net.WebSockets;
2019-07-16 19:59:06 +00:00
using App.Metrics;
2020-01-26 00:27:45 +00:00
using Autofac;
2020-12-22 12:15:26 +00:00
using Myriad.Cache;
using Myriad.Gateway;
using Myriad.Rest;
using Myriad.Types;
2020-04-28 23:14:49 +00:00
using NodaTime;
2020-01-26 00:27:45 +00:00
using PluralKit.Core;
2019-10-05 05:41:00 +00:00
2019-07-15 19:02:50 +00:00
using Sentry;
2020-01-26 00:27:45 +00:00
2019-07-18 15:13:42 +00:00
using Serilog;
using Serilog.Context;
2019-04-19 18:48:37 +00:00
namespace PluralKit.Bot;
public class Bot
2019-04-19 18:48:37 +00:00
{
private readonly IDiscordCache _cache;
private readonly Cluster _cluster;
private readonly PeriodicStatCollector _collector;
private readonly CommandMessageService _commandMessageService;
private readonly BotConfig _config;
private readonly ErrorMessageService _errorMessageService;
private readonly ILogger _logger;
private readonly IMetrics _metrics;
private readonly DiscordApiClient _rest;
private readonly ILifetimeScope _services;
private Timer _periodicTask; // Never read, just kept here for GC reasons
public Bot(ILifetimeScope services, ILogger logger, PeriodicStatCollector collector, IMetrics metrics,
BotConfig config,
ErrorMessageService errorMessageService, CommandMessageService commandMessageService,
Cluster cluster, DiscordApiClient rest, IDiscordCache cache)
2019-04-19 18:48:37 +00:00
{
_logger = logger.ForContext<Bot>();
_services = services;
_collector = collector;
_metrics = metrics;
_config = config;
_errorMessageService = errorMessageService;
_commandMessageService = commandMessageService;
_cluster = cluster;
_rest = rest;
_cache = cache;
}
2021-08-27 15:03:47 +00:00
private string BotStatus => $"{(_config.Prefixes ?? BotConfig.DefaultPrefixes)[0]}help";
public void Init()
{
_cluster.EventReceived += (shard, evt) => OnEventReceived(shard.ShardId, evt);
_cluster.DiscordPresence = new GatewayStatusUpdate
{
Status = GatewayStatusUpdate.UserStatus.Online,
Activities = new[]
{
new Activity
{
Type = ActivityType.Game,
Name = BotStatus
}
}
};
// Init the shard stuff
_services.Resolve<ShardInfoService>().Init();
2019-04-19 18:48:37 +00:00
// Not awaited, just needs to run in the background
// Trying our best to run it at whole minute boundaries (xx:00), with ~250ms buffer
// This *probably* doesn't matter in practice but I jut think it's neat, y'know.
var timeNow = SystemClock.Instance.GetCurrentInstant();
var timeTillNextWholeMinute = TimeSpan.FromMilliseconds(60000 - timeNow.ToUnixTimeMilliseconds() % 60000 + 250);
_periodicTask = new Timer(_ =>
2019-04-19 18:48:37 +00:00
{
var __ = UpdatePeriodic();
}, null, timeTillNextWholeMinute, TimeSpan.FromMinutes(1));
}
2021-08-27 15:03:47 +00:00
private async Task OnEventReceived(int shardId, IGatewayEvent evt)
{
// we HandleGatewayEvent **before** getting the own user, because the own user is set in HandleGatewayEvent for ReadyEvent
await _cache.HandleGatewayEvent(evt);
var userId = await _cache.GetOwnUser();
await _cache.TryUpdateSelfMember(userId, evt);
// HandleEvent takes a type parameter, automatically inferred by the event type
// It will then look up an IEventHandler<TypeOfEvent> in the DI container and call that object's handler method
// For registering new ones, see Modules.cs
if (evt is MessageCreateEvent mc)
await HandleEvent(shardId, mc);
if (evt is MessageUpdateEvent mu)
await HandleEvent(shardId, mu);
if (evt is MessageDeleteEvent md)
await HandleEvent(shardId, md);
if (evt is MessageDeleteBulkEvent mdb)
await HandleEvent(shardId, mdb);
if (evt is MessageReactionAddEvent mra)
await HandleEvent(shardId, mra);
if (evt is InteractionCreateEvent ic)
await HandleEvent(shardId, ic);
}
2020-12-22 12:15:26 +00:00
public async Task Shutdown()
{
// This will stop the timer and prevent any subsequent invocations
await _periodicTask.DisposeAsync();
// Send users a lil status message
// We're not actually properly disconnecting from the gateway (lol) so it'll linger for a few minutes
// Should be plenty of time for the bot to connect again next startup and set the real status
await Task.WhenAll(_cluster.Shards.Values.Select(shard =>
shard.UpdateStatus(new GatewayStatusUpdate
{
Activities = new[]
{
new Activity {Name = "Restarting... (please wait)", Type = ActivityType.Game}
},
Status = GatewayStatusUpdate.UserStatus.Idle
})));
}
2020-12-22 12:15:26 +00:00
private Task HandleEvent<T>(int shardId, T evt) where T : IGatewayEvent
{
// We don't want to stall the event pipeline, so we'll "fork" inside here
var _ = HandleEventInner();
return Task.CompletedTask;
2020-12-22 12:15:26 +00:00
async Task HandleEventInner()
{
await Task.Yield();
await using var serviceScope = _services.BeginLifetimeScope();
// Find an event handler that can handle the type of event (<T>) we're given
IEventHandler<T> handler;
try
2020-12-22 12:15:26 +00:00
{
handler = serviceScope.Resolve<IEventHandler<T>>();
}
catch (Exception e)
{
_logger.Error(e, "Error instantiating handler class");
return;
2020-12-22 12:15:26 +00:00
}
using var _ = LogContext.PushProperty("EventId", Guid.NewGuid());
using var __ = LogContext.Push(await serviceScope.Resolve<SerilogGatewayEnricherFactory>().GetEnricher(shardId, evt));
_logger.Verbose("Received gateway event: {@Event}", evt);
try
{
var queue = serviceScope.ResolveOptional<HandlerQueue<T>>();
2021-06-10 12:21:05 +00:00
// Also, find a Sentry enricher for the event type (if one is present), and ask it to put some event data in the Sentry scope
var sentryEnricher = serviceScope.ResolveOptional<ISentryEnricher<T>>();
sentryEnricher?.Enrich(serviceScope.Resolve<Scope>(), shardId, evt);
2020-11-16 08:57:16 +00:00
using var timer = _metrics.Measure.Timer.Time(BotMetrics.EventsHandled,
new MetricTags("event", typeof(T).Name.Replace("Event", "")));
// Delegate to the queue to see if it wants to handle this event
// the TryHandle call returns true if it's handled the event
// Usually it won't, so just pass it on to the main handler
if (queue == null || !await queue.TryHandle(evt))
await handler.Handle(shardId, evt);
}
catch (Exception exc)
{
await HandleError(handler, evt, serviceScope, exc);
}
2019-07-19 00:29:08 +00:00
}
}
2021-08-27 15:03:47 +00:00
private async Task HandleError<T>(IEventHandler<T> handler, T evt, ILifetimeScope serviceScope,
Exception exc)
where T : IGatewayEvent
{
_metrics.Measure.Meter.Mark(BotMetrics.BotErrors, exc.GetType().FullName);
var ourUserId = await _cache.GetOwnUser();
// Make this beforehand so we can access the event ID for logging
var sentryEvent = new SentryEvent(exc);
2021-08-27 15:03:47 +00:00
// If the event is us responding to our own error messages, don't bother logging
if (evt is MessageCreateEvent mc && mc.Author.Id == ourUserId)
return;
2020-05-05 14:42:14 +00:00
var shouldReport = exc.IsOurProblem();
if (shouldReport)
{
// only log exceptions if they're our problem
_logger.Error(exc, "Exception in event handler: {SentryEventId}", sentryEvent.EventId);
// Report error to Sentry
// This will just no-op if there's no URL set
var sentryScope = serviceScope.Resolve<Scope>();
// Add some specific info about Discord error responses, as a breadcrumb
// TODO: headers to dict
// if (exc is BadRequestException bre)
// sentryScope.AddBreadcrumb(bre.Response, "response.error", data: new Dictionary<string, string>(bre.Response.Headers));
// if (exc is NotFoundException nfe)
// sentryScope.AddBreadcrumb(nfe.Response, "response.error", data: new Dictionary<string, string>(nfe.Response.Headers));
// if (exc is UnauthorizedException ue)
// sentryScope.AddBreadcrumb(ue.Response, "response.error", data: new Dictionary<string, string>(ue.Response.Headers));
SentrySdk.CaptureEvent(sentryEvent, sentryScope);
// most of these errors aren't useful...
if (_config.DisableErrorReporting)
2020-08-27 16:20:20 +00:00
return;
2019-07-19 00:29:08 +00:00
// Once we've sent it to Sentry, report it to the user (if we have permission to)
var reportChannel = handler.ErrorChannelFor(evt, ourUserId);
if (reportChannel == null)
return;
var botPerms = await _cache.PermissionsIn(reportChannel.Value);
if (botPerms.HasFlag(PermissionSet.SendMessages | PermissionSet.EmbedLinks))
await _errorMessageService.SendErrorMessage(reportChannel.Value, sentryEvent.EventId.ToString());
2019-04-19 18:48:37 +00:00
}
}
2021-08-27 15:03:47 +00:00
private async Task UpdatePeriodic()
{
_logger.Debug("Running once-per-minute scheduled tasks");
// Collect some stats, submit them to the metrics backend
await _collector.CollectStats();
await Task.WhenAll(((IMetricsRoot)_metrics).ReportRunner.RunAllAsync());
_logger.Debug("Submitted metrics to backend");
}
}