* Separation of messages. Introducing Wino.Messages library. * Wino.Server and Wino.Packaging projects. Enabling full trust for UWP and app service connection manager basics. * Remove debug code. * Enable generating assembly info to deal with unsupported os platform warnings. * Fix server-client connection. * UIMessage communication. Single instancing for server and re-connection mechanism on suspension. * Removed IWinoSynchronizerFactory from UWP project. * Removal of background task service from core. * Delegating changes to UI and triggering new background synchronization. * Fix build error. * Moved core lib messages to Messaging project. * Better client-server communication. Handling of requests in the server. New synchronizer factory in the server. * WAM broker and MSAL token caching for OutlookAuthenticator. Handling account creation for Outlook. * WinoServerResponse basics. * Delegating protocol activation for Gmail authenticator. * Adding margin to searchbox to match action bar width. * Move libraries into lib folder. * Storing base64 encoded mime on draft creation instead of MimeMessage object. Fixes serialization/deserialization issue with S.T.Json * Scrollbar adjustments * WınoExpander for thread expander layout ıssue. * Handling synchronizer state changes. * Double init on background activation. * FIxing packaging issues and new Wino Mail launcher protocol for activation from full thrust process. * Remove debug deserialization. * Remove debug code. * Making sure the server connection is established when the app is launched. * Thrust -> Trust string replacement... * Rename package to Wino Mail * Enable translated values in the server. * Fixed an issue where toast activation can't find the clicked mail after the folder is initialized. * Revert debug code. * Change server background sync to every 3 minute and Inbox only synchronization. * Revert google auth changes. * App preferences page. * Changing tray icon visibility on preference change. * Start the server with invisible tray icon if set to invisible. * Reconnect button on the title bar. * Handling of toast actions. * Enable x86 build for server during packaging. * Get rid of old background tasks and v180 migration. * Terminate client when Exit clicked in server. * Introducing SynchronizationSource to prevent notifying UI after server tick synchronization. * Remove confirmAppClose restricted capability and unused debug code in manifest. * Closing the reconnect info popup when reconnect is clicked. * Custom RetryHandler for OutlookSynchronizer and separating client/server logs. * Running server on Windows startup. * Fix startup exe. * Fix for expander list view item paddings. * Force full sync on app launch instead of Inbox. * Fix draft creation. * Fix an issue with custom folder sync logic. * Reporting back account sync progress from server. * Fix sending drafts and missing notifications for imap. * Changing imap folder sync requirements. * Retain file count is set to 3. * Disabled swipe gestures temporarily due to native crash with SwipeControl * Save all attachments implementation. * Localization for save all attachments button. * Fix logging dates for logs. * Fixing ARM64 build. * Add ARM64 build config to packaging project. * Comment out OutOfProcPDB for ARM64. * Hnadling GONE response for Outlook folder synchronization.
391 lines
17 KiB
C#
391 lines
17 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using CommunityToolkit.Mvvm.Input;
|
|
using CommunityToolkit.Mvvm.Messaging;
|
|
using Microsoft.AppCenter.Crashes;
|
|
using Serilog;
|
|
using Wino.Core;
|
|
using Wino.Core.Domain;
|
|
using Wino.Core.Domain.Entities;
|
|
using Wino.Core.Domain.Enums;
|
|
using Wino.Core.Domain.Exceptions;
|
|
using Wino.Core.Domain.Interfaces;
|
|
using Wino.Core.Domain.Models.Navigation;
|
|
using Wino.Core.Domain.Models.Store;
|
|
using Wino.Core.Domain.Models.Synchronization;
|
|
using Wino.Mail.ViewModels.Data;
|
|
using Wino.Messaging.Client.Authorization;
|
|
using Wino.Messaging.Client.Navigation;
|
|
using Wino.Messaging.Server;
|
|
using Wino.Messaging.UI;
|
|
|
|
namespace Wino.Mail.ViewModels
|
|
{
|
|
public partial class AccountManagementViewModel : BaseViewModel, IRecipient<ProtocolAuthorizationCallbackReceived>
|
|
{
|
|
public int FREE_ACCOUNT_COUNT { get; } = 3;
|
|
|
|
private readonly IDialogService _dialogService;
|
|
private readonly IAccountService _accountService;
|
|
private readonly IProviderService _providerService;
|
|
private readonly IFolderService _folderService;
|
|
private readonly IStoreManagementService _storeManagementService;
|
|
private readonly IPreferencesService _preferencesService;
|
|
private readonly IAuthenticationProvider _authenticationProvider;
|
|
private readonly IWinoServerConnectionManager _winoServerConnectionManager;
|
|
|
|
public ObservableCollection<IAccountProviderDetailViewModel> Accounts { get; set; } = [];
|
|
|
|
public bool IsPurchasePanelVisible => !HasUnlimitedAccountProduct;
|
|
public bool IsAccountCreationAlmostOnLimit => Accounts != null && Accounts.Count == FREE_ACCOUNT_COUNT - 1;
|
|
public bool HasAccountsDefined => Accounts != null && Accounts.Any();
|
|
public bool CanReorderAccounts => Accounts?.Sum(a => a.HoldingAccountCount) > 1;
|
|
|
|
public string UsedAccountsString => string.Format(Translator.WinoUpgradeRemainingAccountsMessage, Accounts.Count, FREE_ACCOUNT_COUNT);
|
|
|
|
[ObservableProperty]
|
|
private IAccountProviderDetailViewModel _startupAccount;
|
|
|
|
[ObservableProperty]
|
|
[NotifyPropertyChangedFor(nameof(IsPurchasePanelVisible))]
|
|
private bool hasUnlimitedAccountProduct;
|
|
|
|
[ObservableProperty]
|
|
[NotifyPropertyChangedFor(nameof(IsAccountCreationAlmostOnLimit))]
|
|
[NotifyPropertyChangedFor(nameof(IsPurchasePanelVisible))]
|
|
private bool isAccountCreationBlocked;
|
|
|
|
public AccountManagementViewModel(IDialogService dialogService,
|
|
IWinoNavigationService navigationService,
|
|
IAccountService accountService,
|
|
IProviderService providerService,
|
|
IFolderService folderService,
|
|
IStoreManagementService storeManagementService,
|
|
IPreferencesService preferencesService,
|
|
IAuthenticationProvider authenticationProvider,
|
|
IWinoServerConnectionManager winoServerConnectionManager) : base(dialogService)
|
|
{
|
|
_accountService = accountService;
|
|
_dialogService = dialogService;
|
|
_providerService = providerService;
|
|
_folderService = folderService;
|
|
_storeManagementService = storeManagementService;
|
|
_preferencesService = preferencesService;
|
|
_authenticationProvider = authenticationProvider;
|
|
_winoServerConnectionManager = winoServerConnectionManager;
|
|
}
|
|
|
|
[RelayCommand]
|
|
private void NavigateAccountDetails(AccountProviderDetailViewModel accountDetails)
|
|
{
|
|
Messenger.Send(new BreadcrumbNavigationRequested(accountDetails.Account.Name,
|
|
WinoPage.AccountDetailsPage,
|
|
accountDetails.Account.Id));
|
|
}
|
|
|
|
[RelayCommand]
|
|
private async Task CreateMergedAccountAsync()
|
|
{
|
|
var linkName = await DialogService.ShowTextInputDialogAsync(string.Empty, Translator.DialogMessage_CreateLinkedAccountTitle, Translator.DialogMessage_CreateLinkedAccountMessage, Translator.Buttons_Create);
|
|
|
|
if (string.IsNullOrEmpty(linkName)) return;
|
|
|
|
// Create arbitary empty merged inbox with an empty Guid and go to edit page.
|
|
var mergedInbox = new MergedInbox()
|
|
{
|
|
Id = Guid.Empty,
|
|
Name = linkName
|
|
};
|
|
|
|
var mergedAccountProviderDetailViewModel = new MergedAccountProviderDetailViewModel(mergedInbox, new List<AccountProviderDetailViewModel>());
|
|
|
|
Messenger.Send(new BreadcrumbNavigationRequested(mergedAccountProviderDetailViewModel.MergedInbox.Name,
|
|
WinoPage.MergedAccountDetailsPage,
|
|
mergedAccountProviderDetailViewModel));
|
|
}
|
|
|
|
[RelayCommand]
|
|
private async Task PurchaseUnlimitedAccountAsync()
|
|
{
|
|
var purchaseResult = await _storeManagementService.PurchaseAsync(StoreProductType.UnlimitedAccounts);
|
|
|
|
if (purchaseResult == StorePurchaseResult.Succeeded)
|
|
DialogService.InfoBarMessage(Translator.Info_PurchaseThankYouTitle, Translator.Info_PurchaseThankYouMessage, InfoBarMessageType.Success);
|
|
else if (purchaseResult == StorePurchaseResult.AlreadyPurchased)
|
|
DialogService.InfoBarMessage(Translator.Info_PurchaseExistsTitle, Translator.Info_PurchaseExistsMessage, InfoBarMessageType.Warning);
|
|
|
|
bool shouldRefreshPurchasePanel = purchaseResult == StorePurchaseResult.Succeeded || purchaseResult == StorePurchaseResult.AlreadyPurchased;
|
|
|
|
if (shouldRefreshPurchasePanel)
|
|
{
|
|
await ManageStorePurchasesAsync();
|
|
}
|
|
}
|
|
|
|
[RelayCommand]
|
|
private async Task AddNewAccountAsync()
|
|
{
|
|
if (IsAccountCreationBlocked)
|
|
{
|
|
var isPurchaseClicked = await DialogService.ShowConfirmationDialogAsync(Translator.DialogMessage_AccountLimitMessage, Translator.DialogMessage_AccountLimitTitle, Translator.Buttons_Purchase);
|
|
|
|
if (!isPurchaseClicked) return;
|
|
|
|
await PurchaseUnlimitedAccountAsync();
|
|
|
|
return;
|
|
}
|
|
|
|
MailAccount createdAccount = null;
|
|
IAccountCreationDialog creationDialog = null;
|
|
|
|
try
|
|
{
|
|
var providers = _providerService.GetProviderDetails();
|
|
|
|
// Select provider.
|
|
var accountCreationDialogResult = await _dialogService.ShowNewAccountMailProviderDialogAsync(providers);
|
|
|
|
if (accountCreationDialogResult != null)
|
|
{
|
|
creationDialog = _dialogService.GetAccountCreationDialog(accountCreationDialogResult.ProviderType);
|
|
|
|
// _accountService.ExternalAuthenticationAuthenticator = _authenticationProvider.GetAuthenticator(accountCreationDialogResult.ProviderType);
|
|
|
|
CustomServerInformation customServerInformation = null;
|
|
|
|
createdAccount = new MailAccount()
|
|
{
|
|
ProviderType = accountCreationDialogResult.ProviderType,
|
|
Name = accountCreationDialogResult.AccountName,
|
|
SenderName = accountCreationDialogResult.SenderName,
|
|
AccountColorHex = accountCreationDialogResult.AccountColorHex,
|
|
Id = Guid.NewGuid()
|
|
};
|
|
|
|
creationDialog.ShowDialog();
|
|
creationDialog.State = AccountCreationDialogState.SigningIn;
|
|
|
|
TokenInformation tokenInformation = null;
|
|
|
|
// Custom server implementation requires more async waiting.
|
|
if (creationDialog is ICustomServerAccountCreationDialog customServerDialog)
|
|
{
|
|
// Pass along the account properties and perform initial navigation on the imap frame.
|
|
customServerDialog.StartImapConnectionSetup(createdAccount);
|
|
|
|
customServerInformation = await customServerDialog.GetCustomServerInformationAsync()
|
|
?? throw new AccountSetupCanceledException();
|
|
|
|
// At this point connection is successful.
|
|
// Save the server setup information and later on we'll fetch folders.
|
|
|
|
customServerInformation.AccountId = createdAccount.Id;
|
|
|
|
createdAccount.Address = customServerInformation.Address;
|
|
createdAccount.ServerInformation = customServerInformation;
|
|
createdAccount.SenderName = customServerInformation.DisplayName;
|
|
}
|
|
else
|
|
{
|
|
// For OAuth authentications, we just generate token and assign it to the MailAccount.
|
|
|
|
var tokenInformationResponse = await _winoServerConnectionManager.GetResponseAsync<TokenInformation, AuthorizationRequested>(new AuthorizationRequested(accountCreationDialogResult.ProviderType, createdAccount));
|
|
|
|
tokenInformationResponse.ThrowIfFailed();
|
|
|
|
// ?? throw new AuthenticationException(Translator.Exception_TokenInfoRetrivalFailed);
|
|
|
|
tokenInformation = tokenInformationResponse.Data;
|
|
createdAccount.Address = tokenInformation.Address;
|
|
tokenInformation.AccountId = createdAccount.Id;
|
|
}
|
|
|
|
await _accountService.CreateAccountAsync(createdAccount, tokenInformation, customServerInformation);
|
|
|
|
// Local account has been created.
|
|
// Create new synchronizer and start synchronization.
|
|
|
|
if (creationDialog is ICustomServerAccountCreationDialog customServerAccountCreationDialog)
|
|
customServerAccountCreationDialog.ShowPreparingFolders();
|
|
else
|
|
creationDialog.State = AccountCreationDialogState.PreparingFolders;
|
|
|
|
var options = new SynchronizationOptions()
|
|
{
|
|
AccountId = createdAccount.Id,
|
|
Type = SynchronizationType.FoldersOnly
|
|
};
|
|
|
|
var synchronizationResultResponse = await _winoServerConnectionManager.GetResponseAsync<SynchronizationResult, NewSynchronizationRequested>(new NewSynchronizationRequested(options, SynchronizationSource.Client));
|
|
|
|
var synchronizationResult = synchronizationResultResponse.Data;
|
|
if (synchronizationResult.CompletedState != SynchronizationCompletedState.Success)
|
|
throw new Exception(Translator.Exception_FailedToSynchronizeFolders);
|
|
|
|
// Check if Inbox folder is available for the account after synchronization.
|
|
var isInboxAvailable = await _folderService.IsInboxAvailableForAccountAsync(createdAccount.Id);
|
|
|
|
if (!isInboxAvailable)
|
|
throw new Exception(Translator.Exception_InboxNotAvailable);
|
|
|
|
// Send changes to listeners.
|
|
ReportUIChange(new AccountCreatedMessage(createdAccount));
|
|
|
|
// Notify success.
|
|
_dialogService.InfoBarMessage(Translator.Info_AccountCreatedTitle, string.Format(Translator.Info_AccountCreatedMessage, createdAccount.Address), InfoBarMessageType.Success);
|
|
}
|
|
}
|
|
catch (AccountSetupCanceledException)
|
|
{
|
|
// Ignore
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Error(ex, WinoErrors.AccountCreation);
|
|
Crashes.TrackError(ex);
|
|
|
|
_dialogService.InfoBarMessage(Translator.Info_AccountCreationFailedTitle, ex.Message, InfoBarMessageType.Error);
|
|
|
|
// Delete account in case of failure.
|
|
if (createdAccount != null)
|
|
{
|
|
await _accountService.DeleteAccountAsync(createdAccount);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
creationDialog?.Complete();
|
|
}
|
|
}
|
|
|
|
[RelayCommand]
|
|
private void EditMergedAccounts(MergedAccountProviderDetailViewModel mergedAccountProviderDetailViewModel)
|
|
{
|
|
Messenger.Send(new BreadcrumbNavigationRequested(mergedAccountProviderDetailViewModel.MergedInbox.Name,
|
|
WinoPage.MergedAccountDetailsPage,
|
|
mergedAccountProviderDetailViewModel));
|
|
}
|
|
|
|
[RelayCommand(CanExecute = nameof(CanReorderAccounts))]
|
|
private Task ReorderAccountsAsync() => DialogService.ShowAccountReorderDialogAsync(availableAccounts: Accounts);
|
|
|
|
public override void OnNavigatedFrom(NavigationMode mode, object parameters)
|
|
{
|
|
base.OnNavigatedFrom(mode, parameters);
|
|
|
|
Accounts.CollectionChanged -= AccountCollectionChanged;
|
|
|
|
PropertyChanged -= PagePropertyChanged;
|
|
}
|
|
|
|
private void AccountCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
|
|
{
|
|
OnPropertyChanged(nameof(HasAccountsDefined));
|
|
OnPropertyChanged(nameof(UsedAccountsString));
|
|
OnPropertyChanged(nameof(IsAccountCreationAlmostOnLimit));
|
|
|
|
ReorderAccountsCommand.NotifyCanExecuteChanged();
|
|
}
|
|
|
|
private void PagePropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
|
|
{
|
|
if (e.PropertyName == nameof(StartupAccount) && StartupAccount != null)
|
|
{
|
|
_preferencesService.StartupEntityId = StartupAccount.StartupEntityId;
|
|
}
|
|
}
|
|
|
|
public override async void OnNavigatedTo(NavigationMode mode, object parameters)
|
|
{
|
|
base.OnNavigatedTo(mode, parameters);
|
|
|
|
Accounts.CollectionChanged -= AccountCollectionChanged;
|
|
Accounts.CollectionChanged += AccountCollectionChanged;
|
|
|
|
await InitializeAccountsAsync();
|
|
|
|
PropertyChanged -= PagePropertyChanged;
|
|
PropertyChanged += PagePropertyChanged;
|
|
}
|
|
|
|
private async Task InitializeAccountsAsync()
|
|
{
|
|
StartupAccount = null;
|
|
|
|
Accounts.Clear();
|
|
|
|
var accounts = await _accountService.GetAccountsAsync().ConfigureAwait(false);
|
|
|
|
// Group accounts and display merged ones at the top.
|
|
var groupedAccounts = accounts.GroupBy(a => a.MergedInboxId);
|
|
|
|
await ExecuteUIThread(() =>
|
|
{
|
|
foreach (var accountGroup in groupedAccounts)
|
|
{
|
|
var mergedInboxId = accountGroup.Key;
|
|
|
|
if (mergedInboxId == null)
|
|
{
|
|
foreach (var account in accountGroup)
|
|
{
|
|
var accountDetails = GetAccountProviderDetails(account);
|
|
|
|
Accounts.Add(accountDetails);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
var mergedInbox = accountGroup.First(a => a.MergedInboxId == mergedInboxId).MergedInbox;
|
|
|
|
var holdingAccountProviderDetails = accountGroup.Select(a => GetAccountProviderDetails(a)).ToList();
|
|
var mergedAccountViewModel = new MergedAccountProviderDetailViewModel(mergedInbox, holdingAccountProviderDetails);
|
|
|
|
Accounts.Add(mergedAccountViewModel);
|
|
}
|
|
}
|
|
|
|
// Handle startup entity.
|
|
if (_preferencesService.StartupEntityId != null)
|
|
{
|
|
StartupAccount = Accounts.FirstOrDefault(a => a.StartupEntityId == _preferencesService.StartupEntityId);
|
|
}
|
|
});
|
|
|
|
|
|
await ManageStorePurchasesAsync().ConfigureAwait(false);
|
|
}
|
|
|
|
private async Task ManageStorePurchasesAsync()
|
|
{
|
|
await ExecuteUIThread(async () =>
|
|
{
|
|
HasUnlimitedAccountProduct = await _storeManagementService.HasProductAsync(StoreProductType.UnlimitedAccounts);
|
|
|
|
if (!HasUnlimitedAccountProduct)
|
|
IsAccountCreationBlocked = Accounts.Count >= FREE_ACCOUNT_COUNT;
|
|
else
|
|
IsAccountCreationBlocked = false;
|
|
});
|
|
}
|
|
|
|
private AccountProviderDetailViewModel GetAccountProviderDetails(MailAccount account)
|
|
{
|
|
var provider = _providerService.GetProviderDetail(account.ProviderType);
|
|
|
|
return new AccountProviderDetailViewModel(provider, account);
|
|
}
|
|
|
|
public async void Receive(ProtocolAuthorizationCallbackReceived message)
|
|
{
|
|
// Authorization must be completed in the server.
|
|
await _winoServerConnectionManager.GetResponseAsync<bool, ProtocolAuthorizationCallbackReceived>(message);
|
|
}
|
|
}
|
|
}
|