PluralKit/PluralKit.Bot/Handlers/InteractionCreated.cs
2025-09-07 10:04:23 +12:00

67 lines
No EOL
2.3 KiB
C#

using Autofac;
using Serilog;
using Myriad.Gateway;
using Myriad.Types;
using System.Buffers;
using PluralKit.Core;
namespace PluralKit.Bot;
public class InteractionCreated: IEventHandler<InteractionCreateEvent>
{
private readonly InteractionDispatchService _interactionDispatch;
private readonly ApplicationCommandTree _commandTree;
private readonly ILifetimeScope _services;
private readonly ILogger _logger;
private readonly ModelRepository _repo;
private readonly BotConfig _config;
public InteractionCreated(InteractionDispatchService interactionDispatch, ApplicationCommandTree commandTree,
ILifetimeScope services, ILogger logger, ModelRepository repo, BotConfig config)
{
_interactionDispatch = interactionDispatch;
_commandTree = commandTree;
_services = services;
_logger = logger;
_repo = repo;
_config = config;
}
public async Task Handle(int shardId, InteractionCreateEvent evt)
{
var system = await _repo.GetSystemByAccount(evt.Member?.User.Id ?? evt.User!.Id);
var config = system != null ? await _repo.GetSystemConfig(system!.Id) : null;
var ctx = new InteractionContext(_services, evt, system, config);
switch (evt.Type)
{
case Interaction.InteractionType.MessageComponent:
_logger.Information("Discord debug: got interaction with ID {id} from custom ID {custom_id}", evt.Id, evt.Data?.CustomId);
var customId = evt.Data?.CustomId;
if (customId == null) return;
if (customId.Contains("help-menu"))
await Help.ButtonClick(ctx, (_config.Prefixes?[0] ?? BotConfig.DefaultPrefixes[0]));
else
await _interactionDispatch.Dispatch(customId, ctx);
break;
case Interaction.InteractionType.ApplicationCommand:
var res = _commandTree.TryHandleCommand(ctx);
if (res != null)
{
await res;
return;
}
// got some unhandled command, log and ignore
_logger.Warning(@"Unhandled ApplicationCommand interaction: {EventId} {CommandName}", evt.Id, evt.Data?.Name);
break;
}
;
}
}