Files
archived-discord-bot/CompatBot/Utils/EmbedPager.cs

116 lines
4.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
using CompatApiClient.Utils;
using DSharpPlus.Entities;
namespace CompatBot.Utils
{
internal class EmbedPager
{
public const int MaxDescriptionLength = 2048;
public const int MaxFieldLength = 1024;
public const int MaxFieldTitleLength = 256;
public const int MaxFields = 25;
public IEnumerable<DiscordEmbed> BreakInEmbeds(DiscordEmbedBuilder builder, IEnumerable<string> lines, int maxLinesPerField = 10)
{
var fieldCount = 0;
foreach (var field in BreakInFieldContent(lines, maxLinesPerField))
{
if (fieldCount == MaxFields)
{
yield return builder.Build();
builder.ClearFields();
fieldCount = 0;
}
builder.AddField(field.title.Trim(MaxFieldTitleLength).ToUpperInvariant(), field.content, true);
fieldCount++;
}
if (fieldCount > 0)
yield return builder.Build();
}
public IEnumerable<(string title, string content)> BreakInFieldContent(IEnumerable<string> lines, int maxLinesPerField = 10, Func<string, string, string> makeTitle = null)
{
if (maxLinesPerField < 1)
throw new ArgumentException("Expected a number greater than 0, but was " + maxLinesPerField, nameof(maxLinesPerField));
makeTitle = makeTitle ?? MakeTitle;
var buffer = new StringBuilder();
var lineCount = 0;
string firstLine = null;
string lastLine = null;
foreach (var line in lines)
{
if (string.IsNullOrEmpty(firstLine))
firstLine = line;
if (lineCount == maxLinesPerField)
{
yield return (makeTitle(firstLine, lastLine), buffer.ToString());
buffer.Clear();
lineCount = 0;
firstLine = line;
}
if (buffer.Length + line.Length + Environment.NewLine.Length > MaxFieldLength)
{
if (buffer.Length + line.Length > MaxFieldLength)
{
if (buffer.Length == 0)
yield return (makeTitle(line, line), line.Trim(MaxFieldLength));
else
{
yield return (makeTitle(firstLine, lastLine), buffer.ToString());
buffer.Clear().Append(line);
lineCount = 1;
firstLine = line;
}
}
else
{
yield return (makeTitle(firstLine, line), buffer.Append(line).ToString());
buffer.Clear();
lineCount = 0;
}
}
else
{
if (buffer.Length > 0)
buffer.AppendLine();
buffer.Append(line);
lineCount++;
lastLine = line;
}
}
if (buffer.Length > 0)
yield return (makeTitle(firstLine, lastLine), buffer.ToString());
}
private static string MakeTitle(string first, string last)
{
if (string.IsNullOrEmpty(first) || string.IsNullOrEmpty(last))
return first + last;
if (first == last)
return first.Substring(0, 1);
if (last.StartsWith(first))
return $"{first} - {last}";
var commonPrefix = "";
var maxPrefixSize = Math.Min(Math.Min(first.Length, last.Length), MaxFieldTitleLength/2);
for (var i = 0; i < maxPrefixSize; i++)
{
if (first[i] == last[i])
commonPrefix += first[i];
else
return $"{(commonPrefix + first[i]).TrimEnd()}-{(commonPrefix + last[i]).TrimEnd()}";
}
return commonPrefix;
}
}
}