DocSpace-client/common/ASC.Common/Utils/MimeHeaderUtils.cs

47 lines
1.4 KiB
C#
Raw Normal View History

namespace ASC.Common.Utils;
public static class MimeHeaderUtils
2019-05-15 14:56:09 +00:00
{
2022-02-08 11:07:28 +00:00
public static string EncodeMime(string mimeHeaderValue)
{
return EncodeMime(mimeHeaderValue, Encoding.UTF8, false);
}
2019-05-15 14:56:09 +00:00
public static string EncodeMime(string mimeHeaderValue, Encoding charset, bool split)
{
if (MustEncode(mimeHeaderValue))
2019-05-15 14:56:09 +00:00
{
var result = new StringBuilder();
var data = charset.GetBytes(mimeHeaderValue);
var maxEncodedTextSize = split ? 75 - ("=?" + charset.WebName + "?" + "B"/*Base64 encode*/ + "?" + "?=").Length : int.MaxValue;
2019-05-15 14:56:09 +00:00
result.Append("=?" + charset.WebName + "?B?");
var stored = 0;
var base64 = Convert.ToBase64String(data);
for (var i = 0; i < base64.Length; i += 4)
{
// Encoding buffer full, create new encoded-word.
if (stored + 4 > maxEncodedTextSize)
2019-05-15 14:56:09 +00:00
{
result.Append("?=\r\n =?" + charset.WebName + "?B?");
stored = 0;
2019-05-15 14:56:09 +00:00
}
result.Append(base64, i, 4);
stored += 4;
2019-05-15 14:56:09 +00:00
}
result.Append("?=");
return result.ToString();
}
2022-02-08 11:07:28 +00:00
return mimeHeaderValue;
2019-05-15 14:56:09 +00:00
}
2022-02-08 11:07:28 +00:00
public static bool MustEncode(string text)
{
return !string.IsNullOrEmpty(text) && text.Any(c => c > 127);
}
}