* New rename folder dialog keys. * Insfra work for folder operations and rename folder code. * RenameFolder for Gmail. * Fixed input dialog to take custom take for primary button. * Missing rename for DS call. * Outlook to throw exception in case of error. * Implemented rename folder functionality for Outlook. * Remove default primary text from input dialog. * Fixed an issue where outlook folder rename does not work. * Disable vertical scroll for composing page editor items. * Fixing some issues with imap folder sync. * fix copy pasta * TODO folder update/removed overrides for shell. * New rename folder dialog keys. * Insfra work for folder operations and rename folder code. * RenameFolder for Gmail. * Fixed input dialog to take custom take for primary button. * Missing rename for DS call. * Outlook to throw exception in case of error. * Implemented rename folder functionality for Outlook. * Remove default primary text from input dialog. * Fixed an issue where outlook folder rename does not work. * Disable vertical scroll for composing page editor items. * Fixing some issues with imap folder sync. * fix copy pasta * TODO folder update/removed overrides for shell. * New rename folder dialog keys. * Insfra work for folder operations and rename folder code. * RenameFolder for Gmail. * Fixed input dialog to take custom take for primary button. * Missing rename for DS call. * Outlook to throw exception in case of error. * Implemented rename folder functionality for Outlook. * Remove default primary text from input dialog. * Fixed an issue where outlook folder rename does not work. * Disable vertical scroll for composing page editor items. * Fixing some issues with imap folder sync. * fix copy pasta * TODO folder update/removed overrides for shell. * New rename folder dialog keys. * Fixed an issue where redundant older updates causing pivots to be re-created. * New empty folder request * New rename folder dialog keys. * Insfra work for folder operations and rename folder code. * RenameFolder for Gmail. * Fixed input dialog to take custom take for primary button. * Missing rename for DS call. * Outlook to throw exception in case of error. * Implemented rename folder functionality for Outlook. * Remove default primary text from input dialog. * Fixed an issue where outlook folder rename does not work. * Fixing some issues with imap folder sync. * fix copy pasta * TODO folder update/removed overrides for shell. * New rename folder dialog keys. * New rename folder dialog keys. * New rename folder dialog keys. * Fixed an issue where redundant older updates causing pivots to be re-created. * New empty folder request * Enable empty folder on base sync. * Move updates on event listeners. * Remove folder UI messages. * Reworked folder synchronization for gmail. * Loading folders on the fly as the selected account changed instead of relying on cached menu items. * Merged account folder items, re-navigating to existing rendering page. * - Reworked merged account menu system. - Reworked unread item count loadings. - Fixed back button visibility. - Instant rendering of mails if renderer is active. - Animation fixes. - Menu item re-load crash/hang fixes. * Handle folder renaming on the UI. * Empty folder for all synchronizers. * New execution delay mechanism and handling folder mark as read for all synchronizers. * Revert UI changes on failure for IMAP. * Remove duplicate translation keys. * Cleanup.
161 lines
6.0 KiB
C#
161 lines
6.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using CommunityToolkit.Mvvm.Messaging;
|
|
using Serilog;
|
|
using Wino.Core.Domain;
|
|
using Wino.Core.Domain.Enums;
|
|
using Wino.Core.Domain.Exceptions;
|
|
using Wino.Core.Domain.Interfaces;
|
|
using Wino.Core.Domain.Models.Folders;
|
|
using Wino.Core.Domain.Models.MailItem;
|
|
using Wino.Core.Domain.Models.Synchronization;
|
|
using Wino.Core.Messages.Synchronization;
|
|
using Wino.Core.Requests;
|
|
|
|
namespace Wino.Core.Services
|
|
{
|
|
public class WinoRequestDelegator : IWinoRequestDelegator
|
|
{
|
|
private readonly IWinoRequestProcessor _winoRequestProcessor;
|
|
private readonly IWinoSynchronizerFactory _winoSynchronizerFactory;
|
|
private readonly IFolderService _folderService;
|
|
private readonly IDialogService _dialogService;
|
|
private readonly ILogger _logger = Log.ForContext<WinoRequestDelegator>();
|
|
|
|
public WinoRequestDelegator(IWinoRequestProcessor winoRequestProcessor,
|
|
IWinoSynchronizerFactory winoSynchronizerFactory,
|
|
IFolderService folderService,
|
|
IDialogService dialogService)
|
|
{
|
|
_winoRequestProcessor = winoRequestProcessor;
|
|
_winoSynchronizerFactory = winoSynchronizerFactory;
|
|
_folderService = folderService;
|
|
_dialogService = dialogService;
|
|
}
|
|
|
|
public async Task ExecuteAsync(MailOperationPreperationRequest request)
|
|
{
|
|
var requests = new List<IRequest>();
|
|
|
|
try
|
|
{
|
|
requests = await _winoRequestProcessor.PrepareRequestsAsync(request);
|
|
}
|
|
catch (UnavailableSpecialFolderException unavailableSpecialFolderException)
|
|
{
|
|
_dialogService.InfoBarMessage(Translator.Info_MissingFolderTitle,
|
|
string.Format(Translator.Info_MissingFolderMessage, unavailableSpecialFolderException.SpecialFolderType),
|
|
InfoBarMessageType.Warning,
|
|
Translator.SettingConfigureSpecialFolders_Button,
|
|
() =>
|
|
{
|
|
_dialogService.HandleSystemFolderConfigurationDialogAsync(unavailableSpecialFolderException.AccountId, _folderService);
|
|
});
|
|
}
|
|
catch (InvalidMoveTargetException)
|
|
{
|
|
_dialogService.InfoBarMessage(Translator.Info_InvalidMoveTargetTitle, Translator.Info_InvalidMoveTargetMessage, InfoBarMessageType.Warning);
|
|
}
|
|
catch (NotImplementedException)
|
|
{
|
|
_dialogService.ShowNotSupportedMessage();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Error(ex, "Request creation failed.");
|
|
_dialogService.InfoBarMessage(Translator.Info_RequestCreationFailedTitle, ex.Message, InfoBarMessageType.Error);
|
|
}
|
|
|
|
if (requests == null || !requests.Any()) return;
|
|
|
|
var accountIds = requests.GroupBy(a => a.Item.AssignedAccount.Id);
|
|
|
|
// Queue requests for each account and start synchronization.
|
|
foreach (var accountId in accountIds)
|
|
{
|
|
foreach (var accountRequest in accountId)
|
|
{
|
|
QueueRequest(accountRequest, accountId.Key);
|
|
}
|
|
|
|
QueueSynchronization(accountId.Key);
|
|
}
|
|
}
|
|
|
|
public async Task ExecuteAsync(FolderOperationPreperationRequest folderRequest)
|
|
{
|
|
if (folderRequest == null || folderRequest.Folder == null) return;
|
|
|
|
IRequestBase request = null;
|
|
|
|
var accountId = folderRequest.Folder.MailAccountId;
|
|
|
|
try
|
|
{
|
|
request = await _winoRequestProcessor.PrepareFolderRequestAsync(folderRequest);
|
|
}
|
|
catch (NotImplementedException)
|
|
{
|
|
_dialogService.ShowNotSupportedMessage();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Error(ex, "Folder operation execution failed.");
|
|
}
|
|
|
|
if (request == null) return;
|
|
|
|
QueueRequest(request, accountId);
|
|
QueueSynchronization(accountId);
|
|
}
|
|
|
|
public Task ExecuteAsync(DraftPreperationRequest draftPreperationRequest)
|
|
{
|
|
var request = new CreateDraftRequest(draftPreperationRequest);
|
|
|
|
QueueRequest(request, draftPreperationRequest.Account.Id);
|
|
QueueSynchronization(draftPreperationRequest.Account.Id);
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task ExecuteAsync(SendDraftPreparationRequest sendDraftPreperationRequest)
|
|
{
|
|
var request = new SendDraftRequest(sendDraftPreperationRequest);
|
|
|
|
QueueRequest(request, sendDraftPreperationRequest.MailItem.AssignedAccount.Id);
|
|
QueueSynchronization(sendDraftPreperationRequest.MailItem.AssignedAccount.Id);
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
private void QueueRequest(IRequestBase request, Guid accountId)
|
|
{
|
|
var synchronizer = _winoSynchronizerFactory.GetAccountSynchronizer(accountId);
|
|
|
|
if (synchronizer == null)
|
|
{
|
|
_logger.Warning("Synchronizer not found for account {AccountId}.", accountId);
|
|
_logger.Warning("Skipping queueing request {Operation}.", request.Operation);
|
|
|
|
return;
|
|
}
|
|
|
|
synchronizer.QueueRequest(request);
|
|
}
|
|
|
|
private void QueueSynchronization(Guid accountId)
|
|
{
|
|
var options = new SynchronizationOptions()
|
|
{
|
|
AccountId = accountId,
|
|
Type = SynchronizationType.ExecuteRequests
|
|
};
|
|
|
|
WeakReferenceMessenger.Default.Send(new NewSynchronizationRequested(options));
|
|
}
|
|
}
|
|
}
|