PluralKit/PluralKit.Bot/Services/LogChannelService.cs

70 lines
3.0 KiB
C#
Raw Normal View History

2019-04-19 18:48:37 +00:00
using System.Threading.Tasks;
using Dapper;
using DSharpPlus;
using DSharpPlus.Entities;
using PluralKit.Core;
2019-07-18 15:13:42 +00:00
using Serilog;
2019-04-19 18:48:37 +00:00
namespace PluralKit.Bot {
public class LogChannelService {
private readonly EmbedService _embed;
2020-06-13 17:36:43 +00:00
private readonly IDatabase _db;
2020-08-29 11:46:27 +00:00
private readonly ModelRepository _repo;
private readonly ILogger _logger;
2019-04-19 18:48:37 +00:00
2020-11-15 14:07:20 +00:00
public LogChannelService(EmbedService embed, ILogger logger, IDatabase db, ModelRepository repo)
2019-04-19 18:48:37 +00:00
{
2019-10-27 22:01:20 +00:00
_embed = embed;
_db = db;
2020-08-29 11:46:27 +00:00
_repo = repo;
2019-07-18 15:13:42 +00:00
_logger = logger.ForContext<LogChannelService>();
2019-04-19 18:48:37 +00:00
}
2020-11-15 14:07:20 +00:00
public async ValueTask LogMessage(DiscordClient client, MessageContext ctx, ProxyMatch proxy, DiscordMessage trigger, ulong hookMessage)
{
if (ctx.SystemId == null || ctx.LogChannel == null || ctx.InLogBlacklist) return;
// Find log channel and check if valid
2020-11-15 14:07:20 +00:00
var logChannel = await FindLogChannel(client, trigger.Channel.GuildId, ctx.LogChannel.Value);
if (logChannel == null || logChannel.Type != ChannelType.Text) return;
// Check bot permissions
2020-11-08 17:52:50 +00:00
if (!logChannel.BotHasAllPermissions(Permissions.SendMessages | Permissions.EmbedLinks))
{
_logger.Information(
"Does not have permission to proxy log, ignoring (channel: {ChannelId}, guild: {GuildId}, bot permissions: {BotPermissions})",
ctx.LogChannel.Value, trigger.Channel.GuildId, trigger.Channel.BotPermissions());
return;
}
// Send embed!
await using var conn = await _db.Obtain();
2020-08-29 11:46:27 +00:00
var embed = _embed.CreateLoggedMessageEmbed(await _repo.GetSystem(conn, ctx.SystemId.Value),
await _repo.GetMember(conn, proxy.Member.Id), hookMessage, trigger.Id, trigger.Author, proxy.Content,
trigger.Channel);
var url = $"https://discord.com/channels/{trigger.Channel.GuildId}/{trigger.ChannelId}/{hookMessage}";
await logChannel.SendMessageFixedAsync(content: url, embed: embed);
}
2020-11-15 14:07:20 +00:00
private async Task<DiscordChannel> FindLogChannel(DiscordClient client, ulong guild, ulong channel)
{
2020-11-15 14:07:20 +00:00
// MUST use this client here, otherwise we get strange cache issues where the guild doesn't exist... >.>
var obj = await client.GetChannel(channel);
if (obj == null)
{
// Channel doesn't exist or we don't have permission to access it, let's remove it from the database too
_logger.Warning("Attempted to fetch missing log channel {LogChannel} for guild {Guild}, removing from database", channel, guild);
await using var conn = await _db.Obtain();
2020-06-26 13:06:46 +00:00
await conn.ExecuteAsync("update servers set log_channel = null where id = @Guild",
new {Guild = guild});
}
2019-04-19 18:48:37 +00:00
return obj;
}
2019-04-19 18:48:37 +00:00
}
}