mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-11 20:43:34 +03:00
Bumps the remora group with 5 updates: | Package | From | To | | --- | --- | --- | | [Remora.Discord.Caching](https://github.com/Remora/Remora.Discord) | `39.0.0` | `40.0.0` | | [Remora.Commands](https://github.com/Remora/Remora.Commands) | `10.0.6` | `11.0.1` | | [Remora.Discord.Extensions](https://github.com/Remora/Remora.Discord) | `5.3.6` | `6.0.0` | | [Remora.Discord.Interactivity](https://github.com/Remora/Remora.Discord) | `5.0.0` | `6.0.0` | | [Remora.Discord.Hosting](https://github.com/Remora/Remora.Discord) | `6.0.10` | `7.0.0` | Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Octol1ttle <l1ttleofficial@outlook.com>
98 lines
4.1 KiB
C#
98 lines
4.1 KiB
C#
using System.Text;
|
|
using DiffPlex.DiffBuilder;
|
|
using JetBrains.Annotations;
|
|
using Remora.Discord.API.Abstractions.Gateway.Events;
|
|
using Remora.Discord.API.Abstractions.Objects;
|
|
using Remora.Discord.API.Abstractions.Rest;
|
|
using Remora.Discord.Caching;
|
|
using Remora.Discord.Caching.Services;
|
|
using Remora.Discord.Extensions.Embeds;
|
|
using Remora.Discord.Gateway.Responders;
|
|
using Remora.Results;
|
|
using TeamOctolings.Octobot.Data;
|
|
using TeamOctolings.Octobot.Extensions;
|
|
using TeamOctolings.Octobot.Services;
|
|
|
|
namespace TeamOctolings.Octobot.Responders;
|
|
|
|
/// <summary>
|
|
/// Handles logging the difference between an edited message's old and new content
|
|
/// to a guild's <see cref="GuildSettings.PrivateFeedbackChannel" /> if one is set.
|
|
/// </summary>
|
|
[UsedImplicitly]
|
|
public sealed class MessageEditedResponder : IResponder<IMessageUpdate>
|
|
{
|
|
private readonly CacheService _cacheService;
|
|
private readonly IDiscordRestChannelAPI _channelApi;
|
|
private readonly GuildDataService _guildData;
|
|
|
|
public MessageEditedResponder(
|
|
CacheService cacheService, IDiscordRestChannelAPI channelApi, GuildDataService guildData)
|
|
{
|
|
_cacheService = cacheService;
|
|
_channelApi = channelApi;
|
|
_guildData = guildData;
|
|
}
|
|
|
|
public async Task<Result> RespondAsync(IMessageUpdate gatewayEvent, CancellationToken ct = default)
|
|
{
|
|
if (!gatewayEvent.GuildID.IsDefined(out var guildId)
|
|
|| !gatewayEvent.EditedTimestamp.HasValue
|
|
|| gatewayEvent.Author.IsBot.OrDefault(false))
|
|
{
|
|
return Result.Success;
|
|
}
|
|
|
|
var cfg = await _guildData.GetSettings(guildId, ct);
|
|
if (GuildSettings.PrivateFeedbackChannel.Get(cfg).Empty())
|
|
{
|
|
return Result.Success;
|
|
}
|
|
|
|
var cacheKey = new KeyHelpers.MessageCacheKey(gatewayEvent.ChannelID, gatewayEvent.ID);
|
|
var messageResult = await _cacheService.TryGetValueAsync<IMessage>(
|
|
cacheKey, ct);
|
|
if (!messageResult.IsDefined(out var message))
|
|
{
|
|
_ = _channelApi.GetChannelMessageAsync(gatewayEvent.ChannelID, gatewayEvent.ID, ct);
|
|
return Result.Success;
|
|
}
|
|
|
|
if (message.Content == gatewayEvent.Content)
|
|
{
|
|
return Result.Success;
|
|
}
|
|
|
|
// Custom event responders are called earlier than responders responsible for message caching
|
|
// This means that subsequent edit logs may contain the wrong content
|
|
// We can work around this by evicting the message from the cache
|
|
await _cacheService.EvictAsync<IMessage>(cacheKey, ct);
|
|
// However, since we evicted the message, subsequent edits won't have a cached instance to work with
|
|
// Getting the message will put it back in the cache, resolving all issues
|
|
// We don't need to await this since the result is not needed
|
|
// NOTE: Because this is not awaited, there may be a race condition depending on how fast clients are able to edit their messages
|
|
// NOTE: Awaiting this might not even solve this if the same responder is called asynchronously
|
|
_ = _channelApi.GetChannelMessageAsync(gatewayEvent.ChannelID, gatewayEvent.ID, ct);
|
|
|
|
var diff = InlineDiffBuilder.Diff(message.Content, gatewayEvent.Content);
|
|
|
|
Messages.Culture = GuildSettings.Language.Get(cfg);
|
|
|
|
var builder = new StringBuilder()
|
|
.AppendLine(diff.AsMarkdown())
|
|
.AppendLine(string.Format(Messages.DescriptionActionJumpToMessage,
|
|
$"https://discord.com/channels/{guildId}/{gatewayEvent.ChannelID}/{gatewayEvent.ID}")
|
|
);
|
|
|
|
var embed = new EmbedBuilder()
|
|
.WithSmallTitle(string.Format(Messages.CachedMessageEdited, message.Author.GetTag()), message.Author)
|
|
.WithDescription(builder.ToString())
|
|
.WithTimestamp(gatewayEvent.EditedTimestamp.Value)
|
|
.WithColour(ColorsList.Yellow)
|
|
.Build();
|
|
|
|
return await _channelApi.CreateMessageWithEmbedResultAsync(
|
|
GuildSettings.PrivateFeedbackChannel.Get(cfg), embedResult: embed,
|
|
allowedMentions: Utility.NoMentions, ct: ct);
|
|
}
|
|
}
|