2022-10-13 13:05:43 +02:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Runtime.CompilerServices;
|
2023-07-14 09:56:50 +02:00
|
|
|
|
using System.Threading;
|
2022-10-26 14:02:31 +01:00
|
|
|
|
using global::PowerToys.GPOWrapper;
|
2025-11-05 09:42:31 +01:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Helpers;
|
2022-10-13 13:05:43 +02:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library.Helpers;
|
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library.Interfaces;
|
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library.ViewModels.Commands;
|
2024-08-08 15:26:43 +01:00
|
|
|
|
using PowerToys.Interop;
|
2022-10-13 13:05:43 +02:00
|
|
|
|
using Settings.UI.Library.Enumerations;
|
|
|
|
|
|
|
2022-10-26 14:02:31 +01:00
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
2022-10-13 13:05:43 +02:00
|
|
|
|
{
|
2025-02-25 02:48:54 +08:00
|
|
|
|
public partial class HostsViewModel : Observable
|
2022-10-13 13:05:43 +02:00
|
|
|
|
{
|
|
|
|
|
|
private bool _isElevated;
|
2022-10-26 14:02:31 +01:00
|
|
|
|
private GpoRuleConfigured _enabledGpoRuleConfiguration;
|
|
|
|
|
|
private bool _enabledStateIsGPOConfigured;
|
|
|
|
|
|
private bool _isEnabled;
|
2022-10-13 13:05:43 +02:00
|
|
|
|
|
|
|
|
|
|
private ISettingsUtils SettingsUtils { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
private GeneralSettings GeneralSettingsConfig { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
private HostsSettings Settings { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
private Func<string, int> SendConfigMSG { get; }
|
|
|
|
|
|
|
|
|
|
|
|
public ButtonClickCommand LaunchEventHandler => new ButtonClickCommand(Launch);
|
|
|
|
|
|
|
2025-11-05 09:42:31 +01:00
|
|
|
|
public ButtonClickCommand SelectBackupPathEventHandler => new ButtonClickCommand(SelectBackupPath);
|
|
|
|
|
|
|
2022-10-13 13:05:43 +02:00
|
|
|
|
public bool IsEnabled
|
|
|
|
|
|
{
|
2022-10-26 14:02:31 +01:00
|
|
|
|
get => _isEnabled;
|
2022-10-13 13:05:43 +02:00
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
2022-10-26 14:02:31 +01:00
|
|
|
|
if (_enabledStateIsGPOConfigured)
|
2022-10-13 13:05:43 +02:00
|
|
|
|
{
|
2022-10-26 14:02:31 +01:00
|
|
|
|
// If it's GPO configured, shouldn't be able to change this state.
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (value != _isEnabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
_isEnabled = value;
|
|
|
|
|
|
|
2022-10-13 13:05:43 +02:00
|
|
|
|
// Set the status in the general settings configuration
|
|
|
|
|
|
GeneralSettingsConfig.Enabled.Hosts = value;
|
|
|
|
|
|
OutGoingGeneralSettings snd = new OutGoingGeneralSettings(GeneralSettingsConfig);
|
|
|
|
|
|
|
|
|
|
|
|
SendConfigMSG(snd.ToString());
|
|
|
|
|
|
OnPropertyChanged(nameof(IsEnabled));
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-26 14:02:31 +01:00
|
|
|
|
public bool IsEnabledGpoConfigured
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _enabledStateIsGPOConfigured;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-13 13:05:43 +02:00
|
|
|
|
public bool LaunchAdministratorEnabled => IsEnabled && !_isElevated;
|
|
|
|
|
|
|
|
|
|
|
|
public bool ShowStartupWarning
|
|
|
|
|
|
{
|
|
|
|
|
|
get => Settings.Properties.ShowStartupWarning;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != Settings.Properties.ShowStartupWarning)
|
|
|
|
|
|
{
|
|
|
|
|
|
Settings.Properties.ShowStartupWarning = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-02-27 19:11:57 +01:00
|
|
|
|
public bool LoopbackDuplicates
|
|
|
|
|
|
{
|
|
|
|
|
|
get => Settings.Properties.LoopbackDuplicates;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != Settings.Properties.LoopbackDuplicates)
|
|
|
|
|
|
{
|
|
|
|
|
|
Settings.Properties.LoopbackDuplicates = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-13 13:05:43 +02:00
|
|
|
|
public bool LaunchAdministrator
|
|
|
|
|
|
{
|
|
|
|
|
|
get => Settings.Properties.LaunchAdministrator;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != Settings.Properties.LaunchAdministrator)
|
|
|
|
|
|
{
|
|
|
|
|
|
Settings.Properties.LaunchAdministrator = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-19 00:58:10 -05:00
|
|
|
|
public bool NoLeadingSpaces
|
|
|
|
|
|
{
|
|
|
|
|
|
get => Settings.Properties.NoLeadingSpaces;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != Settings.Properties.NoLeadingSpaces)
|
|
|
|
|
|
{
|
|
|
|
|
|
Settings.Properties.NoLeadingSpaces = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-13 13:05:43 +02:00
|
|
|
|
public int AdditionalLinesPosition
|
|
|
|
|
|
{
|
|
|
|
|
|
get => (int)Settings.Properties.AdditionalLinesPosition;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != (int)Settings.Properties.AdditionalLinesPosition)
|
|
|
|
|
|
{
|
2023-06-06 17:11:37 +02:00
|
|
|
|
Settings.Properties.AdditionalLinesPosition = (HostsAdditionalLinesPosition)value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int Encoding
|
|
|
|
|
|
{
|
|
|
|
|
|
get => (int)Settings.Properties.Encoding;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != (int)Settings.Properties.Encoding)
|
|
|
|
|
|
{
|
|
|
|
|
|
Settings.Properties.Encoding = (HostsEncoding)value;
|
2022-10-13 13:05:43 +02:00
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-05 09:42:31 +01:00
|
|
|
|
public bool BackupHosts
|
|
|
|
|
|
{
|
|
|
|
|
|
get => Settings.Properties.BackupHosts;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != Settings.Properties.BackupHosts)
|
|
|
|
|
|
{
|
|
|
|
|
|
Settings.Properties.BackupHosts = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public string BackupPath
|
|
|
|
|
|
{
|
|
|
|
|
|
get => Settings.Properties.BackupPath;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != Settings.Properties.BackupPath)
|
|
|
|
|
|
{
|
|
|
|
|
|
Settings.Properties.BackupPath = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int DeleteBackupsMode
|
|
|
|
|
|
{
|
|
|
|
|
|
get => (int)Settings.Properties.DeleteBackupsMode;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != (int)Settings.Properties.DeleteBackupsMode)
|
|
|
|
|
|
{
|
|
|
|
|
|
Settings.Properties.DeleteBackupsMode = (HostsDeleteBackupMode)value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
OnPropertyChanged(nameof(MinimumBackupsCount));
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int DeleteBackupsDays
|
|
|
|
|
|
{
|
|
|
|
|
|
get => Settings.Properties.DeleteBackupsDays;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != Settings.Properties.DeleteBackupsDays)
|
|
|
|
|
|
{
|
|
|
|
|
|
Settings.Properties.DeleteBackupsDays = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int DeleteBackupsCount
|
|
|
|
|
|
{
|
|
|
|
|
|
get => Settings.Properties.DeleteBackupsCount;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != Settings.Properties.DeleteBackupsCount)
|
|
|
|
|
|
{
|
|
|
|
|
|
Settings.Properties.DeleteBackupsCount = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int MinimumBackupsCount => DeleteBackupsMode == 1 ? 1 : 0;
|
|
|
|
|
|
|
2022-10-13 13:05:43 +02:00
|
|
|
|
public HostsViewModel(ISettingsUtils settingsUtils, ISettingsRepository<GeneralSettings> settingsRepository, ISettingsRepository<HostsSettings> moduleSettingsRepository, Func<string, int> ipcMSGCallBackFunc, bool isElevated)
|
|
|
|
|
|
{
|
|
|
|
|
|
SettingsUtils = settingsUtils;
|
|
|
|
|
|
GeneralSettingsConfig = settingsRepository.SettingsConfig;
|
|
|
|
|
|
Settings = moduleSettingsRepository.SettingsConfig;
|
|
|
|
|
|
SendConfigMSG = ipcMSGCallBackFunc;
|
|
|
|
|
|
_isElevated = isElevated;
|
2023-01-31 00:00:11 +01:00
|
|
|
|
InitializeEnabledValue();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void InitializeEnabledValue()
|
|
|
|
|
|
{
|
2022-10-26 14:02:31 +01:00
|
|
|
|
_enabledGpoRuleConfiguration = GPOWrapper.GetConfiguredHostsFileEditorEnabledValue();
|
|
|
|
|
|
if (_enabledGpoRuleConfiguration == GpoRuleConfigured.Disabled || _enabledGpoRuleConfiguration == GpoRuleConfigured.Enabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Get the enabled state from GPO.
|
|
|
|
|
|
_enabledStateIsGPOConfigured = true;
|
|
|
|
|
|
_isEnabled = _enabledGpoRuleConfiguration == GpoRuleConfigured.Enabled;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
_isEnabled = GeneralSettingsConfig.Enabled.Hosts;
|
|
|
|
|
|
}
|
2022-10-13 13:05:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void Launch()
|
|
|
|
|
|
{
|
2023-07-14 09:56:50 +02:00
|
|
|
|
string eventName = !_isElevated && LaunchAdministrator
|
|
|
|
|
|
? Constants.ShowHostsAdminSharedEvent()
|
|
|
|
|
|
: Constants.ShowHostsSharedEvent();
|
2022-10-13 13:05:43 +02:00
|
|
|
|
|
2023-07-14 09:56:50 +02:00
|
|
|
|
using (var eventHandle = new EventWaitHandle(false, EventResetMode.AutoReset, eventName))
|
2022-10-13 13:05:43 +02:00
|
|
|
|
{
|
2023-07-14 09:56:50 +02:00
|
|
|
|
eventHandle.Set();
|
2022-10-13 13:05:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void NotifyPropertyChanged([CallerMemberName] string propertyName = null)
|
|
|
|
|
|
{
|
|
|
|
|
|
OnPropertyChanged(propertyName);
|
|
|
|
|
|
SettingsUtils.SaveSettings(Settings.ToJsonString(), HostsSettings.ModuleName);
|
|
|
|
|
|
}
|
2023-01-31 00:00:11 +01:00
|
|
|
|
|
|
|
|
|
|
public void RefreshEnabledState()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeEnabledValue();
|
|
|
|
|
|
OnPropertyChanged(nameof(IsEnabled));
|
|
|
|
|
|
}
|
2025-11-05 09:42:31 +01:00
|
|
|
|
|
|
|
|
|
|
public void SelectBackupPath()
|
|
|
|
|
|
{
|
|
|
|
|
|
// This function was changed to use the shell32 API to open folder dialog
|
|
|
|
|
|
// as the old one (PickSingleFolderAsync) can't work when the process is elevated
|
|
|
|
|
|
// TODO: go back PickSingleFolderAsync when it's fixed
|
|
|
|
|
|
var hwnd = WinRT.Interop.WindowNative.GetWindowHandle(App.GetSettingsWindow());
|
|
|
|
|
|
var result = ShellGetFolder.GetFolderDialog(hwnd);
|
|
|
|
|
|
if (!string.IsNullOrEmpty(result))
|
|
|
|
|
|
{
|
|
|
|
|
|
BackupPath = result;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-10-13 13:05:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|