2021-08-25 18:36:13 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
using Humanizer;
|
|
|
|
|
|
|
|
using Myriad.Builders;
|
|
|
|
using Myriad.Cache;
|
|
|
|
using Myriad.Extensions;
|
|
|
|
using Myriad.Rest;
|
|
|
|
using Myriad.Rest.Exceptions;
|
|
|
|
using Myriad.Types;
|
|
|
|
|
|
|
|
using PluralKit.Core;
|
|
|
|
|
|
|
|
namespace PluralKit.Bot
|
|
|
|
{
|
|
|
|
public class Checks
|
|
|
|
{
|
|
|
|
private readonly DiscordApiClient _rest;
|
|
|
|
private readonly Bot _bot;
|
|
|
|
private readonly IDiscordCache _cache;
|
|
|
|
private readonly IDatabase _db;
|
|
|
|
private readonly ModelRepository _repo;
|
|
|
|
private readonly BotConfig _botConfig;
|
|
|
|
private readonly ProxyService _proxy;
|
|
|
|
private readonly ProxyMatcher _matcher;
|
|
|
|
|
|
|
|
public Checks(DiscordApiClient rest, Bot bot, IDiscordCache cache, IDatabase db, ModelRepository repo,
|
|
|
|
BotConfig botConfig, ProxyService proxy, ProxyMatcher matcher)
|
|
|
|
{
|
|
|
|
_rest = rest;
|
|
|
|
_bot = bot;
|
|
|
|
_cache = cache;
|
|
|
|
_db = db;
|
|
|
|
_repo = repo;
|
|
|
|
_botConfig = botConfig;
|
|
|
|
_proxy = proxy;
|
|
|
|
_matcher = matcher;
|
|
|
|
}
|
|
|
|
|
2021-09-13 08:21:03 +00:00
|
|
|
private readonly PermissionSet[] requiredPermissions = new[]
|
|
|
|
{
|
|
|
|
PermissionSet.ViewChannel,
|
|
|
|
PermissionSet.SendMessages,
|
|
|
|
PermissionSet.AddReactions,
|
|
|
|
PermissionSet.AttachFiles,
|
|
|
|
PermissionSet.EmbedLinks,
|
|
|
|
PermissionSet.ManageMessages,
|
|
|
|
PermissionSet.ManageWebhooks
|
|
|
|
};
|
|
|
|
|
2021-08-25 18:36:13 +00:00
|
|
|
public async Task PermCheckGuild(Context ctx)
|
|
|
|
{
|
|
|
|
Guild guild;
|
|
|
|
GuildMemberPartial senderGuildUser = null;
|
|
|
|
|
|
|
|
if (ctx.Guild != null && !ctx.HasNext())
|
|
|
|
{
|
|
|
|
guild = ctx.Guild;
|
|
|
|
senderGuildUser = ctx.Member;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var guildIdStr = ctx.RemainderOrNull() ?? throw new PKSyntaxError("You must pass a server ID or run this command in a server.");
|
|
|
|
if (!ulong.TryParse(guildIdStr, out var guildId))
|
|
|
|
throw new PKSyntaxError($"Could not parse {guildIdStr.AsCode()} as an ID.");
|
|
|
|
|
2021-08-27 15:03:47 +00:00
|
|
|
try
|
|
|
|
{
|
2021-08-25 18:36:13 +00:00
|
|
|
guild = await _rest.GetGuild(guildId);
|
2021-08-27 15:03:47 +00:00
|
|
|
}
|
|
|
|
catch (Myriad.Rest.Exceptions.ForbiddenException)
|
|
|
|
{
|
2021-08-25 18:36:13 +00:00
|
|
|
throw Errors.GuildNotFound(guildId);
|
|
|
|
}
|
2021-08-27 15:03:47 +00:00
|
|
|
|
|
|
|
if (guild != null)
|
2021-08-25 18:36:13 +00:00
|
|
|
senderGuildUser = await _rest.GetGuildMember(guildId, ctx.Author.Id);
|
2021-08-27 15:03:47 +00:00
|
|
|
if (guild == null || senderGuildUser == null)
|
2021-08-25 18:36:13 +00:00
|
|
|
throw Errors.GuildNotFound(guildId);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop through every channel and group them by sets of permissions missing
|
|
|
|
var permissionsMissing = new Dictionary<ulong, List<Channel>>();
|
2021-08-25 19:58:55 +00:00
|
|
|
var hiddenChannels = false;
|
|
|
|
var missingEmojiPermissions = false;
|
2021-08-25 18:36:13 +00:00
|
|
|
foreach (var channel in await _rest.GetGuildChannels(guild.Id))
|
|
|
|
{
|
|
|
|
var botPermissions = _bot.PermissionsIn(channel.Id);
|
2021-08-25 19:04:08 +00:00
|
|
|
var webhookPermissions = _cache.EveryonePermissions(channel);
|
2021-08-25 18:36:13 +00:00
|
|
|
var userPermissions = PermissionExtensions.PermissionsFor(guild, channel, ctx.Author.Id, senderGuildUser);
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2021-08-25 18:36:13 +00:00
|
|
|
if ((userPermissions & PermissionSet.ViewChannel) == 0)
|
|
|
|
{
|
|
|
|
// If the user can't see this channel, don't calculate permissions for it
|
|
|
|
// (to prevent info-leaking, mostly)
|
2021-08-25 19:58:55 +00:00
|
|
|
// Instead, show the user that some channels got ignored (so they don't get confused)
|
|
|
|
hiddenChannels = true;
|
2021-08-25 18:36:13 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We use a bitfield so we can set individual permission bits in the loop
|
|
|
|
// TODO: Rewrite with proper bitfield math
|
|
|
|
ulong missingPermissionField = 0;
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2021-08-25 18:36:13 +00:00
|
|
|
foreach (var requiredPermission in requiredPermissions)
|
|
|
|
if ((botPermissions & requiredPermission) == 0)
|
2021-08-27 15:03:47 +00:00
|
|
|
missingPermissionField |= (ulong)requiredPermission;
|
2021-08-25 19:58:55 +00:00
|
|
|
|
2021-08-25 19:04:08 +00:00
|
|
|
if ((webhookPermissions & PermissionSet.UseExternalEmojis) == 0)
|
2021-08-25 19:58:55 +00:00
|
|
|
{
|
2021-08-27 15:03:47 +00:00
|
|
|
missingPermissionField |= (ulong)PermissionSet.UseExternalEmojis;
|
2021-08-25 19:58:55 +00:00
|
|
|
missingEmojiPermissions = true;
|
|
|
|
}
|
2021-08-25 18:36:13 +00:00
|
|
|
|
|
|
|
// If we're not missing any permissions, don't bother adding it to the dict
|
|
|
|
// This means we can check if the dict is empty to see if all channels are proxyable
|
|
|
|
if (missingPermissionField != 0)
|
|
|
|
{
|
|
|
|
permissionsMissing.TryAdd(missingPermissionField, new List<Channel>());
|
|
|
|
permissionsMissing[missingPermissionField].Add(channel);
|
|
|
|
}
|
|
|
|
}
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2021-08-25 18:36:13 +00:00
|
|
|
// Generate the output embed
|
|
|
|
var eb = new EmbedBuilder()
|
|
|
|
.Title($"Permission check for **{guild.Name}**");
|
|
|
|
|
|
|
|
if (permissionsMissing.Count == 0)
|
|
|
|
{
|
|
|
|
eb.Description($"No errors found, all channels proxyable :)").Color(DiscordUtils.Green);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
foreach (var (missingPermissionField, channels) in permissionsMissing)
|
|
|
|
{
|
|
|
|
// Each missing permission field can have multiple missing channels
|
|
|
|
// so we extract them all and generate a comma-separated list
|
2021-08-27 15:03:47 +00:00
|
|
|
var missingPermissionNames = ((PermissionSet)missingPermissionField).ToPermissionString();
|
2021-08-25 19:04:08 +00:00
|
|
|
|
2021-08-25 18:36:13 +00:00
|
|
|
var channelsList = string.Join("\n", channels
|
|
|
|
.OrderBy(c => c.Position)
|
|
|
|
.Select(c => $"#{c.Name}"));
|
|
|
|
eb.Field(new($"Missing *{missingPermissionNames}*", channelsList.Truncate(1000)));
|
|
|
|
eb.Color(DiscordUtils.Red);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-25 19:58:55 +00:00
|
|
|
var footer = "";
|
|
|
|
if (hiddenChannels)
|
|
|
|
footer += "Some channels were ignored as you do not have view access to them.";
|
|
|
|
if (missingEmojiPermissions)
|
|
|
|
{
|
|
|
|
if (hiddenChannels) footer += " | ";
|
|
|
|
footer += "Use External Emojis permissions must be granted to the @everyone role / Default Permissions.";
|
|
|
|
}
|
2021-08-25 18:36:13 +00:00
|
|
|
|
2021-08-25 19:58:55 +00:00
|
|
|
if (footer.Length > 0)
|
|
|
|
eb.Footer(new(footer));
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2021-08-25 18:36:13 +00:00
|
|
|
// Send! :)
|
|
|
|
await ctx.Reply(embed: eb.Build());
|
2021-09-13 08:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public async Task PermCheckChannel(Context ctx)
|
|
|
|
{
|
2021-09-13 12:42:51 +00:00
|
|
|
if (!ctx.HasNext())
|
|
|
|
throw new PKSyntaxError("You need to specify a channel.");
|
|
|
|
|
|
|
|
var error = "Channel not found or you do not have permissions to access it.";
|
2021-09-13 08:21:03 +00:00
|
|
|
|
|
|
|
var channel = await ctx.MatchChannel();
|
|
|
|
if (channel == null || channel.GuildId == null)
|
|
|
|
throw new PKError(error);
|
|
|
|
|
|
|
|
var guild = _cache.GetGuild(channel.GuildId.Value);
|
|
|
|
if (guild == null)
|
|
|
|
throw new PKError(error);
|
|
|
|
|
|
|
|
var guildMember = await _rest.GetGuildMember(channel.GuildId.Value, ctx.Author.Id);
|
|
|
|
if (guildMember == null)
|
|
|
|
throw new PKError(error);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var botPermissions = _bot.PermissionsIn(channel.Id);
|
|
|
|
var webhookPermissions = _cache.EveryonePermissions(channel);
|
|
|
|
var userPermissions = PermissionExtensions.PermissionsFor(guild, channel, ctx.Author.Id, guildMember);
|
|
|
|
|
|
|
|
if ((userPermissions & PermissionSet.ViewChannel) == 0)
|
|
|
|
throw new PKError(error);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// We use a bitfield so we can set individual permission bits
|
|
|
|
ulong missingPermissions = 0;
|
|
|
|
|
|
|
|
foreach (var requiredPermission in requiredPermissions)
|
|
|
|
if ((botPermissions & requiredPermission) == 0)
|
|
|
|
missingPermissions |= (ulong)requiredPermission;
|
|
|
|
|
|
|
|
if ((webhookPermissions & PermissionSet.UseExternalEmojis) == 0)
|
|
|
|
missingPermissions |= (ulong)PermissionSet.UseExternalEmojis;
|
|
|
|
|
|
|
|
// Generate the output embed
|
|
|
|
var eb = new EmbedBuilder()
|
|
|
|
.Title($"Permission check for **{channel.Name}**");
|
|
|
|
|
|
|
|
if (missingPermissions == 0)
|
|
|
|
eb.Description("No issues found, channel is proxyable :)");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var missing = "";
|
|
|
|
|
|
|
|
foreach (var permission in requiredPermissions)
|
|
|
|
if (((ulong)permission & missingPermissions) == (ulong)permission)
|
|
|
|
missing += $"\n- **{permission.ToPermissionString()}**";
|
|
|
|
|
|
|
|
if (((ulong)PermissionSet.UseExternalEmojis & missingPermissions) == (ulong)PermissionSet.UseExternalEmojis)
|
|
|
|
missing += $"\n- **{PermissionSet.UseExternalEmojis.ToPermissionString()}**";
|
|
|
|
|
|
|
|
eb.Description($"Missing permissions:\n{missing}");
|
|
|
|
}
|
|
|
|
|
|
|
|
await ctx.Reply(embed: eb.Build());
|
2021-08-25 18:36:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public async Task MessageProxyCheck(Context ctx)
|
|
|
|
{
|
|
|
|
if (!ctx.HasNext() && ctx.Message.MessageReference == null)
|
2021-09-13 12:42:51 +00:00
|
|
|
throw new PKSyntaxError("You need to specify a message.");
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2021-08-25 18:36:13 +00:00
|
|
|
var failedToGetMessage = "Could not find a valid message to check, was not able to fetch the message, or the message was not sent by you.";
|
|
|
|
|
|
|
|
var (messageId, channelId) = ctx.MatchMessage(false);
|
|
|
|
if (messageId == null || channelId == null)
|
|
|
|
throw new PKError(failedToGetMessage);
|
|
|
|
|
|
|
|
await using var conn = await _db.Obtain();
|
|
|
|
|
|
|
|
var proxiedMsg = await _repo.GetMessage(conn, messageId.Value);
|
|
|
|
if (proxiedMsg != null)
|
|
|
|
{
|
|
|
|
await ctx.Reply($"{Emojis.Success} This message was proxied successfully.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the message info
|
|
|
|
var msg = ctx.Message;
|
2021-08-27 15:03:47 +00:00
|
|
|
try
|
2021-08-25 18:36:13 +00:00
|
|
|
{
|
|
|
|
msg = await _rest.GetMessage(channelId.Value, messageId.Value);
|
|
|
|
}
|
|
|
|
catch (ForbiddenException)
|
|
|
|
{
|
|
|
|
throw new PKError(failedToGetMessage);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if user is fetching a message in a different channel sent by someone else, throw a generic error message
|
|
|
|
if (msg == null || (msg.Author.Id != ctx.Author.Id && msg.ChannelId != ctx.Channel.Id))
|
|
|
|
throw new PKError(failedToGetMessage);
|
|
|
|
|
|
|
|
if ((_botConfig.Prefixes ?? BotConfig.DefaultPrefixes).Any(p => msg.Content.StartsWith(p)))
|
2021-09-13 12:42:51 +00:00
|
|
|
await ctx.Reply("This message starts with the bot's prefix, and was parsed as a command.");
|
2021-09-27 00:42:08 +00:00
|
|
|
if (msg.Author.Bot)
|
|
|
|
throw new PKError("You cannot check messages sent by a bot.");
|
2021-08-25 18:36:13 +00:00
|
|
|
if (msg.WebhookId != null)
|
2021-09-27 00:42:08 +00:00
|
|
|
throw new PKError("You cannot check messages sent by a webhook.");
|
|
|
|
if (msg.Author.Id != ctx.Author.Id && !ctx.CheckBotAdmin())
|
|
|
|
throw new PKError("You can only check your own messages.");
|
2021-08-25 18:36:13 +00:00
|
|
|
|
|
|
|
// get the channel info
|
|
|
|
var channel = _cache.GetChannel(channelId.Value);
|
|
|
|
if (channel == null)
|
|
|
|
throw new PKError("Unable to get the channel associated with this message.");
|
|
|
|
|
|
|
|
// using channel.GuildId here since _rest.GetMessage() doesn't return the GuildId
|
|
|
|
var context = await _repo.GetMessageContext(conn, msg.Author.Id, channel.GuildId.Value, msg.ChannelId);
|
|
|
|
var members = (await _repo.GetProxyMembers(conn, msg.Author.Id, channel.GuildId.Value)).ToList();
|
|
|
|
|
|
|
|
// Run everything through the checks, catch the ProxyCheckFailedException, and reply with the error message.
|
2021-08-27 15:03:47 +00:00
|
|
|
try
|
|
|
|
{
|
2021-08-25 18:36:13 +00:00
|
|
|
_proxy.ShouldProxy(channel, msg, context);
|
|
|
|
_matcher.TryMatch(context, members, out var match, msg.Content, msg.Attachments.Length > 0, context.AllowAutoproxy);
|
|
|
|
|
|
|
|
await ctx.Reply("I'm not sure why this message was not proxied, sorry.");
|
2021-08-27 15:03:47 +00:00
|
|
|
}
|
|
|
|
catch (ProxyService.ProxyChecksFailedException e)
|
2021-08-25 18:36:13 +00:00
|
|
|
{
|
|
|
|
await ctx.Reply($"{e.Message}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|