Refactor system/member avatar code
This commit is contained in:
71
PluralKit.Bot/Commands/Avatars/ContextAvatarExt.cs
Normal file
71
PluralKit.Bot/Commands/Avatars/ContextAvatarExt.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
#nullable enable
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
using DSharpPlus;
|
||||
using DSharpPlus.Entities;
|
||||
|
||||
namespace PluralKit.Bot
|
||||
{
|
||||
public static class ContextAvatarExt
|
||||
{
|
||||
// Rewrite cdn.discordapp.com URLs to media.discordapp.net for jpg/png files
|
||||
// This lets us add resizing parameters to "borrow" their media proxy server to downsize the image
|
||||
// which in turn makes it more likely to be underneath the size limit!
|
||||
private static readonly Regex DiscordCdnUrl = new Regex(@"^https?://(?:cdn\.discordapp\.com|media\.discordapp\.net)/attachments/(\d{17,19})/(\d{17,19})/([^\.?/]+)\.(png|jpg|jpeg).*");
|
||||
private static readonly string DiscordMediaUrlReplacement = "https://media.discordapp.net/attachments/$1/$2/$3.$4?width=256&height=256";
|
||||
|
||||
public static async Task<ParsedImage?> MatchImage(this Context ctx)
|
||||
{
|
||||
// If we have a user @mention/ID, use their avatar
|
||||
if (await ctx.MatchUser() is { } user)
|
||||
{
|
||||
var url = user.GetAvatarUrl(ImageFormat.Png, 256);
|
||||
return new ParsedImage {Url = url, Source = AvatarSource.User, SourceUser = user};
|
||||
}
|
||||
|
||||
// If we have a positional argument, try to parse it as a URL
|
||||
var arg = ctx.RemainderOrNull();
|
||||
if (arg != null)
|
||||
{
|
||||
if (!Uri.TryCreate(arg, UriKind.Absolute, out var uri))
|
||||
throw Errors.InvalidUrl(arg);
|
||||
|
||||
if (uri.Scheme != "http" && uri.Scheme != "https")
|
||||
throw Errors.InvalidUrl(arg);
|
||||
|
||||
return new ParsedImage {Url = TryRewriteCdnUrl(uri.ToString()), Source = AvatarSource.Url};
|
||||
}
|
||||
|
||||
// If we have an attachment, use that
|
||||
if (ctx.Message.Attachments.FirstOrDefault() is {} attachment)
|
||||
{
|
||||
var url = TryRewriteCdnUrl(attachment.ProxyUrl);
|
||||
return new ParsedImage {Url = url, Source = AvatarSource.Attachment};
|
||||
}
|
||||
|
||||
// We should only get here if there are no arguments (which would get parsed as URL + throw if error)
|
||||
// and if there are no attachments (which would have been caught just before)
|
||||
return null;
|
||||
}
|
||||
|
||||
private static string TryRewriteCdnUrl(string url) =>
|
||||
DiscordCdnUrl.Replace(url, DiscordMediaUrlReplacement);
|
||||
}
|
||||
|
||||
public struct ParsedImage
|
||||
{
|
||||
public string Url;
|
||||
public AvatarSource Source;
|
||||
public DiscordUser? SourceUser;
|
||||
}
|
||||
|
||||
public enum AvatarSource
|
||||
{
|
||||
Url,
|
||||
User,
|
||||
Attachment
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user