380 lines
14 KiB
C#
380 lines
14 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CommunityToolkit.Mvvm.Messaging;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Toolkit.Uwp.Notifications;
|
|
using Microsoft.UI.Xaml;
|
|
using Microsoft.Windows.AppLifecycle;
|
|
using Microsoft.Windows.AppNotifications;
|
|
using Wino.Core.Domain;
|
|
using Wino.Core.Domain.Enums;
|
|
using Wino.Core.Domain.Interfaces;
|
|
using Wino.Core.Domain.Models.MailItem;
|
|
using Wino.Core.Domain.Models.Synchronization;
|
|
using Wino.Mail.WinUI;
|
|
using Wino.Mail.WinUI.Interfaces;
|
|
using Wino.Mail.Services;
|
|
using Wino.Mail.ViewModels;
|
|
using Wino.Messaging.Client.Accounts;
|
|
using Wino.Messaging.Server;
|
|
using Wino.Services;
|
|
namespace Wino.Mail.WinUI;
|
|
|
|
public partial class App : WinoApplication, IRecipient<NewMailSynchronizationRequested>
|
|
{
|
|
private ISynchronizationManager? _synchronizationManager;
|
|
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
|
|
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
|
|
|
|
RegisterRecipients();
|
|
}
|
|
|
|
public bool IsNotificationActivation(out AppNotificationActivatedEventArgs args)
|
|
{
|
|
var activationArgs = AppInstance.GetCurrent().GetActivatedEventArgs();
|
|
|
|
if (activationArgs.Kind == ExtendedActivationKind.AppNotification)
|
|
{
|
|
args = ((AppNotificationActivatedEventArgs)activationArgs.Data);
|
|
return true;
|
|
}
|
|
|
|
args = null!;
|
|
return false;
|
|
}
|
|
|
|
#region Dependency Injection
|
|
|
|
|
|
private void RegisterUWPServices(IServiceCollection services)
|
|
{
|
|
services.AddSingleton<INavigationService, NavigationService>();
|
|
services.AddSingleton<IMailDialogService, DialogService>();
|
|
services.AddTransient<ISettingsBuilderService, SettingsBuilderService>();
|
|
services.AddTransient<IProviderService, ProviderService>();
|
|
services.AddSingleton<IAuthenticatorConfig, MailAuthenticatorConfiguration>();
|
|
}
|
|
|
|
private void RegisterViewModels(IServiceCollection services)
|
|
{
|
|
services.AddSingleton(typeof(AppShellViewModel));
|
|
|
|
services.AddTransient(typeof(MailListPageViewModel));
|
|
services.AddTransient(typeof(MailRenderingPageViewModel));
|
|
services.AddTransient(typeof(AccountManagementViewModel));
|
|
services.AddTransient(typeof(WelcomePageViewModel));
|
|
|
|
services.AddTransient(typeof(ComposePageViewModel));
|
|
services.AddTransient(typeof(IdlePageViewModel));
|
|
|
|
services.AddTransient(typeof(EditAccountDetailsPageViewModel));
|
|
services.AddTransient(typeof(AccountDetailsPageViewModel));
|
|
services.AddTransient(typeof(SignatureManagementPageViewModel));
|
|
services.AddTransient(typeof(MessageListPageViewModel));
|
|
services.AddTransient(typeof(ReadComposePanePageViewModel));
|
|
services.AddTransient(typeof(MergedAccountDetailsPageViewModel));
|
|
services.AddTransient(typeof(LanguageTimePageViewModel));
|
|
services.AddTransient(typeof(AppPreferencesPageViewModel));
|
|
services.AddTransient(typeof(AliasManagementPageViewModel));
|
|
services.AddTransient(typeof(ContactsPageViewModel));
|
|
}
|
|
|
|
#endregion
|
|
|
|
public override IServiceProvider ConfigureServices()
|
|
{
|
|
var services = new ServiceCollection();
|
|
|
|
services.RegisterViewModelService();
|
|
services.RegisterSharedServices();
|
|
services.RegisterCoreUWPServices();
|
|
services.RegisterCoreViewModels();
|
|
|
|
RegisterUWPServices(services);
|
|
RegisterViewModels(services);
|
|
|
|
return services.BuildServiceProvider();
|
|
}
|
|
|
|
private bool IsStartupTaskLaunch() => AppInstance.GetCurrent().GetActivatedEventArgs()?.Kind == ExtendedActivationKind.StartupTask;
|
|
public bool IsAppRunning() => MainWindow != null;
|
|
|
|
protected override async void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)
|
|
{
|
|
base.OnLaunched(args);
|
|
|
|
AppNotificationManager notificationManager = AppNotificationManager.Default;
|
|
|
|
notificationManager.NotificationInvoked -= AppNotificationInvoked;
|
|
notificationManager.NotificationInvoked += AppNotificationInvoked;
|
|
notificationManager.Register();
|
|
|
|
// Initialize required services regardless of launch activation type.
|
|
// All activation scenarios require these services to be ready.
|
|
// Note: Theme service is initialized separately after window creation.
|
|
await InitializeServicesAsync();
|
|
|
|
_synchronizationManager = Services.GetRequiredService<ISynchronizationManager>();
|
|
|
|
// Check if launched from toast notification.
|
|
if (IsNotificationActivation(out AppNotificationActivatedEventArgs toastArgs))
|
|
{
|
|
await HandleToastActivationAsync(toastArgs);
|
|
return;
|
|
}
|
|
|
|
// Check if launched by startup task.
|
|
bool isStartupTaskLaunch = IsStartupTaskLaunch();
|
|
|
|
// Create the window (needed for system tray icon even in startup task scenario).
|
|
CreateWindow(args);
|
|
|
|
// Initialize theme service after window creation.
|
|
// Theme service requires the window to exist to properly load and apply themes.
|
|
await NewThemeService.InitializeAsync();
|
|
LogActivation("Theme service initialized.");
|
|
|
|
// If startup task launch, keep window hidden (system tray only).
|
|
// Otherwise, activate the window normally.
|
|
if (isStartupTaskLaunch)
|
|
{
|
|
LogActivation("Launched by startup task. Window created but hidden (system tray only).");
|
|
// Window is created but not activated. User can show it from system tray.
|
|
}
|
|
else
|
|
{
|
|
// Normal launch - show and activate the window.
|
|
MainWindow.Activate();
|
|
LogActivation("Window created and activated.");
|
|
}
|
|
}
|
|
|
|
private async void AppNotificationInvoked(AppNotificationManager sender, AppNotificationActivatedEventArgs args)
|
|
=> await HandleToastActivationAsync(args);
|
|
|
|
/// <summary>
|
|
/// Handles toast notification activation scenarios.
|
|
/// </summary>
|
|
private async Task HandleToastActivationAsync(AppNotificationActivatedEventArgs toastArgs)
|
|
{
|
|
var toastArguments = ToastArguments.Parse(toastArgs.Argument);
|
|
|
|
// Check if this is a navigation toast (user clicked the notification).
|
|
if (toastArguments.TryGetValue(Constants.ToastActionKey, out MailOperation action) &&
|
|
Guid.TryParse(toastArguments[Constants.ToastMailUniqueIdKey], out Guid mailItemUniqueId))
|
|
{
|
|
if (action == MailOperation.Navigate)
|
|
{
|
|
// User clicked notification - create window if needed and navigate.
|
|
await HandleToastNavigationAsync(mailItemUniqueId);
|
|
}
|
|
else
|
|
{
|
|
// User clicked action button (Mark as Read, Delete, etc.)
|
|
// Execute action without window and exit.
|
|
|
|
await HandleToastActionAsync(action, mailItemUniqueId);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handles toast notification click for navigation.
|
|
/// Creates window if not running, sets up navigation parameter.
|
|
/// </summary>
|
|
private async Task HandleToastNavigationAsync(Guid mailItemUniqueId)
|
|
{
|
|
var mailService = Services.GetRequiredService<IMailService>();
|
|
|
|
var account = await mailService.GetMailAccountByUniqueIdAsync(mailItemUniqueId).ConfigureAwait(false);
|
|
if (account == null) return;
|
|
|
|
var mailItem = await mailService.GetSingleMailItemAsync(mailItemUniqueId).ConfigureAwait(false);
|
|
if (mailItem == null) return;
|
|
|
|
var message = new AccountMenuItemExtended(mailItem.AssignedFolder.Id, mailItem);
|
|
|
|
// Store navigation parameter in LaunchProtocolService so AppShell can pick it up.
|
|
var launchProtocolService = Services.GetRequiredService<ILaunchProtocolService>();
|
|
launchProtocolService.LaunchParameter = message;
|
|
|
|
// Create window if not already created.
|
|
if (!IsAppRunning())
|
|
{
|
|
// Pass null for args since we're handling toast navigation
|
|
await CreateAndActivateWindow(null!);
|
|
}
|
|
else
|
|
{
|
|
// App is already running - send message and bring window to front.
|
|
WeakReferenceMessenger.Default.Send(message);
|
|
MainWindow.BringToFront();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handles toast action button clicks (Mark as Read, Delete, etc.).
|
|
/// Executes the action without showing UI and exits the app.
|
|
/// </summary>
|
|
private async Task HandleToastActionAsync(MailOperation action, Guid mailItemUniqueId)
|
|
{
|
|
LogActivation($"Handling toast action: {action} for mail {mailItemUniqueId}");
|
|
|
|
var mailService = Services.GetRequiredService<IMailService>();
|
|
var mailItem = await mailService.GetSingleMailItemAsync(mailItemUniqueId);
|
|
|
|
if (mailItem == null)
|
|
{
|
|
LogActivation("Mail item not found. Exiting.");
|
|
Application.Current.Exit();
|
|
return;
|
|
}
|
|
|
|
var package = new MailOperationPreperationRequest(action, mailItem);
|
|
|
|
// Check if app is already running (has a window).
|
|
if (IsAppRunning())
|
|
{
|
|
// App is running - use the simple delegator pattern.
|
|
// The synchronization will happen in the background.
|
|
LogActivation("App is running. Queueing request via delegator.");
|
|
|
|
var delegator = Services.GetRequiredService<IWinoRequestDelegator>();
|
|
await delegator.ExecuteAsync(package);
|
|
|
|
// Don't exit - app continues running.
|
|
LogActivation($"Toast action {action} queued successfully.");
|
|
}
|
|
else
|
|
{
|
|
// App is not running - we need to wait for sync before exiting.
|
|
LogActivation("App is not running. Executing synchronization and waiting for completion.");
|
|
|
|
if (_synchronizationManager == null)
|
|
{
|
|
LogActivation("Synchronization manager is not initialized. Exiting.");
|
|
Application.Current.Exit();
|
|
return;
|
|
}
|
|
|
|
var processor = Services.GetRequiredService<IWinoRequestProcessor>();
|
|
var notificationBuilder = Services.GetRequiredService<INotificationBuilder>();
|
|
|
|
// Prepare the requests for the action.
|
|
var requests = await processor.PrepareRequestsAsync(package);
|
|
|
|
if (requests != null && requests.Any())
|
|
{
|
|
// Group requests by account ID (usually just one account).
|
|
var accountIds = requests.GroupBy(a => a.Item.AssignedAccount.Id);
|
|
|
|
foreach (var accountGroup in accountIds)
|
|
{
|
|
var accountId = accountGroup.Key;
|
|
|
|
// Queue all requests for this account.
|
|
foreach (var request in accountGroup)
|
|
{
|
|
await _synchronizationManager.QueueRequestAsync(request, accountId, triggerSynchronization: false);
|
|
}
|
|
|
|
// Create synchronization options to execute the queued requests.
|
|
var syncOptions = new MailSynchronizationOptions()
|
|
{
|
|
AccountId = accountId,
|
|
Type = MailSynchronizationType.ExecuteRequests
|
|
};
|
|
|
|
LogActivation($"Executing synchronization for account {accountId}...");
|
|
|
|
// Wait for synchronization to complete before exiting.
|
|
var syncResult = await _synchronizationManager.SynchronizeMailAsync(syncOptions);
|
|
|
|
LogActivation($"Toast action {action} completed. Sync result: {syncResult.CompletedState}");
|
|
}
|
|
|
|
await notificationBuilder.UpdateTaskbarIconBadgeAsync();
|
|
}
|
|
|
|
LogActivation("Toast action handling complete. Exiting app.");
|
|
|
|
// Exit the app after synchronization is complete.
|
|
Application.Current.Exit();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates the main window and activates it.
|
|
/// </summary>
|
|
private async Task CreateAndActivateWindow(LaunchActivatedEventArgs args)
|
|
{
|
|
CreateWindow(args);
|
|
|
|
// Initialize theme service after window is created.
|
|
await NewThemeService.InitializeAsync();
|
|
|
|
MainWindow.Activate();
|
|
LogActivation("Window created and activated.");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates the main window without activating it.
|
|
/// Used for both normal launch and startup task launch (tray only).
|
|
/// </summary>
|
|
private void CreateWindow(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)
|
|
{
|
|
LogActivation("Creating main window.");
|
|
|
|
MainWindow = new ShellWindow();
|
|
|
|
var nativeAppService = Services.GetRequiredService<INativeAppService>();
|
|
nativeAppService.GetCoreWindowHwnd = () => WinRT.Interop.WindowNative.GetWindowHandle(MainWindow);
|
|
|
|
if (MainWindow is not IWinoShellWindow shellWindow)
|
|
throw new ArgumentException("MainWindow must implement IWinoShellWindow");
|
|
|
|
shellWindow.HandleAppActivation(args);
|
|
}
|
|
|
|
private void RegisterRecipients()
|
|
{
|
|
WeakReferenceMessenger.Default.Register<NewMailSynchronizationRequested>(this);
|
|
}
|
|
|
|
public void Receive(NewMailSynchronizationRequested message)
|
|
{
|
|
_synchronizationManager?.SynchronizeMailAsync(message.Options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handles activation redirected from another instance (single-instancing).
|
|
/// This is called when a second instance tries to launch and redirects to this existing instance.
|
|
/// </summary>
|
|
public void HandleRedirectedActivation(AppActivationArguments args)
|
|
{
|
|
// Dispatch to UI thread since this is called from Program.OnActivated
|
|
MainWindow?.DispatcherQueue.TryEnqueue(() =>
|
|
{
|
|
// Handle different activation kinds
|
|
if (args.Kind == ExtendedActivationKind.AppNotification)
|
|
{
|
|
// Handle toast notification activation
|
|
var toastArgs = (AppNotificationActivatedEventArgs)args.Data;
|
|
_ = HandleToastActivationAsync(toastArgs);
|
|
}
|
|
else
|
|
{
|
|
// For other activation types (Launch, Protocol, etc.), bring window to front
|
|
MainWindow?.BringToFront();
|
|
MainWindow?.Activate();
|
|
}
|
|
});
|
|
}
|
|
}
|