638 lines
28 KiB
C#
638 lines
28 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.ComponentModel;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using CommunityToolkit.Mvvm.Input;
|
|
using CommunityToolkit.Mvvm.Messaging;
|
|
using Wino.Core.Domain;
|
|
using Wino.Core.Domain.Entities.Calendar;
|
|
using Wino.Core.Domain.Entities.Shared;
|
|
using Wino.Core.Domain.Enums;
|
|
using Wino.Core.Domain.Extensions;
|
|
using Wino.Core.Domain.Interfaces;
|
|
using Wino.Core.Domain.Models.Accounts;
|
|
using Wino.Core.Domain.Models.Folders;
|
|
using Wino.Core.Domain.Models.Navigation;
|
|
using Wino.Core.Domain.Models.Synchronization;
|
|
using Wino.Core.Misc;
|
|
using Wino.Core.Services;
|
|
using Wino.Core.ViewModels.Data;
|
|
using Wino.Mail.ViewModels.Data;
|
|
using Wino.Messaging.Client.Navigation;
|
|
|
|
namespace Wino.Mail.ViewModels;
|
|
|
|
public partial class AccountDetailsPageViewModel : MailBaseViewModel
|
|
{
|
|
private readonly IMailDialogService _dialogService;
|
|
private readonly IAccountService _accountService;
|
|
private readonly IFolderService _folderService;
|
|
private readonly ICalendarService _calendarService;
|
|
private readonly IStatePersistanceService _statePersistanceService;
|
|
private readonly INewThemeService _themeService;
|
|
private readonly IImapTestService _imapTestService;
|
|
private bool isLoaded = false;
|
|
|
|
[ObservableProperty]
|
|
public partial MailAccount Account { get; set; }
|
|
public ObservableCollection<IMailItemFolder> CurrentFolders { get; set; } = [];
|
|
public ObservableCollection<AccountCalendar> AccountCalendars { get; set; } = [];
|
|
public ObservableCollection<AccountCalendarSettingsItemViewModel> AccountCalendarSettingsItems { get; } = [];
|
|
public ObservableCollection<AccountCalendarShowAsOption> ShowAsOptions { get; } = [];
|
|
|
|
[ObservableProperty]
|
|
public partial AccountCalendar SelectedPrimaryCalendar { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial int SelectedTabIndex { get; set; } = 0; // Default to Mail tab
|
|
|
|
[ObservableProperty]
|
|
public partial string AccountName { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial string SenderName { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial AppColorViewModel SelectedColor { get; set; }
|
|
|
|
[ObservableProperty]
|
|
[NotifyPropertyChangedFor(nameof(IsImapServer))]
|
|
public partial CustomServerInformation ServerInformation { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial List<AppColorViewModel> AvailableColors { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial int SelectedIncomingServerConnectionSecurityIndex { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial int SelectedIncomingServerAuthenticationMethodIndex { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial int SelectedOutgoingServerConnectionSecurityIndex { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial int SelectedOutgoingServerAuthenticationMethodIndex { get; set; }
|
|
|
|
// Mail-related properties
|
|
[ObservableProperty]
|
|
private bool isFocusedInboxEnabled;
|
|
|
|
[ObservableProperty]
|
|
private bool areNotificationsEnabled;
|
|
|
|
[ObservableProperty]
|
|
private bool isSignatureEnabled;
|
|
|
|
[ObservableProperty]
|
|
private bool isAppendMessageSettingVisible;
|
|
|
|
[ObservableProperty]
|
|
private bool isAppendMessageSettinEnabled;
|
|
|
|
[ObservableProperty]
|
|
private bool isTaskbarBadgeEnabled;
|
|
|
|
[ObservableProperty]
|
|
public partial AccountCapabilityOption SelectedCapabilityOption { get; set; }
|
|
|
|
public bool IsFocusedInboxSupportedForAccount => Account != null && Account.Preferences.IsFocusedInboxEnabled != null;
|
|
public bool IsImapServer => ServerInformation != null;
|
|
public bool HasMailAccess => Account?.IsMailAccessGranted == true;
|
|
public bool HasCalendarAccess => Account?.IsCalendarAccessGranted == true;
|
|
public bool IsOAuthCapabilityEditable => Account?.ProviderType is MailProviderType.Outlook or MailProviderType.Gmail;
|
|
public string ProviderIconPath => Account?.SpecialImapProvider != SpecialImapProvider.None
|
|
? $"ms-appx:///Assets/Providers/{Account.SpecialImapProvider}.png"
|
|
: $"ms-appx:///Assets/Providers/{Account?.ProviderType}.png";
|
|
public string Address => Account?.Address ?? string.Empty;
|
|
public bool IsInitialSynchronizationSummaryVisible => Account?.CreatedAt.HasValue == true && Account.InitialSynchronizationRange != InitialSynchronizationRange.Everything;
|
|
public string InitialSynchronizationSummary => Account?.CreatedAt is not DateTime createdAtUtc
|
|
? string.Empty
|
|
: Account.InitialSynchronizationRange.ToCutoffDateUtc(createdAtUtc) is not DateTime cutoffDateUtc
|
|
? string.Empty
|
|
: string.Format(
|
|
Translator.AccountDetailsPage_InitialSynchronization_Description,
|
|
cutoffDateUtc.ToLocalTime().ToString("D", CultureInfo.CurrentUICulture));
|
|
|
|
public List<ImapAuthenticationMethodModel> AvailableAuthenticationMethods { get; } =
|
|
[
|
|
new ImapAuthenticationMethodModel(Core.Domain.Enums.ImapAuthenticationMethod.Auto, Translator.ImapAuthenticationMethod_Auto),
|
|
new ImapAuthenticationMethodModel(Core.Domain.Enums.ImapAuthenticationMethod.None, Translator.ImapAuthenticationMethod_None),
|
|
new ImapAuthenticationMethodModel(Core.Domain.Enums.ImapAuthenticationMethod.NormalPassword, Translator.ImapAuthenticationMethod_Plain),
|
|
new ImapAuthenticationMethodModel(Core.Domain.Enums.ImapAuthenticationMethod.EncryptedPassword, Translator.ImapAuthenticationMethod_EncryptedPassword),
|
|
new ImapAuthenticationMethodModel(Core.Domain.Enums.ImapAuthenticationMethod.Ntlm, Translator.ImapAuthenticationMethod_Ntlm),
|
|
new ImapAuthenticationMethodModel(Core.Domain.Enums.ImapAuthenticationMethod.CramMd5, Translator.ImapAuthenticationMethod_CramMD5),
|
|
new ImapAuthenticationMethodModel(Core.Domain.Enums.ImapAuthenticationMethod.DigestMd5, Translator.ImapAuthenticationMethod_DigestMD5)
|
|
];
|
|
|
|
public List<ImapConnectionSecurityModel> AvailableConnectionSecurities { get; set; } =
|
|
[
|
|
new ImapConnectionSecurityModel(Core.Domain.Enums.ImapConnectionSecurity.Auto, Translator.ImapConnectionSecurity_Auto),
|
|
new ImapConnectionSecurityModel(Core.Domain.Enums.ImapConnectionSecurity.SslTls, Translator.ImapConnectionSecurity_SslTls),
|
|
new ImapConnectionSecurityModel(Core.Domain.Enums.ImapConnectionSecurity.StartTls, Translator.ImapConnectionSecurity_StartTls),
|
|
new ImapConnectionSecurityModel(Core.Domain.Enums.ImapConnectionSecurity.None, Translator.ImapConnectionSecurity_None)
|
|
];
|
|
|
|
public List<AccountCapabilityOption> CapabilityOptions { get; } =
|
|
[
|
|
new(true, false, Translator.AccountCapability_MailOnly),
|
|
new(false, true, Translator.AccountCapability_CalendarOnly),
|
|
new(true, true, Translator.AccountCapability_MailAndCalendar)
|
|
];
|
|
|
|
|
|
public AccountDetailsPageViewModel(IMailDialogService dialogService,
|
|
IAccountService accountService,
|
|
IFolderService folderService,
|
|
ICalendarService calendarService,
|
|
IStatePersistanceService statePersistanceService,
|
|
INewThemeService themeService,
|
|
IImapTestService imapTestService)
|
|
{
|
|
_dialogService = dialogService;
|
|
_accountService = accountService;
|
|
_folderService = folderService;
|
|
_calendarService = calendarService;
|
|
_statePersistanceService = statePersistanceService;
|
|
_themeService = themeService;
|
|
_imapTestService = imapTestService;
|
|
|
|
var colorHexList = _themeService.GetAvailableAccountColors();
|
|
AvailableColors = colorHexList.Select(a => new AppColorViewModel(a)).ToList();
|
|
|
|
ShowAsOptions.Add(new AccountCalendarShowAsOption(CalendarItemShowAs.Free, Translator.CalendarShowAs_Free));
|
|
ShowAsOptions.Add(new AccountCalendarShowAsOption(CalendarItemShowAs.Tentative, Translator.CalendarShowAs_Tentative));
|
|
ShowAsOptions.Add(new AccountCalendarShowAsOption(CalendarItemShowAs.Busy, Translator.CalendarShowAs_Busy));
|
|
ShowAsOptions.Add(new AccountCalendarShowAsOption(CalendarItemShowAs.OutOfOffice, Translator.CalendarShowAs_OutOfOffice));
|
|
ShowAsOptions.Add(new AccountCalendarShowAsOption(CalendarItemShowAs.WorkingElsewhere, Translator.CalendarShowAs_WorkingElsewhere));
|
|
}
|
|
|
|
[RelayCommand]
|
|
private Task SetupSpecialFolders()
|
|
=> _dialogService.HandleSystemFolderConfigurationDialogAsync(Account.Id, _folderService);
|
|
|
|
[RelayCommand]
|
|
private void EditSignature()
|
|
=> Messenger.Send(new BreadcrumbNavigationRequested(Translator.SettingsSignature_Title, WinoPage.SignatureManagementPage, Account.Id));
|
|
|
|
[RelayCommand]
|
|
private void EditAliases()
|
|
=> Messenger.Send(new BreadcrumbNavigationRequested(Translator.SettingsManageAliases_Title, WinoPage.AliasManagementPage, Account.Id));
|
|
|
|
[RelayCommand]
|
|
private void EditCategories()
|
|
=> Messenger.Send(new BreadcrumbNavigationRequested(Translator.MailCategoryManagementPage_Title, WinoPage.MailCategoryManagementPage, Account.Id));
|
|
|
|
[RelayCommand]
|
|
private void CustomizeFolderList()
|
|
=> Messenger.Send(new BreadcrumbNavigationRequested(Translator.FolderCustomization_Title, WinoPage.FolderCustomizationPage, Account.Id));
|
|
|
|
[RelayCommand]
|
|
private void EditImapCalDavSettings()
|
|
=> Messenger.Send(new BreadcrumbNavigationRequested(
|
|
Translator.ImapCalDavSettingsPage_TitleEdit,
|
|
WinoPage.ImapCalDavSettingsPage,
|
|
ImapCalDavSettingsNavigationContext.CreateForEditMode(Account.Id)));
|
|
|
|
[RelayCommand]
|
|
private async Task SaveChangesAsync()
|
|
{
|
|
await UpdateAccountAsync();
|
|
|
|
_dialogService.InfoBarMessage(Translator.EditAccountDetailsPage_SaveSuccess_Title, Translator.EditAccountDetailsPage_SaveSuccess_Message, InfoBarMessageType.Success);
|
|
}
|
|
|
|
[RelayCommand]
|
|
private async Task DeleteAccountAsync()
|
|
{
|
|
if (Account == null)
|
|
return;
|
|
|
|
var confirmation = await _dialogService.ShowConfirmationDialogAsync(Translator.DialogMessage_DeleteAccountConfirmationTitle,
|
|
string.Format(Translator.DialogMessage_DeleteAccountConfirmationMessage, Account.Name),
|
|
Translator.Buttons_Delete);
|
|
|
|
if (!confirmation)
|
|
return;
|
|
|
|
await SynchronizationManager.Instance.DestroySynchronizerAsync(Account.Id);
|
|
await _accountService.DeleteAccountAsync(Account);
|
|
|
|
_dialogService.InfoBarMessage(Translator.Info_AccountDeletedTitle, string.Format(Translator.Info_AccountDeletedMessage, Account.Name), InfoBarMessageType.Success);
|
|
|
|
Messenger.Send(new BackBreadcrumNavigationRequested());
|
|
}
|
|
|
|
[RelayCommand]
|
|
private async Task ValidateImapSettingsAsync()
|
|
{
|
|
try
|
|
{
|
|
await _imapTestService.TestImapConnectionAsync(ServerInformation, true);
|
|
_dialogService.InfoBarMessage(Translator.IMAPSetupDialog_ValidationSuccess_Title, Translator.IMAPSetupDialog_ValidationSuccess_Message, InfoBarMessageType.Success);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_dialogService.InfoBarMessage(Translator.IMAPSetupDialog_ValidationFailed_Title, ex.Message, InfoBarMessageType.Error);
|
|
}
|
|
}
|
|
|
|
[RelayCommand]
|
|
private async Task UpdateCustomServerInformationAsync()
|
|
{
|
|
if (ServerInformation != null)
|
|
{
|
|
ServerInformation.IncomingAuthenticationMethod = AvailableAuthenticationMethods[SelectedIncomingServerAuthenticationMethodIndex].ImapAuthenticationMethod;
|
|
ServerInformation.IncomingServerSocketOption = AvailableConnectionSecurities[SelectedIncomingServerConnectionSecurityIndex].ImapConnectionSecurity;
|
|
|
|
ServerInformation.OutgoingAuthenticationMethod = AvailableAuthenticationMethods[SelectedOutgoingServerAuthenticationMethodIndex].ImapAuthenticationMethod;
|
|
ServerInformation.OutgoingServerSocketOption = AvailableConnectionSecurities[SelectedOutgoingServerConnectionSecurityIndex].ImapConnectionSecurity;
|
|
|
|
Account.ServerInformation = ServerInformation;
|
|
}
|
|
|
|
await _accountService.UpdateAccountCustomServerInformationAsync(Account.ServerInformation);
|
|
|
|
_dialogService.InfoBarMessage(Translator.IMAPSetupDialog_SaveImapSuccess_Title, Translator.IMAPSetupDialog_SaveImapSuccess_Message, InfoBarMessageType.Success);
|
|
}
|
|
|
|
public Task FolderSyncToggledAsync(IMailItemFolder folderStructure, bool isEnabled)
|
|
=> _folderService.ChangeFolderSynchronizationStateAsync(folderStructure.Id, isEnabled);
|
|
|
|
public Task FolderShowUnreadToggled(IMailItemFolder folderStructure, bool isEnabled)
|
|
=> _folderService.ChangeFolderShowUnreadCountStateAsync(folderStructure.Id, isEnabled);
|
|
|
|
public override async void OnNavigatedTo(NavigationMode mode, object parameters)
|
|
{
|
|
base.OnNavigatedTo(mode, parameters);
|
|
|
|
if (parameters is Guid accountId)
|
|
{
|
|
Account = await _accountService.GetAccountAsync(accountId);
|
|
AccountName = Account.Name;
|
|
SenderName = Account.SenderName;
|
|
ServerInformation = Account.ServerInformation;
|
|
SelectedCapabilityOption = ResolveCapabilityOption(Account.IsMailAccessGranted, Account.IsCalendarAccessGranted);
|
|
|
|
IsFocusedInboxEnabled = Account.Preferences.IsFocusedInboxEnabled.GetValueOrDefault();
|
|
AreNotificationsEnabled = Account.Preferences.IsNotificationsEnabled;
|
|
IsSignatureEnabled = Account.Preferences.IsSignatureEnabled;
|
|
|
|
IsAppendMessageSettingVisible = Account.ProviderType == MailProviderType.IMAP4;
|
|
IsAppendMessageSettinEnabled = Account.Preferences.ShouldAppendMessagesToSentFolder;
|
|
IsTaskbarBadgeEnabled = Account.Preferences.IsTaskbarBadgeEnabled;
|
|
|
|
if (!string.IsNullOrEmpty(Account.AccountColorHex))
|
|
{
|
|
SelectedColor = AvailableColors.FirstOrDefault(a => a.Hex == Account.AccountColorHex);
|
|
}
|
|
else
|
|
{
|
|
SelectedColor = null;
|
|
}
|
|
|
|
if (ServerInformation != null)
|
|
{
|
|
SelectedIncomingServerAuthenticationMethodIndex = AvailableAuthenticationMethods.FindIndex(a => a.ImapAuthenticationMethod == ServerInformation.IncomingAuthenticationMethod);
|
|
SelectedIncomingServerConnectionSecurityIndex = AvailableConnectionSecurities.FindIndex(a => a.ImapConnectionSecurity == ServerInformation.IncomingServerSocketOption);
|
|
SelectedOutgoingServerAuthenticationMethodIndex = AvailableAuthenticationMethods.FindIndex(a => a.ImapAuthenticationMethod == ServerInformation.OutgoingAuthenticationMethod);
|
|
SelectedOutgoingServerConnectionSecurityIndex = AvailableConnectionSecurities.FindIndex(a => a.ImapConnectionSecurity == ServerInformation.OutgoingServerSocketOption);
|
|
}
|
|
|
|
SelectedTabIndex = _statePersistanceService.ApplicationMode == WinoApplicationMode.Calendar && HasCalendarAccess
|
|
? 2
|
|
: HasMailAccess
|
|
? 1
|
|
: 0;
|
|
|
|
var folderStructures = (await _folderService.GetFolderStructureForAccountAsync(Account.Id, true)).Folders;
|
|
|
|
await ExecuteUIThread(() =>
|
|
{
|
|
CurrentFolders.Clear();
|
|
|
|
foreach (var folder in folderStructures)
|
|
{
|
|
CurrentFolders.Add(folder);
|
|
}
|
|
});
|
|
|
|
// Load calendar list
|
|
await LoadAccountCalendarsAsync();
|
|
|
|
isLoaded = true;
|
|
}
|
|
}
|
|
|
|
private Task UpdateAccountAsync()
|
|
{
|
|
Account.Name = AccountName;
|
|
Account.SenderName = SenderName;
|
|
Account.AccountColorHex = SelectedColor?.Hex ?? string.Empty;
|
|
|
|
return _accountService.UpdateAccountAsync(Account);
|
|
}
|
|
|
|
private async Task LoadAccountCalendarsAsync()
|
|
{
|
|
var calendars = await _calendarService.GetAccountCalendarsAsync(Account.Id);
|
|
|
|
await ExecuteUIThread(() =>
|
|
{
|
|
AccountCalendars.Clear();
|
|
AccountCalendarSettingsItems.Clear();
|
|
|
|
foreach (var calendar in calendars)
|
|
{
|
|
AccountCalendars.Add(calendar);
|
|
AccountCalendarSettingsItems.Add(new AccountCalendarSettingsItemViewModel(calendar, ShowAsOptions, AvailableColors));
|
|
}
|
|
});
|
|
|
|
SelectedPrimaryCalendar = AccountCalendars.FirstOrDefault(calendar => calendar.IsPrimary) ?? AccountCalendars.FirstOrDefault();
|
|
}
|
|
|
|
public AccountCalendarShowAsOption GetShowAsOption(CalendarItemShowAs showAs)
|
|
=> ShowAsOptions.FirstOrDefault(option => option.ShowAs == showAs) ?? ShowAsOptions.First();
|
|
|
|
public async Task UpdateCalendarSynchronizationAsync(AccountCalendar calendar, bool isEnabled)
|
|
{
|
|
if (calendar == null || calendar.IsSynchronizationEnabled == isEnabled)
|
|
return;
|
|
|
|
calendar.IsSynchronizationEnabled = isEnabled;
|
|
await _calendarService.UpdateAccountCalendarAsync(calendar);
|
|
}
|
|
|
|
public async Task UpdateCalendarDefaultShowAsAsync(AccountCalendar calendar, AccountCalendarShowAsOption option)
|
|
{
|
|
if (calendar == null || option == null || calendar.DefaultShowAs == option.ShowAs)
|
|
return;
|
|
|
|
calendar.DefaultShowAs = option.ShowAs;
|
|
await _calendarService.UpdateAccountCalendarAsync(calendar);
|
|
}
|
|
|
|
public async Task UpdateCalendarColorAsync(AccountCalendarSettingsItemViewModel calendarItem, AppColorViewModel color)
|
|
{
|
|
if (calendarItem?.Calendar == null || color == null || calendarItem.Calendar.BackgroundColorHex == color.Hex)
|
|
return;
|
|
|
|
calendarItem.SetBackgroundColor(color);
|
|
calendarItem.Calendar.IsBackgroundColorUserOverridden = true;
|
|
await _calendarService.UpdateAccountCalendarAsync(calendarItem.Calendar);
|
|
}
|
|
|
|
[RelayCommand]
|
|
private void ResetColor()
|
|
=> SelectedColor = null;
|
|
|
|
partial void OnSelectedColorChanged(AppColorViewModel oldValue, AppColorViewModel newValue)
|
|
{
|
|
if (Account != null)
|
|
{
|
|
_ = UpdateAccountAsync();
|
|
}
|
|
}
|
|
|
|
partial void OnAccountChanged(MailAccount value)
|
|
{
|
|
SelectedCapabilityOption = ResolveCapabilityOption(value?.IsMailAccessGranted == true, value?.IsCalendarAccessGranted == true);
|
|
OnPropertyChanged(nameof(IsFocusedInboxSupportedForAccount));
|
|
OnPropertyChanged(nameof(ProviderIconPath));
|
|
OnPropertyChanged(nameof(Address));
|
|
OnPropertyChanged(nameof(IsInitialSynchronizationSummaryVisible));
|
|
OnPropertyChanged(nameof(InitialSynchronizationSummary));
|
|
OnPropertyChanged(nameof(HasMailAccess));
|
|
OnPropertyChanged(nameof(HasCalendarAccess));
|
|
OnPropertyChanged(nameof(IsOAuthCapabilityEditable));
|
|
}
|
|
|
|
protected override async void OnPropertyChanged(PropertyChangedEventArgs e)
|
|
{
|
|
base.OnPropertyChanged(e);
|
|
|
|
if (!isLoaded) return;
|
|
|
|
switch (e.PropertyName)
|
|
{
|
|
case nameof(IsFocusedInboxEnabled) when IsFocusedInboxSupportedForAccount:
|
|
Account.Preferences.IsFocusedInboxEnabled = IsFocusedInboxEnabled;
|
|
await _accountService.UpdateAccountAsync(Account);
|
|
break;
|
|
case nameof(AreNotificationsEnabled):
|
|
Account.Preferences.IsNotificationsEnabled = AreNotificationsEnabled;
|
|
await _accountService.UpdateAccountAsync(Account);
|
|
break;
|
|
case nameof(IsAppendMessageSettinEnabled):
|
|
Account.Preferences.ShouldAppendMessagesToSentFolder = IsAppendMessageSettinEnabled;
|
|
await _accountService.UpdateAccountAsync(Account);
|
|
break;
|
|
case nameof(IsSignatureEnabled):
|
|
Account.Preferences.IsSignatureEnabled = IsSignatureEnabled;
|
|
await _accountService.UpdateAccountAsync(Account);
|
|
break;
|
|
case nameof(IsTaskbarBadgeEnabled):
|
|
Account.Preferences.IsTaskbarBadgeEnabled = IsTaskbarBadgeEnabled;
|
|
await _accountService.UpdateAccountAsync(Account);
|
|
break;
|
|
case nameof(SelectedCapabilityOption) when IsOAuthCapabilityEditable && SelectedCapabilityOption != null:
|
|
if (Account.IsMailAccessGranted == SelectedCapabilityOption.IsMailAccessGranted &&
|
|
Account.IsCalendarAccessGranted == SelectedCapabilityOption.IsCalendarAccessGranted)
|
|
break;
|
|
|
|
try
|
|
{
|
|
await UpdateOAuthCapabilityAsync(SelectedCapabilityOption);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
await ExecuteUIThread(() => SelectedCapabilityOption = ResolveCapabilityOption(Account.IsMailAccessGranted, Account.IsCalendarAccessGranted));
|
|
_dialogService.InfoBarMessage(Translator.GeneralTitle_Error, ex.Message, InfoBarMessageType.Error);
|
|
}
|
|
break;
|
|
case nameof(SelectedPrimaryCalendar) when SelectedPrimaryCalendar != null:
|
|
foreach (var calendar in AccountCalendars)
|
|
{
|
|
calendar.IsPrimary = calendar.Id == SelectedPrimaryCalendar.Id;
|
|
}
|
|
|
|
await _calendarService.SetPrimaryCalendarAsync(Account.Id, SelectedPrimaryCalendar.Id);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private AccountCapabilityOption ResolveCapabilityOption(bool isMailAccessGranted, bool isCalendarAccessGranted)
|
|
=> CapabilityOptions.First(option =>
|
|
option.IsMailAccessGranted == isMailAccessGranted &&
|
|
option.IsCalendarAccessGranted == isCalendarAccessGranted);
|
|
|
|
private async Task UpdateOAuthCapabilityAsync(AccountCapabilityOption selectedOption)
|
|
{
|
|
var previousMailAccess = Account.IsMailAccessGranted;
|
|
var previousCalendarAccess = Account.IsCalendarAccessGranted;
|
|
var requiresReauthorization = (selectedOption.IsMailAccessGranted && !previousMailAccess) ||
|
|
(selectedOption.IsCalendarAccessGranted && !previousCalendarAccess);
|
|
|
|
try
|
|
{
|
|
if (requiresReauthorization)
|
|
{
|
|
Account.IsMailAccessGranted = selectedOption.IsMailAccessGranted;
|
|
Account.IsCalendarAccessGranted = selectedOption.IsCalendarAccessGranted;
|
|
|
|
await SynchronizationManager.Instance.HandleAuthorizationAsync(
|
|
Account.ProviderType,
|
|
Account,
|
|
Account.ProviderType == MailProviderType.Gmail);
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
Account.IsMailAccessGranted = previousMailAccess;
|
|
Account.IsCalendarAccessGranted = previousCalendarAccess;
|
|
throw;
|
|
}
|
|
|
|
Account.IsMailAccessGranted = selectedOption.IsMailAccessGranted;
|
|
Account.IsCalendarAccessGranted = selectedOption.IsCalendarAccessGranted;
|
|
|
|
await _accountService.UpdateAccountAsync(Account);
|
|
|
|
if (selectedOption.IsMailAccessGranted && !previousMailAccess)
|
|
{
|
|
await SynchronizationManager.Instance.SynchronizeProfileAsync(Account.Id);
|
|
await SynchronizationManager.Instance.SynchronizeMailAsync(new MailSynchronizationOptions
|
|
{
|
|
AccountId = Account.Id,
|
|
Type = MailSynchronizationType.FullFolders
|
|
});
|
|
|
|
if (Account.ProviderType == MailProviderType.Outlook)
|
|
{
|
|
await SynchronizationManager.Instance.SynchronizeMailAsync(new MailSynchronizationOptions
|
|
{
|
|
AccountId = Account.Id,
|
|
Type = MailSynchronizationType.Categories
|
|
});
|
|
}
|
|
|
|
if (!string.IsNullOrWhiteSpace(Account.Address))
|
|
{
|
|
var aliases = await _accountService.GetAccountAliasesAsync(Account.Id);
|
|
var hasRootAlias = aliases.Any(alias => alias.IsRootAlias);
|
|
|
|
if (!hasRootAlias)
|
|
{
|
|
await _accountService.CreateRootAliasAsync(Account.Id, Account.Address);
|
|
}
|
|
}
|
|
|
|
await SynchronizationManager.Instance.SynchronizeMailAsync(new MailSynchronizationOptions
|
|
{
|
|
AccountId = Account.Id,
|
|
Type = MailSynchronizationType.Alias
|
|
});
|
|
}
|
|
|
|
if (selectedOption.IsCalendarAccessGranted && !previousCalendarAccess)
|
|
{
|
|
await SynchronizationManager.Instance.SynchronizeCalendarAsync(new CalendarSynchronizationOptions
|
|
{
|
|
AccountId = Account.Id,
|
|
Type = CalendarSynchronizationType.CalendarMetadata
|
|
});
|
|
}
|
|
|
|
var refreshedAccount = await _accountService.GetAccountAsync(Account.Id);
|
|
|
|
await ExecuteUIThread(() =>
|
|
{
|
|
Account = refreshedAccount;
|
|
AccountName = refreshedAccount.Name;
|
|
SenderName = refreshedAccount.SenderName;
|
|
EnsureSelectedTabForCapabilities();
|
|
});
|
|
}
|
|
|
|
private void EnsureSelectedTabForCapabilities()
|
|
{
|
|
if (SelectedTabIndex == 1 && !HasMailAccess)
|
|
{
|
|
SelectedTabIndex = HasCalendarAccess ? 2 : 0;
|
|
}
|
|
else if (SelectedTabIndex == 2 && !HasCalendarAccess)
|
|
{
|
|
SelectedTabIndex = HasMailAccess ? 1 : 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
public sealed class AccountCalendarShowAsOption
|
|
{
|
|
public CalendarItemShowAs ShowAs { get; }
|
|
public string DisplayText { get; }
|
|
|
|
public AccountCalendarShowAsOption(CalendarItemShowAs showAs, string displayText)
|
|
{
|
|
ShowAs = showAs;
|
|
DisplayText = displayText;
|
|
}
|
|
}
|
|
|
|
public sealed class AccountCapabilityOption
|
|
{
|
|
public bool IsMailAccessGranted { get; }
|
|
public bool IsCalendarAccessGranted { get; }
|
|
public string DisplayText { get; }
|
|
|
|
public AccountCapabilityOption(bool isMailAccessGranted, bool isCalendarAccessGranted, string displayText)
|
|
{
|
|
IsMailAccessGranted = isMailAccessGranted;
|
|
IsCalendarAccessGranted = isCalendarAccessGranted;
|
|
DisplayText = displayText;
|
|
}
|
|
}
|
|
|
|
public partial class AccountCalendarSettingsItemViewModel : ObservableObject
|
|
{
|
|
public AccountCalendar Calendar { get; }
|
|
public ObservableCollection<AccountCalendarShowAsOption> ShowAsOptions { get; }
|
|
public List<AppColorViewModel> AvailableColors { get; }
|
|
|
|
public string Name => Calendar.Name;
|
|
public string TimeZone => Calendar.TimeZone;
|
|
public string BackgroundColorHex => Calendar.BackgroundColorHex;
|
|
|
|
[ObservableProperty]
|
|
public partial bool IsSynchronizationEnabled { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial AccountCalendarShowAsOption SelectedShowAsOption { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial AppColorViewModel SelectedColor { get; set; }
|
|
|
|
public AccountCalendarSettingsItemViewModel(AccountCalendar calendar, ObservableCollection<AccountCalendarShowAsOption> showAsOptions, List<AppColorViewModel> availableColors)
|
|
{
|
|
Calendar = calendar;
|
|
ShowAsOptions = showAsOptions;
|
|
AvailableColors = availableColors;
|
|
IsSynchronizationEnabled = calendar.IsSynchronizationEnabled;
|
|
SelectedShowAsOption = showAsOptions.FirstOrDefault(option => option.ShowAs == calendar.DefaultShowAs) ?? showAsOptions.FirstOrDefault();
|
|
SelectedColor = availableColors.FirstOrDefault(color => string.Equals(color.Hex, calendar.BackgroundColorHex, StringComparison.OrdinalIgnoreCase))
|
|
?? new AppColorViewModel(calendar.BackgroundColorHex ?? ColorHelpers.GenerateFlatColorHex());
|
|
}
|
|
|
|
public void SetBackgroundColor(AppColorViewModel color)
|
|
{
|
|
SelectedColor = color;
|
|
Calendar.BackgroundColorHex = color.Hex;
|
|
OnPropertyChanged(nameof(BackgroundColorHex));
|
|
}
|
|
}
|