2020-07-03 00:24:31 -07:00
|
|
|
using System;
|
2021-05-24 19:21:29 -07:00
|
|
|
using System.Diagnostics;
|
2020-07-03 00:24:31 -07:00
|
|
|
using System.IO;
|
2021-01-07 04:34:41 -08:00
|
|
|
using System.Net;
|
|
|
|
using System.Reflection;
|
|
|
|
using System.Text;
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
using System.Threading.Tasks;
|
2020-07-03 00:24:31 -07:00
|
|
|
using System.Windows;
|
|
|
|
|
|
|
|
namespace SourceGit {
|
|
|
|
|
|
|
|
/// <summary>
|
2021-04-29 05:05:55 -07:00
|
|
|
/// 程序入口.
|
2020-07-03 00:24:31 -07:00
|
|
|
/// </summary>
|
|
|
|
public partial class App : Application {
|
2021-05-24 19:21:29 -07:00
|
|
|
private static bool restart = false;
|
2020-12-23 04:40:12 -08:00
|
|
|
|
|
|
|
/// <summary>
|
2021-04-29 05:05:55 -07:00
|
|
|
/// 读取本地化字串
|
2020-12-23 04:40:12 -08:00
|
|
|
/// </summary>
|
2021-04-29 05:05:55 -07:00
|
|
|
/// <param name="key">本地化字串的Key</param>
|
|
|
|
/// <param name="args">可选格式化参数</param>
|
|
|
|
/// <returns>本地化字串</returns>
|
|
|
|
public static string Text(string key, params object[] args) {
|
|
|
|
var data = Current.FindResource($"Text.{key}") as string;
|
|
|
|
if (string.IsNullOrEmpty(data)) return $"Text.{key}";
|
|
|
|
return string.Format(data, args);
|
2020-12-23 04:40:12 -08:00
|
|
|
}
|
|
|
|
|
2021-05-24 19:21:29 -07:00
|
|
|
/// <summary>
|
|
|
|
/// 重启程序
|
|
|
|
/// </summary>
|
|
|
|
public static void Restart() {
|
|
|
|
restart = true;
|
|
|
|
Process.Start(Process.GetCurrentProcess().MainModule.FileName);
|
|
|
|
Current.Shutdown();
|
|
|
|
}
|
|
|
|
|
2020-07-03 00:24:31 -07:00
|
|
|
/// <summary>
|
2021-04-29 05:05:55 -07:00
|
|
|
/// 启动.
|
2020-07-03 00:24:31 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
/// <param name="e"></param>
|
|
|
|
private void OnAppStartup(object sender, StartupEventArgs e) {
|
2021-04-29 05:05:55 -07:00
|
|
|
// 创建必要目录
|
|
|
|
if (!Directory.Exists(Views.Controls.Avatar.CACHE_PATH)) {
|
|
|
|
Directory.CreateDirectory(Views.Controls.Avatar.CACHE_PATH);
|
2020-07-03 00:24:31 -07:00
|
|
|
}
|
|
|
|
|
2021-04-29 05:05:55 -07:00
|
|
|
// 控制主题
|
|
|
|
if (Models.Preference.Instance.General.UseDarkTheme) {
|
2020-07-03 00:24:31 -07:00
|
|
|
foreach (var rs in Current.Resources.MergedDictionaries) {
|
2021-04-29 05:05:55 -07:00
|
|
|
if (rs.Source != null && rs.Source.OriginalString.StartsWith("pack://application:,,,/Resources/Themes/", StringComparison.Ordinal)) {
|
|
|
|
rs.Source = new Uri("pack://application:,,,/Resources/Themes/Dark.xaml", UriKind.Absolute);
|
2020-07-03 00:24:31 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-29 05:05:55 -07:00
|
|
|
// 控制显示语言
|
|
|
|
var lang = Models.Preference.Instance.General.Locale;
|
|
|
|
if (lang != "en_US") {
|
2021-01-14 00:31:03 -08:00
|
|
|
foreach (var rs in Current.Resources.MergedDictionaries) {
|
2021-04-29 05:05:55 -07:00
|
|
|
if (rs.Source != null && rs.Source.OriginalString.StartsWith("pack://application:,,,/Resources/Locales/", StringComparison.Ordinal)) {
|
|
|
|
rs.Source = new Uri($"pack://application:,,,/Resources/Locales/{lang}.xaml", UriKind.Absolute);
|
2021-01-14 00:31:03 -08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-29 05:05:55 -07:00
|
|
|
// 主界面显示
|
|
|
|
MainWindow = new Views.Launcher();
|
2021-01-07 04:34:41 -08:00
|
|
|
MainWindow.Show();
|
|
|
|
|
2021-04-29 05:05:55 -07:00
|
|
|
// 如果启动命令中指定了路径,打开指定目录的仓库
|
|
|
|
if (e.Args.Length > 0) {
|
|
|
|
var repo = Models.Preference.Instance.FindRepository(e.Args[0]);
|
|
|
|
if (repo == null) {
|
|
|
|
var path = new Commands.GetRepositoryRootPath(e.Args[0]).Result();
|
|
|
|
if (path != null) {
|
|
|
|
var gitDir = new Commands.QueryGitDir(path).Result();
|
|
|
|
repo = Models.Preference.Instance.AddRepository(path, gitDir, "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (repo != null) Models.Watcher.Open(repo);
|
2021-07-05 18:58:36 -07:00
|
|
|
} else {
|
|
|
|
var restore = Models.Preference.Instance.Restore;
|
|
|
|
var actived = null as Models.Repository;
|
|
|
|
if (restore.IsEnabled && restore.Opened.Count > 0) {
|
|
|
|
foreach (var path in restore.Opened) {
|
|
|
|
var repo = Models.Preference.Instance.FindRepository(path);
|
|
|
|
if (repo != null) Models.Watcher.Open(repo);
|
|
|
|
if (path == restore.Actived) actived = repo;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (actived != null) Models.Watcher.Open(actived);
|
|
|
|
}
|
2021-04-29 05:05:55 -07:00
|
|
|
}
|
2021-01-31 17:39:14 -08:00
|
|
|
|
2021-04-29 05:05:55 -07:00
|
|
|
// 检测更新
|
|
|
|
if (Models.Preference.Instance.General.CheckForUpdate) {
|
|
|
|
var curDayOfYear = DateTime.Now.DayOfYear;
|
|
|
|
var lastDayOfYear = Models.Preference.Instance.General.LastCheckDay;
|
|
|
|
if (lastDayOfYear != curDayOfYear) {
|
|
|
|
Models.Preference.Instance.General.LastCheckDay = curDayOfYear;
|
|
|
|
Task.Run(() => {
|
|
|
|
try {
|
|
|
|
var web = new WebClient() { Encoding = Encoding.UTF8 };
|
|
|
|
var raw = web.DownloadString("https://gitee.com/api/v5/repos/sourcegit/SourceGit/releases/latest");
|
|
|
|
var ver = Models.Version.Load(raw);
|
|
|
|
var cur = Assembly.GetExecutingAssembly().GetName().Version;
|
|
|
|
|
|
|
|
var matches = Regex.Match(ver.TagName, @"^v(\d+)\.(\d+).*");
|
|
|
|
if (!matches.Success) return;
|
|
|
|
|
|
|
|
var major = int.Parse(matches.Groups[1].Value);
|
|
|
|
var minor = int.Parse(matches.Groups[2].Value);
|
|
|
|
if (major > cur.Major || (major == cur.Major && minor > cur.Minor)) {
|
|
|
|
Dispatcher.Invoke(() => Views.Upgrade.Open(MainWindow, ver));
|
|
|
|
}
|
|
|
|
} catch {}
|
|
|
|
});
|
|
|
|
}
|
2021-01-07 04:34:41 -08:00
|
|
|
}
|
2020-07-03 00:24:31 -07:00
|
|
|
}
|
|
|
|
|
2020-11-29 23:21:45 -08:00
|
|
|
/// <summary>
|
2021-04-29 05:05:55 -07:00
|
|
|
/// 后台运行
|
2020-11-29 23:21:45 -08:00
|
|
|
/// </summary>
|
2020-12-23 04:40:12 -08:00
|
|
|
/// <param name="sender"></param>
|
|
|
|
/// <param name="e"></param>
|
|
|
|
private void OnAppDeactivated(object sender, EventArgs e) {
|
2021-05-30 22:55:10 -07:00
|
|
|
GC.Collect();
|
2021-05-24 19:21:29 -07:00
|
|
|
if (!restart) Models.Preference.Save();
|
2021-01-07 04:34:41 -08:00
|
|
|
}
|
2020-07-03 00:24:31 -07:00
|
|
|
}
|
|
|
|
}
|