Files
archived-discord-bot/CompatBot/EventHandlers/UsernameZalgoMonitor.cs
2021-03-27 03:22:30 +05:00

178 lines
7.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CompatApiClient.Utils;
using CompatBot.Database;
using CompatBot.Utils;
using DSharpPlus;
using DSharpPlus.Entities;
using DSharpPlus.EventArgs;
namespace CompatBot.EventHandlers
{
public static class UsernameZalgoMonitor
{
private static readonly HashSet<char> OversizedChars = new()
{
'꧁', '꧂', '⎝', '⎠', '', '', '⎛', '⎞', '﷽', '⸻', 'ဪ', '꧅', '꧄',
};
private static readonly List<string> OversizedLiterals = new()
{
"𒐫", "𒈙",
};
public static async Task OnUserUpdated(DiscordClient c, UserUpdateEventArgs args)
{
try
{
if (c.GetMember(args.UserAfter) is DiscordMember m
&& NeedsRename(m.DisplayName))
{
var suggestedName = StripZalgo(m.DisplayName, m.Id).Sanitize();
await c.ReportAsync("🔣 Potential display name issue",
$"User {m.GetMentionWithNickname()} has changed their __username__ and is now shown as **{m.DisplayName.Sanitize()}**\nAutomatically renamed to: **{suggestedName}**",
null,
ReportSeverity.Low);
await DmAndRenameUserAsync(c, m, suggestedName).ConfigureAwait(false);
}
}
catch (Exception e)
{
Config.Log.Error(e);
}
}
public static async Task OnMemberUpdated(DiscordClient c, GuildMemberUpdateEventArgs args)
{
try
{
//member object most likely will not be updated in client cache at this moment
var name = args.NicknameAfter ?? args.Member.Username;
var member = await args.Guild.GetMemberAsync(args.Member.Id).ConfigureAwait(false) ?? args.Member;
if (NeedsRename(name))
{
var suggestedName = StripZalgo(name, args.Member.Id).Sanitize();
await c.ReportAsync("🔣 Potential display name issue",
$"Member {member.GetMentionWithNickname()} has changed their __display name__ and is now shown as **{name.Sanitize()}**\nAutomatically renamed to: **{suggestedName}**",
null,
ReportSeverity.Low);
await DmAndRenameUserAsync(c, member, suggestedName).ConfigureAwait(false);
}
}
catch (Exception e)
{
Config.Log.Error(e);
}
}
public static async Task OnMemberAdded(DiscordClient c, GuildMemberAddEventArgs args)
{
try
{
var name = args.Member.DisplayName;
if (NeedsRename(name))
{
var suggestedName = StripZalgo(name, args.Member.Id).Sanitize();
await c.ReportAsync("🔣 Potential display name issue",
$"New member joined the server: {args.Member.GetMentionWithNickname()} and is shown as **{name.Sanitize()}**\nAutomatically renamed to: **{suggestedName}**",
null,
ReportSeverity.Low);
await DmAndRenameUserAsync(c, args.Member, suggestedName).ConfigureAwait(false);
}
}
catch (Exception e)
{
Config.Log.Error(e);
}
}
public static bool NeedsRename(string displayName)
{
displayName = displayName.Normalize().TrimEager();
return displayName != StripZalgo(displayName, 0ul, NormalizationForm.FormC, 3);
}
private static async Task DmAndRenameUserAsync(DiscordClient client, DiscordMember member, string suggestedName)
{
try
{
var renameTask = member.ModifyAsync(m => m.Nickname = suggestedName);
Config.Log.Info($"Renamed {member.Username}#{member.Discriminator} ({member.Id}) to {suggestedName}");
var rulesChannel = await client.GetChannelAsync(Config.BotRulesChannelId).ConfigureAwait(false);
var msg = $"Hello, your current _display name_ is breaking {rulesChannel.Mention} #7, so you have been renamed to `{suggestedName}.\n" +
"I'm not perfect and can't clean all the junk in names in some cases, so change your nickname at your discretion.\n" +
"You can change your _display name_ by clicking on the server name at the top left and selecting **Change Nickname**.";
var dm = await member.CreateDmChannelAsync().ConfigureAwait(false);
await dm.SendMessageAsync(msg).ConfigureAwait(false);
await renameTask.ConfigureAwait(false);
}
catch (Exception e)
{
Config.Log.Warn(e);
}
}
public static string StripZalgo(string displayName, ulong userId, NormalizationForm normalizationForm = NormalizationForm.FormD, int level = 0)
{
displayName = displayName.Normalize(normalizationForm).TrimEager();
foreach (var literal in OversizedLiterals)
displayName = displayName.Replace(literal, "");
if (string.IsNullOrEmpty(displayName))
return GenerateRandomName(userId);
var builder = new StringBuilder();
bool skipLowSurrogate = false;
int consecutive = 0;
foreach (var c in displayName)
{
switch (char.GetUnicodeCategory(c))
{
case UnicodeCategory.ModifierSymbol:
case UnicodeCategory.NonSpacingMark:
if (++consecutive < level)
builder.Append(c);
break;
case UnicodeCategory.Control:
case UnicodeCategory.Format:
break;
case UnicodeCategory.OtherNotAssigned when c >= 0xdb40:
skipLowSurrogate = true;
break;
default:
if (char.IsLowSurrogate(c) && skipLowSurrogate)
skipLowSurrogate = false;
else
{
if (!OversizedChars.Contains(c))
builder.Append(c);
consecutive = 0;
}
break;
}
}
var result = builder.ToString().TrimEager();
if (string.IsNullOrEmpty(result))
return GenerateRandomName(userId);
return result;
}
public static string GenerateRandomName(ulong userId)
{
var hash = userId.GetHashCode();
var rng = new Random(hash);
using var db = new ThumbnailDb();
var count = db.NamePool.Count();
var name = db.NamePool.Skip(rng.Next(count)).First().Name;
return name + Config.RenameNameSuffix;
}
}
}