2021-04-21 21:57:19 +00:00
|
|
|
using System;
|
2021-08-01 16:51:54 +00:00
|
|
|
using System.Text.RegularExpressions;
|
2021-04-21 21:57:19 +00:00
|
|
|
|
|
|
|
namespace PluralKit.Core
|
|
|
|
{
|
|
|
|
public static class MiscUtils
|
|
|
|
{
|
|
|
|
public static bool TryMatchUri(string input, out Uri uri)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
uri = new Uri(input);
|
2021-08-27 15:03:47 +00:00
|
|
|
if (!uri.IsAbsoluteUri || (uri.Scheme != "http" && uri.Scheme != "https"))
|
2021-04-21 21:57:19 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
catch (UriFormatException)
|
|
|
|
{
|
|
|
|
uri = null;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2021-08-01 16:51:54 +00:00
|
|
|
|
|
|
|
// discord mediaproxy URLs used to be stored directly in the database, so now we cleanup image urls before using them outside of proxying
|
|
|
|
private static readonly Regex MediaProxyUrl = new Regex(@"^https?://media.discordapp.net/attachments/(\d{17,19})/(\d{17,19})/([^/\\&\?]+)\.(png|jpg|jpeg|webp)(\?.*)?$");
|
|
|
|
private static readonly string DiscordCdnReplacement = "https://cdn.discordapp.com/attachments/$1/$2/$3.$4";
|
2021-08-02 10:22:28 +00:00
|
|
|
public static string? TryGetCleanCdnUrl(this string? url)
|
|
|
|
{
|
|
|
|
return url == null ? null : MediaProxyUrl.Replace(url, DiscordCdnReplacement);
|
|
|
|
}
|
2021-04-21 21:57:19 +00:00
|
|
|
}
|
|
|
|
}
|