-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
219 lines (205 loc) · 9.52 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
using Microsoft.Win32;
using Newtonsoft.Json.Linq;
using Serilog;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Security.Cryptography;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace YoutubePlayer
{
static class Program
{
private static Update update;
[STAThread]
static void Main(string[] args)
{
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledExceptionAsync);
Log.Logger = new LoggerConfiguration()
.WriteTo.File("error.log")
.CreateLogger();
Log.Information($"Using os: {getOSInfo()}");
Log.Information($"Software version: {Version.Parse(Application.ProductVersion).ToString()}");
const string subkey = @"SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\";
using (RegistryKey ndpKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry32).OpenSubKey(subkey))
{
if (ndpKey != null && ndpKey.GetValue("Release") != null)
{
int relKey = (int)ndpKey.GetValue("Release");
if (relKey < 461808)
{
MessageBox.Show("Это приложение требует установленного в системе .net framework версии 4.7.2 или позднее. Нажмите OK, что бы скачать данную версию с официального сайта microsoft и установите его", "Внимание");
Process.Start(@"https://dotnet.microsoft.com/download/thank-you/net472");
Environment.Exit(0);
}
}
}
try
{
if (File.Exists(AppDomain.CurrentDomain.FriendlyName + ".back")) File.Delete(AppDomain.CurrentDomain.FriendlyName + ".back");
}
catch (System.UnauthorizedAccessException)
{
}
var values = new Dictionary<string, string>
{
{"method", "checkupdate"}
};
Task<string> task = Task.Run(() => HttpRequest.GetRequest(values));
task.Wait();
string response = task.Result;
update = JToken.Parse(response).ToObject<Update>();
if (Version.Parse(Application.ProductVersion) < Version.Parse(update.Version))
{
string value = update.Changes;
DialogResult changesDialog = InputBox.Show("Доступно обновление", $"новая версия {update.Version} {Application.ProductName} доступна для скачивания. нажмите ok для скачивания и установки данного обновления, или отмену для последующей установки.", ref value, true, true);
if (changesDialog == DialogResult.OK)
{
File.Move(AppDomain.CurrentDomain.FriendlyName, AppDomain.CurrentDomain.FriendlyName + ".back");
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12 | SecurityProtocolType.Ssl3;
using (var wC = new WebClient())
{
wC.DownloadFileCompleted += new AsyncCompletedEventHandler(UpdateCompleted);
try
{
wC.DownloadFileAsync(new Uri(update.Download), AppDomain.CurrentDomain.FriendlyName);
}
catch (System.Net.WebException) {
MessageBox.Show("По некоторым причинам не удалось автоматически обновить программы. Откроется браузер для скачивания файла.", "Ошибка");
System.Diagnostics.Process.Start(update.Download);
}
}
}
else
{
Environment.Exit(0);
}
}
else
{
Application.ThreadException += new ThreadExceptionEventHandler(Application_ThreadExceptionAsync);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
static async void Application_ThreadExceptionAsync(object sender, ThreadExceptionEventArgs e)
{
await HandleExceptionsAsync(e.Exception);
}
static async void CurrentDomain_UnhandledExceptionAsync(object sender, UnhandledExceptionEventArgs e)
{
await HandleExceptionsAsync((e.ExceptionObject as Exception));
}
static async Task HandleExceptionsAsync(Exception e)
{
Log.Error(e.ToString());
DialogResult dialogResult = MessageBox.Show($"Возникла непредвиденная ошибка: {e.Message}. Нажмите Да что бы продолжить работу, или Нет для выхода из приложения. Пожалуйста отправьте отчет из окна \"Сообщить об ошибке\", подробно описав ошибку и приложив содержимое файла \"Error.log\"", "Ошибка", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.No)
{
Environment.Exit(0);
}
}
private static void UpdateCompleted(object sender, AsyncCompletedEventArgs e)
{
if (GetMD5HashFromFile(AppDomain.CurrentDomain.FriendlyName) == update.CheckSum)
{
Application.Restart();
}
else
{
MessageBox.Show("контрольные суммы файлов не совпадают. будет возвращена старая версия. пожалуйста попробуйте еще раз.", "Ошибка");
File.Delete(AppDomain.CurrentDomain.FriendlyName);
File.Move(AppDomain.CurrentDomain.FriendlyName + ".back", AppDomain.CurrentDomain.FriendlyName);
Application.ThreadException += new ThreadExceptionEventHandler(Application_ThreadExceptionAsync);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
private static string GetMD5HashFromFile(string filename)
{
using (var md5 = MD5.Create())
{
using (var stream = File.OpenRead(filename))
{
return BitConverter.ToString(md5.ComputeHash(stream)).Replace("-", string.Empty).ToLowerInvariant();
}
}
}
static string getOSInfo()
{
OperatingSystem os = Environment.OSVersion; Version vs = os.Version;
string operatingSystem = "";
if (os.Platform == PlatformID.Win32Windows)
{
switch (vs.Minor)
{
case 0:
operatingSystem = "95";
break;
case 10:
if (vs.Revision.ToString() == "2222A")
operatingSystem = "98SE";
else
operatingSystem = "98";
break;
case 90:
operatingSystem = "Me";
break;
default:
break;
}
}
else if (os.Platform == PlatformID.Win32NT)
{
switch (vs.Major)
{
case 3:
operatingSystem = "NT 3.51";
break;
case 4:
operatingSystem = "NT 4.0";
break;
case 5:
if (vs.Minor == 0)
operatingSystem = "2000";
else
operatingSystem = "XP";
break;
case 6:
if (vs.Minor == 0)
operatingSystem = "Vista";
else if (vs.Minor == 1)
operatingSystem = "7";
else if (vs.Minor == 2)
operatingSystem = "8";
else
operatingSystem = "8.1";
break;
case 10:
operatingSystem = "10";
break;
default:
break;
}
}
if (operatingSystem != "")
{
operatingSystem = "Windows " + operatingSystem;
if (os.ServicePack != "")
{
operatingSystem += " " + os.ServicePack;
}
//operatingSystem += " " + getOSArchitecture().ToString() + "-bit";
}
return operatingSystem;
}
}
}