2019-10-05 05:41:00 +00:00
|
|
|
using System;
|
2020-02-06 16:47:37 +00:00
|
|
|
using System.Linq;
|
2019-10-05 05:41:00 +00:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
2019-12-21 20:51:41 +00:00
|
|
|
using App.Metrics;
|
|
|
|
|
2020-01-26 00:27:45 +00:00
|
|
|
using Autofac;
|
|
|
|
|
2019-10-05 05:41:00 +00:00
|
|
|
using Discord;
|
|
|
|
using Discord.WebSocket;
|
|
|
|
|
2020-02-12 14:16:19 +00:00
|
|
|
using PluralKit.Core;
|
2019-10-05 05:41:00 +00:00
|
|
|
|
2020-02-12 14:16:19 +00:00
|
|
|
namespace PluralKit.Bot
|
2019-10-05 05:41:00 +00:00
|
|
|
{
|
|
|
|
public class Context
|
|
|
|
{
|
2020-01-26 00:27:45 +00:00
|
|
|
private ILifetimeScope _provider;
|
2019-10-05 05:41:00 +00:00
|
|
|
|
|
|
|
private readonly DiscordShardedClient _client;
|
|
|
|
private readonly SocketUserMessage _message;
|
|
|
|
private readonly Parameters _parameters;
|
|
|
|
|
2019-10-26 17:45:30 +00:00
|
|
|
private readonly IDataStore _data;
|
2019-10-05 05:41:00 +00:00
|
|
|
private readonly PKSystem _senderSystem;
|
2019-12-21 20:51:41 +00:00
|
|
|
private readonly IMetrics _metrics;
|
2019-10-05 05:41:00 +00:00
|
|
|
|
|
|
|
private Command _currentCommand;
|
|
|
|
|
2020-01-26 00:27:45 +00:00
|
|
|
public Context(ILifetimeScope provider, SocketUserMessage message, int commandParseOffset,
|
2019-10-05 05:41:00 +00:00
|
|
|
PKSystem senderSystem)
|
|
|
|
{
|
2020-01-26 00:27:45 +00:00
|
|
|
_client = provider.Resolve<DiscordShardedClient>();
|
2019-10-05 05:41:00 +00:00
|
|
|
_message = message;
|
2020-01-26 00:27:45 +00:00
|
|
|
_data = provider.Resolve<IDataStore>();
|
2019-10-05 05:41:00 +00:00
|
|
|
_senderSystem = senderSystem;
|
2020-01-26 00:27:45 +00:00
|
|
|
_metrics = provider.Resolve<IMetrics>();
|
2019-10-05 05:41:00 +00:00
|
|
|
_provider = provider;
|
|
|
|
_parameters = new Parameters(message.Content.Substring(commandParseOffset));
|
|
|
|
}
|
|
|
|
|
|
|
|
public IUser Author => _message.Author;
|
|
|
|
public IMessageChannel Channel => _message.Channel;
|
|
|
|
public IUserMessage Message => _message;
|
|
|
|
public IGuild Guild => (_message.Channel as ITextChannel)?.Guild;
|
|
|
|
public DiscordSocketClient Shard => _client.GetShardFor(Guild);
|
|
|
|
public DiscordShardedClient Client => _client;
|
|
|
|
public PKSystem System => _senderSystem;
|
|
|
|
|
|
|
|
public string PopArgument() => _parameters.Pop();
|
|
|
|
public string PeekArgument() => _parameters.Peek();
|
|
|
|
public string Remainder() => _parameters.Remainder();
|
|
|
|
public string RemainderOrNull() => Remainder().Trim().Length == 0 ? null : Remainder();
|
|
|
|
public bool HasNext() => RemainderOrNull() != null;
|
|
|
|
public string FullCommand => _parameters.FullCommand;
|
|
|
|
|
|
|
|
public Task<IUserMessage> Reply(string text = null, Embed embed = null) =>
|
|
|
|
Channel.SendMessageAsync(text, embed: embed);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Checks if the next parameter is equal to one of the given keywords. Case-insensitive.
|
|
|
|
/// </summary>
|
2020-01-11 15:49:20 +00:00
|
|
|
public bool Match(ref string used, params string[] potentialMatches)
|
2019-10-05 05:41:00 +00:00
|
|
|
{
|
2020-02-06 16:47:37 +00:00
|
|
|
var arg = PeekArgument();
|
2019-10-05 05:41:00 +00:00
|
|
|
foreach (var match in potentialMatches)
|
|
|
|
{
|
2020-02-06 16:47:37 +00:00
|
|
|
if (arg.Equals(match, StringComparison.InvariantCultureIgnoreCase))
|
2019-10-05 05:41:00 +00:00
|
|
|
{
|
2020-01-11 15:49:20 +00:00
|
|
|
used = PopArgument();
|
2019-10-05 05:41:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-11 15:49:20 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Checks if the next parameter is equal to one of the given keywords. Case-insensitive.
|
|
|
|
/// </summary>
|
|
|
|
public bool Match(params string[] potentialMatches)
|
|
|
|
{
|
|
|
|
string used = null; // Unused and unreturned, we just yeet it
|
|
|
|
return Match(ref used, potentialMatches);
|
|
|
|
}
|
2020-02-06 16:47:37 +00:00
|
|
|
|
|
|
|
public bool MatchFlag(params string[] potentialMatches)
|
|
|
|
{
|
|
|
|
// Flags are *ALWAYS PARSED LOWERCASE*. This means we skip out on a "ToLower" call here.
|
|
|
|
// Can assume the caller array only contains lowercase *and* the set below only contains lowercase
|
|
|
|
|
|
|
|
var flags = _parameters.Flags();
|
|
|
|
return potentialMatches.Any(potentialMatch => flags.Contains(potentialMatch));
|
|
|
|
}
|
2020-01-11 15:49:20 +00:00
|
|
|
|
2019-10-05 05:41:00 +00:00
|
|
|
public async Task Execute<T>(Command commandDef, Func<T, Task> handler)
|
|
|
|
{
|
|
|
|
_currentCommand = commandDef;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2020-01-26 00:27:45 +00:00
|
|
|
await handler(_provider.Resolve<T>());
|
2019-12-21 20:51:41 +00:00
|
|
|
_metrics.Measure.Meter.Mark(BotMetrics.CommandsRun);
|
2019-10-05 05:41:00 +00:00
|
|
|
}
|
|
|
|
catch (PKSyntaxError e)
|
|
|
|
{
|
2019-12-28 11:16:26 +00:00
|
|
|
await Reply($"{Emojis.Error} {e.Message}\n**Command usage:**\n> pk;{commandDef.Usage}");
|
2019-10-05 05:41:00 +00:00
|
|
|
}
|
|
|
|
catch (PKError e)
|
|
|
|
{
|
|
|
|
await Reply($"{Emojis.Error} {e.Message}");
|
|
|
|
}
|
2019-10-26 17:45:30 +00:00
|
|
|
catch (TimeoutException)
|
2019-10-22 17:31:40 +00:00
|
|
|
{
|
|
|
|
// Got a complaint the old error was a bit too patronizing. Hopefully this is better?
|
|
|
|
await Reply($"{Emojis.Error} Operation timed out, sorry. Try again, perhaps?");
|
|
|
|
}
|
2019-10-05 05:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<IUser> MatchUser()
|
|
|
|
{
|
|
|
|
var text = PeekArgument();
|
|
|
|
if (MentionUtils.TryParseUser(text, out var id))
|
|
|
|
return await Shard.Rest.GetUserAsync(id); // TODO: this should properly fetch
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-01-25 17:08:35 +00:00
|
|
|
public bool MatchUserRaw(out ulong id)
|
|
|
|
{
|
|
|
|
id = 0;
|
|
|
|
|
|
|
|
var text = PeekArgument();
|
|
|
|
if (MentionUtils.TryParseUser(text, out var mentionId))
|
|
|
|
id = mentionId;
|
|
|
|
else if (ulong.TryParse(text, out var rawId))
|
|
|
|
id = rawId;
|
|
|
|
|
|
|
|
return id != 0;
|
|
|
|
}
|
|
|
|
|
2019-10-05 05:41:00 +00:00
|
|
|
public Task<PKSystem> PeekSystem() => MatchSystemInner();
|
|
|
|
|
|
|
|
public async Task<PKSystem> MatchSystem()
|
|
|
|
{
|
|
|
|
var system = await MatchSystemInner();
|
|
|
|
if (system != null) PopArgument();
|
|
|
|
return system;
|
|
|
|
}
|
|
|
|
|
|
|
|
private async Task<PKSystem> MatchSystemInner()
|
|
|
|
{
|
|
|
|
var input = PeekArgument();
|
|
|
|
|
|
|
|
// System references can take three forms:
|
|
|
|
// - The direct user ID of an account connected to the system
|
|
|
|
// - A @mention of an account connected to the system (<@uid>)
|
|
|
|
// - A system hid
|
|
|
|
|
|
|
|
// Direct IDs and mentions are both handled by the below method:
|
|
|
|
if (input.TryParseMention(out var id))
|
2019-10-26 17:45:30 +00:00
|
|
|
return await _data.GetSystemByAccount(id);
|
2019-10-05 05:41:00 +00:00
|
|
|
|
|
|
|
// Finally, try HID parsing
|
2019-10-26 17:45:30 +00:00
|
|
|
var system = await _data.GetSystemByHid(input);
|
2019-10-05 05:41:00 +00:00
|
|
|
return system;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<PKMember> PeekMember()
|
|
|
|
{
|
|
|
|
var input = PeekArgument();
|
|
|
|
|
|
|
|
// Member references can have one or two forms, depending on
|
|
|
|
// whether you're in a system or not:
|
|
|
|
// - A member hid
|
|
|
|
// - A textual name of a member *in your own system*
|
|
|
|
|
2019-10-27 19:48:48 +00:00
|
|
|
// First, if we have a system, try finding by member name in system
|
2019-10-26 17:45:30 +00:00
|
|
|
if (_senderSystem != null && await _data.GetMemberByName(_senderSystem, input) is PKMember memberByName)
|
2019-10-05 05:41:00 +00:00
|
|
|
return memberByName;
|
|
|
|
|
2019-10-27 19:48:48 +00:00
|
|
|
// Then, try member HID parsing:
|
|
|
|
if (await _data.GetMemberByHid(input) is PKMember memberByHid)
|
|
|
|
return memberByHid;
|
|
|
|
|
2019-10-05 05:41:00 +00:00
|
|
|
// We didn't find anything, so we return null.
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Attempts to pop a member descriptor from the stack, returning it if present. If a member could not be
|
|
|
|
/// resolved by the next word in the argument stack, does *not* touch the stack, and returns null.
|
|
|
|
/// </summary>
|
|
|
|
public async Task<PKMember> MatchMember()
|
|
|
|
{
|
|
|
|
// First, peek a member
|
|
|
|
var member = await PeekMember();
|
|
|
|
|
|
|
|
// If the peek was successful, we've used up the next argument, so we pop that just to get rid of it.
|
|
|
|
if (member != null) PopArgument();
|
|
|
|
|
|
|
|
// Finally, we return the member value.
|
|
|
|
return member;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string CreateMemberNotFoundError(string input)
|
|
|
|
{
|
|
|
|
// TODO: does this belong here?
|
|
|
|
if (input.Length == 5)
|
|
|
|
{
|
|
|
|
if (_senderSystem != null)
|
2019-10-18 11:14:36 +00:00
|
|
|
return $"Member with ID or name \"{input.SanitizeMentions()}\" not found.";
|
|
|
|
return $"Member with ID \"{input.SanitizeMentions()}\" not found."; // Accounts without systems can't query by name
|
2019-10-05 05:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (_senderSystem != null)
|
2019-10-18 11:14:36 +00:00
|
|
|
return $"Member with name \"{input.SanitizeMentions()}\" not found. Note that a member ID is 5 characters long.";
|
2019-10-05 05:41:00 +00:00
|
|
|
return $"Member not found. Note that a member ID is 5 characters long.";
|
|
|
|
}
|
|
|
|
|
|
|
|
public Context CheckSystem()
|
|
|
|
{
|
|
|
|
if (_senderSystem == null)
|
|
|
|
throw Errors.NoSystemError;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Context CheckNoSystem()
|
|
|
|
{
|
|
|
|
if (_senderSystem != null)
|
|
|
|
throw Errors.ExistingSystemError;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Context CheckOwnMember(PKMember member)
|
|
|
|
{
|
|
|
|
if (member.System != _senderSystem.Id)
|
|
|
|
throw Errors.NotOwnMemberError;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public GuildPermissions GetGuildPermissions(IUser user)
|
|
|
|
{
|
2020-02-01 14:00:36 +00:00
|
|
|
if (user is IGuildUser gu)
|
|
|
|
return gu.GuildPermissions;
|
2019-10-05 05:41:00 +00:00
|
|
|
if (Channel is SocketGuildChannel gc)
|
|
|
|
return gc.GetUser(user.Id).GuildPermissions;
|
|
|
|
return GuildPermissions.None;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ChannelPermissions GetChannelPermissions(IUser user)
|
|
|
|
{
|
2020-02-01 14:00:36 +00:00
|
|
|
if (user is IGuildUser gu && Channel is IGuildChannel igc)
|
|
|
|
return gu.GetPermissions(igc);
|
2019-10-05 05:41:00 +00:00
|
|
|
if (Channel is SocketGuildChannel gc)
|
|
|
|
return gc.GetUser(user.Id).GetPermissions(gc);
|
|
|
|
return ChannelPermissions.DM;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Context CheckAuthorPermission(GuildPermission permission, string permissionName)
|
|
|
|
{
|
|
|
|
if (!GetGuildPermissions(Author).Has(permission))
|
|
|
|
throw new PKError($"You must have the \"{permissionName}\" permission in this server to use this command.");
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Context CheckAuthorPermission(ChannelPermission permission, string permissionName)
|
|
|
|
{
|
|
|
|
if (!GetChannelPermissions(Author).Has(permission))
|
|
|
|
throw new PKError($"You must have the \"{permissionName}\" permission in this server to use this command.");
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Context CheckGuildContext()
|
|
|
|
{
|
|
|
|
if (Channel is IGuildChannel) return this;
|
|
|
|
throw new PKError("This command can not be run in a DM.");
|
|
|
|
}
|
|
|
|
|
2020-01-11 15:49:20 +00:00
|
|
|
public LookupContext LookupContextFor(PKSystem target) =>
|
|
|
|
System?.Id == target.Id ? LookupContext.ByOwner : LookupContext.ByNonOwner;
|
|
|
|
|
|
|
|
public Context CheckSystemPrivacy(PKSystem target, PrivacyLevel level)
|
|
|
|
{
|
|
|
|
if (level.CanAccess(LookupContextFor(target))) return this;
|
|
|
|
throw new PKError("You do not have permission to access this information.");
|
|
|
|
}
|
|
|
|
|
2019-10-05 05:41:00 +00:00
|
|
|
public ITextChannel MatchChannel()
|
|
|
|
{
|
|
|
|
if (!MentionUtils.TryParseChannel(PeekArgument(), out var channel)) return null;
|
|
|
|
if (!(_client.GetChannel(channel) is ITextChannel textChannel)) return null;
|
|
|
|
|
|
|
|
PopArgument();
|
|
|
|
return textChannel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|