Preserve Gmail user label casing

This commit is contained in:
Burak Kaan Köse
2026-04-15 12:16:03 +02:00
parent 1a1d69be56
commit 999d8cde73
2 changed files with 43 additions and 18 deletions
@@ -14,27 +14,32 @@ namespace Wino.Core.Extensions;
public static class GoogleIntegratorExtensions
{
private static string GetNormalizedLabelName(string labelName)
private static bool TryGetKnownFolderLabelName(string labelName, out string normalizedLabelName)
{
// 1. Remove CATEGORY_ prefix.
var normalizedLabelName = labelName.Replace(ServiceConstants.CATEGORY_PREFIX, string.Empty);
normalizedLabelName = string.Empty;
// 2. Normalize label name by capitalizing first letter.
normalizedLabelName = char.ToUpper(normalizedLabelName[0]) + normalizedLabelName.Substring(1).ToLower();
if (string.IsNullOrEmpty(labelName))
return false;
return normalizedLabelName;
var knownFolderKey = labelName.Replace(ServiceConstants.CATEGORY_PREFIX, string.Empty);
if (!ServiceConstants.KnownFolderDictionary.ContainsKey(knownFolderKey))
return false;
normalizedLabelName = char.ToUpper(knownFolderKey[0]) + knownFolderKey.Substring(1).ToLower();
return true;
}
public static MailItemFolder GetLocalFolder(this Label label, ListLabelsResponse labelsResponse, Guid accountId)
{
var normalizedLabelName = GetFolderName(label.Name);
var folderName = GetFolderName(label.Name);
// Even though we normalize the label name, check is done by capitalizing the label name.
var capitalNormalizedLabelName = normalizedLabelName.ToUpper();
var lookupLabelName = GetLookupLabelName(label.Name);
bool isSpecialFolder = ServiceConstants.KnownFolderDictionary.ContainsKey(capitalNormalizedLabelName);
bool isSpecialFolder = ServiceConstants.KnownFolderDictionary.ContainsKey(lookupLabelName);
var specialFolderType = isSpecialFolder ? ServiceConstants.KnownFolderDictionary[capitalNormalizedLabelName] : SpecialFolderType.Other;
var specialFolderType = isSpecialFolder ? ServiceConstants.KnownFolderDictionary[lookupLabelName] : SpecialFolderType.Other;
// We used to support FOLDER_HIDE_IDENTIFIER to hide invisible folders.
// However, a lot of people complained that they don't see their folders after the initial sync
@@ -59,7 +64,7 @@ public static class GoogleIntegratorExtensions
{
TextColorHex = label.Color?.TextColor,
BackgroundColorHex = label.Color?.BackgroundColor,
FolderName = normalizedLabelName,
FolderName = folderName,
RemoteFolderId = label.Id,
Id = Guid.NewGuid(),
MailAccountId = accountId,
@@ -104,7 +109,29 @@ public static class GoogleIntegratorExtensions
return labelsResponse.Labels.FirstOrDefault(a => a.Name == parentLabelName)?.Id ?? string.Empty;
}
public static string GetLookupLabelName(string fullFolderName)
{
var folderName = GetLastFolderName(fullFolderName);
if (string.IsNullOrEmpty(folderName))
return string.Empty;
return folderName.Replace(ServiceConstants.CATEGORY_PREFIX, string.Empty);
}
public static string GetFolderName(string fullFolderName)
{
var lastPart = GetLastFolderName(fullFolderName);
if (string.IsNullOrEmpty(lastPart))
return string.Empty;
return TryGetKnownFolderLabelName(lastPart, out var normalizedLabelName)
? normalizedLabelName
: lastPart;
}
private static string GetLastFolderName(string fullFolderName)
{
if (string.IsNullOrEmpty(fullFolderName)) return string.Empty;
@@ -113,9 +140,7 @@ public static class GoogleIntegratorExtensions
string[] parts = fullFolderName.Split(ServiceConstants.FOLDER_SEPERATOR_CHAR);
var lastPart = parts[parts.Length - 1];
return GetNormalizedLabelName(lastPart);
return parts[parts.Length - 1];
}
public static List<RemoteAccountAlias> GetRemoteAliases(this ListSendAsResponse response)
+3 -3
View File
@@ -904,7 +904,7 @@ public class GmailSynchronizer : WinoSynchronizer<IClientServiceRequest, Message
if (ShouldUpdateFolder(remoteFolder, existingLocalFolder))
{
existingLocalFolder.FolderName = remoteFolder.Name;
existingLocalFolder.FolderName = GoogleIntegratorExtensions.GetFolderName(remoteFolder.Name);
existingLocalFolder.TextColorHex = remoteFolder.Color?.TextColor;
existingLocalFolder.BackgroundColorHex = remoteFolder.Color?.BackgroundColor;
@@ -998,9 +998,9 @@ public class GmailSynchronizer : WinoSynchronizer<IClientServiceRequest, Message
private bool ShouldUpdateFolder(Label remoteFolder, MailItemFolder existingLocalFolder)
{
var remoteFolderName = GoogleIntegratorExtensions.GetFolderName(remoteFolder.Name);
var localFolderName = GoogleIntegratorExtensions.GetFolderName(existingLocalFolder.FolderName);
var localFolderName = existingLocalFolder.FolderName ?? string.Empty;
bool isNameChanged = !localFolderName.Equals(remoteFolderName, StringComparison.OrdinalIgnoreCase);
bool isNameChanged = !localFolderName.Equals(remoteFolderName, StringComparison.Ordinal);
bool isColorChanged = existingLocalFolder.BackgroundColorHex != remoteFolder.Color?.BackgroundColor ||
existingLocalFolder.TextColorHex != remoteFolder.Color?.TextColor;