2020-06-12 18:29:50 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
using NodaTime;
|
|
|
|
|
|
|
|
|
|
using PluralKit.Core;
|
|
|
|
|
|
|
|
|
|
namespace PluralKit.Bot
|
|
|
|
|
{
|
|
|
|
|
public class ProxyMatcher
|
|
|
|
|
{
|
2020-06-24 14:48:55 +00:00
|
|
|
|
private static readonly char AutoproxyEscapeCharacter = '\\';
|
2020-06-13 20:20:24 +00:00
|
|
|
|
private static readonly Duration LatchExpiryTime = Duration.FromHours(6);
|
2020-06-12 18:29:50 +00:00
|
|
|
|
|
2020-06-13 20:20:24 +00:00
|
|
|
|
private readonly IClock _clock;
|
|
|
|
|
private readonly ProxyTagParser _parser;
|
2020-06-12 18:29:50 +00:00
|
|
|
|
|
|
|
|
|
public ProxyMatcher(ProxyTagParser parser, IClock clock)
|
|
|
|
|
{
|
|
|
|
|
_parser = parser;
|
|
|
|
|
_clock = clock;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-12 21:13:21 +00:00
|
|
|
|
public bool TryMatch(MessageContext ctx, IReadOnlyCollection<ProxyMember> members, out ProxyMatch match, string messageContent,
|
2020-06-12 18:29:50 +00:00
|
|
|
|
bool hasAttachments, bool allowAutoproxy)
|
|
|
|
|
{
|
|
|
|
|
if (TryMatchTags(members, messageContent, hasAttachments, out match)) return true;
|
2020-06-12 21:13:21 +00:00
|
|
|
|
if (allowAutoproxy && TryMatchAutoproxy(ctx, members, messageContent, out match)) return true;
|
2020-06-12 18:29:50 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool TryMatchTags(IReadOnlyCollection<ProxyMember> members, string messageContent, bool hasAttachments, out ProxyMatch match)
|
|
|
|
|
{
|
|
|
|
|
if (!_parser.TryMatch(members, messageContent, out match)) return false;
|
|
|
|
|
|
|
|
|
|
// Edge case: If we got a match with blank inner text, we'd normally just send w/ attachments
|
|
|
|
|
// However, if there are no attachments, the user probably intended something else, so we "un-match" and proceed to autoproxy
|
|
|
|
|
return hasAttachments || match.Content.Length > 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-12 21:13:21 +00:00
|
|
|
|
private bool TryMatchAutoproxy(MessageContext ctx, IReadOnlyCollection<ProxyMember> members, string messageContent,
|
2020-06-12 18:29:50 +00:00
|
|
|
|
out ProxyMatch match)
|
|
|
|
|
{
|
|
|
|
|
match = default;
|
|
|
|
|
|
2020-06-24 14:48:55 +00:00
|
|
|
|
// Skip autoproxy match if we hit the escape character
|
|
|
|
|
if (messageContent.StartsWith(AutoproxyEscapeCharacter))
|
|
|
|
|
return false;
|
|
|
|
|
|
2020-06-12 21:13:21 +00:00
|
|
|
|
// Find the member we should autoproxy (null if none)
|
|
|
|
|
var member = ctx.AutoproxyMode switch
|
2020-06-12 18:29:50 +00:00
|
|
|
|
{
|
2020-06-12 21:13:21 +00:00
|
|
|
|
AutoproxyMode.Member when ctx.AutoproxyMember != null =>
|
|
|
|
|
members.FirstOrDefault(m => m.Id == ctx.AutoproxyMember),
|
|
|
|
|
|
2020-06-14 19:37:04 +00:00
|
|
|
|
AutoproxyMode.Front when ctx.LastSwitchMembers.Length > 0 =>
|
2020-06-12 21:13:21 +00:00
|
|
|
|
members.FirstOrDefault(m => m.Id == ctx.LastSwitchMembers[0]),
|
|
|
|
|
|
|
|
|
|
AutoproxyMode.Latch when ctx.LastMessageMember != null && !IsLatchExpired(ctx.LastMessage) =>
|
|
|
|
|
members.FirstOrDefault(m => m.Id == ctx.LastMessageMember.Value),
|
|
|
|
|
|
|
|
|
|
_ => null
|
|
|
|
|
};
|
2020-06-12 18:29:50 +00:00
|
|
|
|
|
2020-06-12 21:13:21 +00:00
|
|
|
|
if (member == null) return false;
|
2020-06-12 18:29:50 +00:00
|
|
|
|
match = new ProxyMatch
|
|
|
|
|
{
|
|
|
|
|
Content = messageContent,
|
2020-06-12 21:13:21 +00:00
|
|
|
|
Member = member,
|
|
|
|
|
|
2020-06-12 18:29:50 +00:00
|
|
|
|
// We're autoproxying, so not using any proxy tags here
|
|
|
|
|
// we just find the first pair of tags (if any), otherwise null
|
2020-06-12 21:13:21 +00:00
|
|
|
|
ProxyTags = member.ProxyTags.FirstOrDefault()
|
2020-06-12 18:29:50 +00:00
|
|
|
|
};
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2020-06-12 21:13:21 +00:00
|
|
|
|
|
|
|
|
|
private bool IsLatchExpired(ulong? messageId)
|
|
|
|
|
{
|
|
|
|
|
if (messageId == null) return true;
|
|
|
|
|
var timestamp = DiscordUtils.SnowflakeToInstant(messageId.Value);
|
|
|
|
|
return _clock.GetCurrentInstant() - timestamp > LatchExpiryTime;
|
|
|
|
|
}
|
2020-06-12 18:29:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|