mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
f39144cc51
Auto update improvements: Updater
391 lines
13 KiB
C#
391 lines
13 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using Wox.Core;
|
|
using Wox.Core.Plugin;
|
|
using Wox.Core.Resource;
|
|
using Wox.Helper;
|
|
using Wox.Infrastructure;
|
|
using Wox.Infrastructure.Http;
|
|
using Wox.Infrastructure.Storage;
|
|
using Wox.Infrastructure.UserSettings;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.ViewModel
|
|
{
|
|
public class SettingWindowViewModel : BaseModel
|
|
{
|
|
private readonly Updater _updater;
|
|
private readonly WoxJsonStorage<Settings> _storage;
|
|
|
|
public SettingWindowViewModel(Updater updater)
|
|
{
|
|
_updater = updater;
|
|
_storage = new WoxJsonStorage<Settings>();
|
|
Settings = _storage.Load();
|
|
Settings.PropertyChanged += (s, e) =>
|
|
{
|
|
if (e.PropertyName == nameof(Settings.ActivateTimes))
|
|
{
|
|
OnPropertyChanged(nameof(ActivatedTimes));
|
|
}
|
|
};
|
|
|
|
|
|
}
|
|
|
|
public Settings Settings { get; set; }
|
|
|
|
public async void UpdateApp()
|
|
{
|
|
await _updater.UpdateApp();
|
|
}
|
|
|
|
public void Save()
|
|
{
|
|
_storage.Save();
|
|
}
|
|
|
|
#region general
|
|
|
|
// todo a better name?
|
|
public class LastQueryMode
|
|
{
|
|
public string Display { get; set; }
|
|
public Infrastructure.UserSettings.LastQueryMode Value { get; set; }
|
|
}
|
|
public List<LastQueryMode> LastQueryModes
|
|
{
|
|
get
|
|
{
|
|
List<LastQueryMode> modes = new List<LastQueryMode>();
|
|
var enums = (Infrastructure.UserSettings.LastQueryMode[])Enum.GetValues(typeof(Infrastructure.UserSettings.LastQueryMode));
|
|
foreach (var e in enums)
|
|
{
|
|
var key = $"LastQuery{e}";
|
|
var display = _translater.GetTranslation(key);
|
|
var m = new LastQueryMode { Display = display, Value = e, };
|
|
modes.Add(m);
|
|
}
|
|
return modes;
|
|
}
|
|
}
|
|
|
|
public List<string> QuerySearchPrecisionStrings
|
|
{
|
|
get
|
|
{
|
|
var precisionStrings = new List<string>();
|
|
|
|
var enumList = Enum.GetValues(typeof(StringMatcher.SearchPrecisionScore)).Cast<StringMatcher.SearchPrecisionScore>().ToList();
|
|
|
|
enumList.ForEach(x => precisionStrings.Add(x.ToString()));
|
|
|
|
return precisionStrings;
|
|
}
|
|
}
|
|
|
|
private Internationalization _translater => InternationalizationManager.Instance;
|
|
public List<Language> Languages => _translater.LoadAvailableLanguages();
|
|
public IEnumerable<int> MaxResultsRange => Enumerable.Range(2, 16);
|
|
|
|
public string TestProxy()
|
|
{
|
|
var proxyServer = Settings.Proxy.Server;
|
|
var proxyUserName = Settings.Proxy.UserName;
|
|
if (string.IsNullOrEmpty(proxyServer))
|
|
{
|
|
return InternationalizationManager.Instance.GetTranslation("serverCantBeEmpty");
|
|
}
|
|
if (Settings.Proxy.Port <= 0)
|
|
{
|
|
return InternationalizationManager.Instance.GetTranslation("portCantBeEmpty");
|
|
}
|
|
|
|
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(_updater.GitHubRepository);
|
|
|
|
if (string.IsNullOrEmpty(proxyUserName) || string.IsNullOrEmpty(Settings.Proxy.Password))
|
|
{
|
|
request.Proxy = new WebProxy(proxyServer, Settings.Proxy.Port);
|
|
}
|
|
else
|
|
{
|
|
request.Proxy = new WebProxy(proxyServer, Settings.Proxy.Port)
|
|
{
|
|
Credentials = new NetworkCredential(proxyUserName, Settings.Proxy.Password)
|
|
};
|
|
}
|
|
try
|
|
{
|
|
var response = (HttpWebResponse)request.GetResponse();
|
|
if (response.StatusCode == HttpStatusCode.OK)
|
|
{
|
|
return InternationalizationManager.Instance.GetTranslation("proxyIsCorrect");
|
|
}
|
|
else
|
|
{
|
|
return InternationalizationManager.Instance.GetTranslation("proxyConnectFailed");
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
return InternationalizationManager.Instance.GetTranslation("proxyConnectFailed");
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region plugin
|
|
|
|
public static string Plugin => "http://www.wox.one/plugin";
|
|
public PluginViewModel SelectedPlugin { get; set; }
|
|
|
|
public IList<PluginViewModel> PluginViewModels
|
|
{
|
|
get
|
|
{
|
|
var plugins = PluginManager.AllPlugins;
|
|
var settings = Settings.PluginSettings.Plugins;
|
|
plugins.Sort((a, b) =>
|
|
{
|
|
var d1 = settings[a.Metadata.ID].Disabled;
|
|
var d2 = settings[b.Metadata.ID].Disabled;
|
|
if (d1 == d2)
|
|
{
|
|
return string.Compare(a.Metadata.Name, b.Metadata.Name, StringComparison.CurrentCulture);
|
|
}
|
|
else
|
|
{
|
|
return d1.CompareTo(d2);
|
|
}
|
|
});
|
|
|
|
var metadatas = plugins.Select(p => new PluginViewModel
|
|
{
|
|
PluginPair = p,
|
|
}).ToList();
|
|
return metadatas;
|
|
}
|
|
}
|
|
|
|
public Control SettingProvider
|
|
{
|
|
get
|
|
{
|
|
var settingProvider = SelectedPlugin.PluginPair.Plugin as ISettingProvider;
|
|
if (settingProvider != null)
|
|
{
|
|
var control = settingProvider.CreateSettingPanel();
|
|
control.HorizontalAlignment = HorizontalAlignment.Stretch;
|
|
control.VerticalAlignment = VerticalAlignment.Stretch;
|
|
return control;
|
|
}
|
|
else
|
|
{
|
|
return new Control();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
#region theme
|
|
|
|
public static string Theme => @"http://www.wox.one/theme/builder";
|
|
|
|
public string SelectedTheme
|
|
{
|
|
get { return Settings.Theme; }
|
|
set
|
|
{
|
|
Settings.Theme = value;
|
|
ThemeManager.Instance.ChangeTheme(value);
|
|
}
|
|
}
|
|
|
|
public List<string> Themes
|
|
=> ThemeManager.Instance.LoadAvailableThemes().Select(Path.GetFileNameWithoutExtension).ToList();
|
|
|
|
public Brush PreviewBackground
|
|
{
|
|
get
|
|
{
|
|
var wallpaper = WallpaperPathRetrieval.GetWallpaperPath();
|
|
if (wallpaper != null && File.Exists(wallpaper))
|
|
{
|
|
var memStream = new MemoryStream(File.ReadAllBytes(wallpaper));
|
|
var bitmap = new BitmapImage();
|
|
bitmap.BeginInit();
|
|
bitmap.StreamSource = memStream;
|
|
bitmap.EndInit();
|
|
var brush = new ImageBrush(bitmap) { Stretch = Stretch.UniformToFill };
|
|
return brush;
|
|
}
|
|
else
|
|
{
|
|
var wallpaperColor = WallpaperPathRetrieval.GetWallpaperColor();
|
|
var brush = new SolidColorBrush(wallpaperColor);
|
|
return brush;
|
|
}
|
|
}
|
|
}
|
|
|
|
public ResultsViewModel PreviewResults
|
|
{
|
|
get
|
|
{
|
|
var results = new List<Result>
|
|
{
|
|
new Result
|
|
{
|
|
Title = "WoX is a launcher for Windows that simply works.",
|
|
SubTitle = "You can call it Windows omni-eXecutor if you want a long name."
|
|
},
|
|
new Result
|
|
{
|
|
Title = "Search for everything—applications, folders, files and more.",
|
|
SubTitle = "Use pinyin to search for programs. (yyy / wangyiyun → 网易云音乐)"
|
|
},
|
|
new Result
|
|
{
|
|
Title = "Keyword plugin search.",
|
|
SubTitle = "search google with g search_term."
|
|
},
|
|
new Result
|
|
{
|
|
Title = "Build custom themes at: ",
|
|
SubTitle = Theme
|
|
},
|
|
new Result
|
|
{
|
|
Title = "Install plugins from: ",
|
|
SubTitle = Plugin
|
|
},
|
|
new Result
|
|
{
|
|
Title = $"Open Source: {_updater.GitHubRepository}",
|
|
SubTitle = "Please star it!"
|
|
}
|
|
};
|
|
var vm = new ResultsViewModel();
|
|
vm.AddResults(results, "PREVIEW");
|
|
return vm;
|
|
}
|
|
}
|
|
|
|
public FontFamily SelectedQueryBoxFont
|
|
{
|
|
get
|
|
{
|
|
if (Fonts.SystemFontFamilies.Count(o =>
|
|
o.FamilyNames.Values != null &&
|
|
o.FamilyNames.Values.Contains(Settings.QueryBoxFont)) > 0)
|
|
{
|
|
var font = new FontFamily(Settings.QueryBoxFont);
|
|
return font;
|
|
}
|
|
else
|
|
{
|
|
var font = new FontFamily("Segoe UI");
|
|
return font;
|
|
}
|
|
}
|
|
set
|
|
{
|
|
Settings.QueryBoxFont = value.ToString();
|
|
ThemeManager.Instance.ChangeTheme(Settings.Theme);
|
|
}
|
|
}
|
|
|
|
public FamilyTypeface SelectedQueryBoxFontFaces
|
|
{
|
|
get
|
|
{
|
|
var typeface = SyntaxSugars.CallOrRescueDefault(
|
|
() => SelectedQueryBoxFont.ConvertFromInvariantStringsOrNormal(
|
|
Settings.QueryBoxFontStyle,
|
|
Settings.QueryBoxFontWeight,
|
|
Settings.QueryBoxFontStretch
|
|
));
|
|
return typeface;
|
|
}
|
|
set
|
|
{
|
|
Settings.QueryBoxFontStretch = value.Stretch.ToString();
|
|
Settings.QueryBoxFontWeight = value.Weight.ToString();
|
|
Settings.QueryBoxFontStyle = value.Style.ToString();
|
|
ThemeManager.Instance.ChangeTheme(Settings.Theme);
|
|
}
|
|
}
|
|
|
|
public FontFamily SelectedResultFont
|
|
{
|
|
get
|
|
{
|
|
if (Fonts.SystemFontFamilies.Count(o =>
|
|
o.FamilyNames.Values != null &&
|
|
o.FamilyNames.Values.Contains(Settings.ResultFont)) > 0)
|
|
{
|
|
var font = new FontFamily(Settings.ResultFont);
|
|
return font;
|
|
}
|
|
else
|
|
{
|
|
var font = new FontFamily("Segoe UI");
|
|
return font;
|
|
}
|
|
}
|
|
set
|
|
{
|
|
Settings.ResultFont = value.ToString();
|
|
ThemeManager.Instance.ChangeTheme(Settings.Theme);
|
|
}
|
|
}
|
|
|
|
public FamilyTypeface SelectedResultFontFaces
|
|
{
|
|
get
|
|
{
|
|
var typeface = SyntaxSugars.CallOrRescueDefault(
|
|
() => SelectedResultFont.ConvertFromInvariantStringsOrNormal(
|
|
Settings.ResultFontStyle,
|
|
Settings.ResultFontWeight,
|
|
Settings.ResultFontStretch
|
|
));
|
|
return typeface;
|
|
}
|
|
set
|
|
{
|
|
Settings.ResultFontStretch = value.Stretch.ToString();
|
|
Settings.ResultFontWeight = value.Weight.ToString();
|
|
Settings.ResultFontStyle = value.Style.ToString();
|
|
ThemeManager.Instance.ChangeTheme(Settings.Theme);
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region hotkey
|
|
|
|
public CustomPluginHotkey SelectedCustomPluginHotkey { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region about
|
|
|
|
public string Github => _updater.GitHubRepository;
|
|
public string ReleaseNotes => _updater.GitHubRepository + @"/releases/latest";
|
|
public static string Version => Constant.Version;
|
|
public string ActivatedTimes => string.Format(_translater.GetTranslation("about_activate_times"), Settings.ActivateTimes);
|
|
#endregion
|
|
}
|
|
}
|