mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 14:24:32 +00:00
882d39b8f3
- Refactored file handling: added backup directories, improved mafile naming strategy, and introduced renaming functionality. - Enhanced UI: updated `MainWindow`, `SettingsView`, and dialogs with new controls, commands, and improved layouts. - Introduced `TextFieldDialog` for user input with localization support. - Improved localization: added new strings for buttons, errors, and tooltips. Removed all user-observed not localized strings - Fixed clipboard handling logic in `ClipboardHelper`. - Added 'Create Group' button in mafile's context menu and corresponding dialog view - Implemented `RequiresAdminAccess` check before updating program and requesting previlegies
296 lines
8.2 KiB
C#
296 lines
8.2 KiB
C#
using System;
|
|
using System.Collections.Specialized;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using AchiesUtilities.Extensions;
|
|
using CommunityToolkit.Mvvm.Input;
|
|
using MaterialDesignThemes.Wpf;
|
|
using Microsoft.Win32;
|
|
using NebulaAuth.Core;
|
|
using NebulaAuth.Model;
|
|
using NebulaAuth.Model.Entities;
|
|
using NebulaAuth.Model.Exceptions;
|
|
using NebulaAuth.Utility;
|
|
using NebulaAuth.View;
|
|
using NebulaAuth.View.Dialogs;
|
|
using NebulaAuth.ViewModel.Other;
|
|
using SteamLibForked.Exceptions.Authorization;
|
|
|
|
namespace NebulaAuth.ViewModel;
|
|
|
|
public partial class MainVM //File //TODO: Refactor
|
|
{
|
|
public Settings Settings => Settings.Instance;
|
|
|
|
[RelayCommand]
|
|
private void OpenMafileFolder()
|
|
{
|
|
var mafile = SelectedMafile;
|
|
|
|
var path = Storage.MafilesDirectory;
|
|
string? mafilePath = null;
|
|
if (mafile != null)
|
|
{
|
|
mafilePath = Storage.TryGetMafilePath(mafile);
|
|
}
|
|
|
|
if (mafilePath != null)
|
|
{
|
|
path = $"/select, \"{mafilePath}\"";
|
|
}
|
|
|
|
try
|
|
{
|
|
var processStartInfo = new ProcessStartInfo("explorer.exe", path);
|
|
Process.Start(processStartInfo);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
SnackbarController.SendSnackbar(ex.Message);
|
|
}
|
|
}
|
|
|
|
|
|
[RelayCommand]
|
|
private Task AddMafile()
|
|
{
|
|
var openFileDialog = new OpenFileDialog
|
|
{
|
|
Filter = "Mafile|*.mafile;*.maFile",
|
|
Multiselect = false
|
|
};
|
|
var fs = openFileDialog.ShowDialog();
|
|
if (fs != true) return Task.CompletedTask;
|
|
var path = openFileDialog.FileName;
|
|
return AddMafile([path]);
|
|
}
|
|
|
|
public async Task AddMafile(string[] path)
|
|
{
|
|
bool? confirmOverwrite = null;
|
|
var added = 0;
|
|
var notAdded = 0;
|
|
var errors = 0;
|
|
foreach (var str in path)
|
|
{
|
|
try
|
|
{
|
|
Storage.AddNewMafile(str, confirmOverwrite ?? false);
|
|
added++;
|
|
}
|
|
catch (FormatException)
|
|
{
|
|
errors++;
|
|
}
|
|
catch (IOException)
|
|
{
|
|
confirmOverwrite ??=
|
|
await DialogsController.ShowConfirmCancelDialog(GetLocalization("ConfirmMafileOverwrite"));
|
|
|
|
if (confirmOverwrite == true)
|
|
{
|
|
Storage.AddNewMafile(str, true);
|
|
added++;
|
|
}
|
|
else if (confirmOverwrite == false)
|
|
{
|
|
notAdded++;
|
|
}
|
|
}
|
|
catch (MafileNeedReloginException ex)
|
|
{
|
|
if (path.Length == 1 && ex.Mafile != null)
|
|
{
|
|
var mafile = ex.Mafile;
|
|
if (await HandleAddMafileWithoutSession(mafile))
|
|
{
|
|
added++;
|
|
}
|
|
else
|
|
{
|
|
errors++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
SnackbarController.SendSnackbar(
|
|
$"{GetLocalization("MafileImportError")} {Path.GetFileName(str)}{GetLocalization("MissingSessionInMafile")}",
|
|
TimeSpan.FromSeconds(4));
|
|
}
|
|
}
|
|
}
|
|
|
|
var msg = GetLocalization("Import");
|
|
if (added > 0)
|
|
{
|
|
msg += $" {GetLocalization("ImportAdded")} {added}.";
|
|
}
|
|
|
|
if (notAdded > 0)
|
|
{
|
|
msg += $" {GetLocalization("ImportSkipped")} {notAdded}.";
|
|
}
|
|
|
|
if (errors > 0)
|
|
{
|
|
msg += $" {GetLocalization("ImportErrors")} {errors}.";
|
|
}
|
|
|
|
SnackbarController.SendSnackbar(msg, TimeSpan.FromSeconds(2));
|
|
}
|
|
|
|
private async Task<bool> HandleAddMafileWithoutSession(Mafile data)
|
|
{
|
|
var loginAgainVm = await DialogsController.ShowLoginAgainOnImportDialog(data, Proxies);
|
|
if (loginAgainVm == null)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var password = loginAgainVm.Password;
|
|
if (!loginAgainVm.UseMafileProxy)
|
|
{
|
|
data.Proxy = loginAgainVm.SelectedProxy;
|
|
}
|
|
|
|
var waitDialog = new WaitLoginDialog();
|
|
var wait = DialogHost.Show(waitDialog);
|
|
try
|
|
{
|
|
await MaClient.LoginAgain(data, password, loginAgainVm.SavePassword);
|
|
SnackbarController.SendSnackbar(GetLocalization("SuccessfulLogin"));
|
|
}
|
|
catch (LoginException ex)
|
|
{
|
|
SnackbarController.SendSnackbar(ErrorTranslatorHelper.TranslateLoginError(ex.Error),
|
|
TimeSpan.FromSeconds(1.5));
|
|
}
|
|
catch (Exception ex)
|
|
when (ExceptionHandler.Handle(ex))
|
|
{
|
|
Shell.Logger.Error(ex);
|
|
}
|
|
finally
|
|
{
|
|
DialogsController.CloseDialog();
|
|
await wait;
|
|
}
|
|
|
|
var result = data.SessionData != null;
|
|
if (!result) return result;
|
|
Storage.SaveMafile(data);
|
|
{
|
|
ResetQuery();
|
|
SearchText = data.AccountName ?? string.Empty;
|
|
SelectedMafile = data;
|
|
} //As this operation used only for 1 mafile at time, we can safely assume that we can select it for convenience
|
|
return result;
|
|
}
|
|
|
|
[RelayCommand]
|
|
private async Task RemoveMafile()
|
|
{
|
|
if (SelectedMafile == null) return;
|
|
var confirm =
|
|
await DialogsController.ShowConfirmCancelDialog(GetLocalization("RemoveMafileConfirmation"));
|
|
|
|
if (!confirm) return;
|
|
try
|
|
{
|
|
Storage.MoveToRemoved(SelectedMafile);
|
|
}
|
|
catch (UnauthorizedAccessException)
|
|
{
|
|
SnackbarController.SendSnackbar(GetLocalization("CantRemoveAlreadyExist"));
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
SnackbarController.SendSnackbar(
|
|
$"{GetLocalization("CantRemoveMafile")} {ex.Message}");
|
|
}
|
|
}
|
|
|
|
[RelayCommand]
|
|
private async Task OpenSettingsDialog()
|
|
{
|
|
var vm = new SettingsVM();
|
|
var view = new SettingsView(CurrentDialogHost)
|
|
{
|
|
DataContext = vm
|
|
};
|
|
await DialogHost.Show(view);
|
|
}
|
|
|
|
[RelayCommand]
|
|
private async Task PasteMafilesFromClipboard()
|
|
{
|
|
StringCollection files;
|
|
try
|
|
{
|
|
files = Clipboard.GetFileDropList();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Shell.Logger.Error(ex);
|
|
return;
|
|
}
|
|
|
|
var arr = files.Cast<string>().ToArray();
|
|
if (arr.All(p => p.ContainsIgnoreCase("mafile") == false)) return;
|
|
|
|
|
|
await AddMafile(arr);
|
|
}
|
|
|
|
[RelayCommand]
|
|
private void CopyLogin(object? mafile)
|
|
{
|
|
if (mafile is not Mafile maf) return;
|
|
if (ClipboardHelper.Set(maf.AccountName))
|
|
SnackbarController.SendSnackbar(GetLocalization("LoginCopied"));
|
|
}
|
|
|
|
[RelayCommand]
|
|
private void CopySteamId(object? mafile)
|
|
{
|
|
if (mafile is not Mafile maf) return;
|
|
|
|
if (ClipboardHelper.Set(maf.SteamId.ToString()))
|
|
SnackbarController.SendSnackbar(GetLocalization("SteamIdCopied"));
|
|
}
|
|
|
|
[RelayCommand]
|
|
private void CopyMafile(object? mafile)
|
|
{
|
|
if (mafile is not Mafile maf) return;
|
|
var path = Storage.TryGetMafilePath(maf);
|
|
if (ClipboardHelper.SetFiles([path]))
|
|
SnackbarController.SendSnackbar(GetLocalization("MafileCopied"));
|
|
}
|
|
|
|
[RelayCommand(CanExecute = nameof(CanCopyPassword))]
|
|
private void CopyPassword(object? mafile)
|
|
{
|
|
if (mafile is not Mafile maf) return;
|
|
if (maf.Password == null) return;
|
|
try
|
|
{
|
|
var pass = PHandler.Decrypt(maf.Password);
|
|
if (ClipboardHelper.Set(pass))
|
|
SnackbarController.SendSnackbar(GetLocalization("PasswordCopied"));
|
|
}
|
|
catch
|
|
{
|
|
SnackbarController.SendSnackbar(GetLocalization("CantDecryptPassword"));
|
|
}
|
|
}
|
|
|
|
private bool CanCopyPassword(object? mafile)
|
|
{
|
|
if (mafile is not Mafile maf) return false;
|
|
return maf.Password != null && PHandler.IsPasswordSet;
|
|
}
|
|
} |