-
Notifications
You must be signed in to change notification settings - Fork 1
/
Utils.cs
242 lines (214 loc) · 8.94 KB
/
Utils.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
using MapyCZforTS_CS.Localization;
using MapyCZforTS_CS.Properties;
using Microsoft.Win32;
using System;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Windows;
using Titanium.Web.Proxy;
namespace MapyCZforTS_CS
{
internal class Utils
{
public enum LOG_LEVEL
{
ERROR,
INFO,
VERBOSE
}
/// <summary>
/// Logs message.
/// </summary>
/// <param name="message">Message to log.</param>
/// <param name="level">Message level (0 - ERROR, 1 - INFO, 2 - VERBOSE)</param>
public static void Log(string message, LOG_LEVEL level = LOG_LEVEL.INFO)
{
if (level > LogLevel)
return;
try
{
DateTime dateTime = DateTime.Now;
if (LogFile == null)
{
LogPath = Path.Join(Path.GetTempPath(), $"MapyCZforTS_{dateTime:yyyyMMdd_HHmmss}.log");
LogFile = new(LogPath, false);
}
LogFile.WriteLine($"{dateTime:O} {level}: {message}");
LogFile.Flush();
}
catch { }
}
private static LOG_LEVEL LogLevel { get => Settings.Default.AdvancedLogging ? LOG_LEVEL.VERBOSE : LOG_LEVEL.INFO; }
public static string? LogPath { get; set; }
private static StreamWriter? LogFile { get; set; }
private const string CACHED_TILE_PATTERN = "*staticmap*";
public static void DeleteCachedTiles(DirectoryInfo cacheDir)
{
Utils.Log($"CACHE -> Deleting cached tiles in {cacheDir}", LOG_LEVEL.VERBOSE);
foreach (var cachedTile in cacheDir.GetFiles(CACHED_TILE_PATTERN, SearchOption.AllDirectories))
{
try
{
cachedTile.Delete();
}
catch { }
}
}
public static void CleanIECache()
{
string appdata = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
try
{
var newCache = new DirectoryInfo(Path.Join(appdata, "Microsoft", "Windows", "INetCache", "IE"));
if (newCache.Exists)
{
DeleteCachedTiles(newCache);
}
}
catch { }
try
{
var oldCache = new DirectoryInfo(Path.Join(appdata, "Microsoft", "Windows", "Temporary Internet Files", "Content.IE5"));
if (oldCache.Exists)
{
DeleteCachedTiles(oldCache);
}
}
catch { }
}
private static string? OldProxyHost;
private static string? OldProxyBypass;
private static string? OldProxyAutoconfig;
private static int OldProxyEnabled;
public static void DisableProxy()
{
Utils.Log("PROXY -> Restoring default proxy settings", LOG_LEVEL.VERBOSE);
try
{
var hreg = Registry.CurrentUser.CreateSubKey(Path.Join("Software", "Microsoft", "Windows", "CurrentVersion", "Internet Settings"), true);
if (hreg != null)
{
if (OldProxyHost != null)
{
hreg.SetValue("ProxyServer", OldProxyHost);
}
if (OldProxyBypass != null)
{
hreg.SetValue("ProxyOverride", OldProxyBypass);
}
if (OldProxyAutoconfig != null)
{
hreg.SetValue("AutoConfigURL", OldProxyAutoconfig);
}
hreg.SetValue("ProxyEnable", OldProxyEnabled);
}
}
catch (Exception e)
{
Utils.Log($"PROXY -> Failed to restore default proxy settings:{Environment.NewLine}{e}", LOG_LEVEL.ERROR);
string host = string.Empty, port = string.Empty;
if (OldProxyHost != null)
{
Uri uri = new(OldProxyHost);
host = uri.Host;
port = uri.Port.ToString();
}
string bypasses = string.Empty;
string excludeLocalhost = Localization.Strings.Unchecked;
if (OldProxyBypass != null)
{
bypasses = string.Join(';', OldProxyBypass.Split(';').Where(
x =>
{
if (x.ToLower() != "<local>")
return true;
excludeLocalhost = Localization.Strings.Checked;
return false;
}
));
}
MessageBox.Show(string.Format(Localization.Strings.ContentRestoreProxy, host, port, bypasses, excludeLocalhost), Localization.Strings.TitleRestoreProxy, MessageBoxButton.OK, MessageBoxImage.Warning);
}
finally
{
OldProxyHost = null;
OldProxyBypass = null;
OldProxyAutoconfig = null;
OldProxyEnabled = 0;
RefreshProxy();
}
}
public static Proxy EnableProxy()
{
Log("PROXY -> Applying custom proxy settings", LOG_LEVEL.VERBOSE);
try
{
var hreg = Registry.CurrentUser.CreateSubKey(Path.Join("Software", "Microsoft", "Windows", "CurrentVersion", "Internet Settings"), true);
if (hreg != null)
{
OldProxyHost = (string?)hreg.GetValue("ProxyServer");
if (OldProxyHost != null && !OldProxyHost.StartsWith("http://"))
OldProxyHost = "http://" + OldProxyHost;
OldProxyEnabled = (int?)hreg.GetValue("ProxyEnable") ?? 0;
OldProxyBypass = (string?)hreg.GetValue("ProxyOverride");
OldProxyAutoconfig = (string?)hreg.GetValue("AutoConfigURL");
try
{
SetProxyPort(hreg, Settings.Default.Port);
hreg.SetValue("ProxyEnable", 1);
hreg.DeleteValue("ProxyOverride", false);
hreg.DeleteValue("AutoConfigURL", false);
ProxyServer p = new();
}
catch (Exception e)
{
Log($"PROXY -> Failed to set registry values:{Environment.NewLine}{e}", LOG_LEVEL.ERROR);
MessageBox.Show(string.Format(Strings.ContentSetProxy, Settings.Default.Port), Strings.TitleSetProxy, MessageBoxButton.OK, MessageBoxImage.Warning);
}
if (OldProxyHost != null && OldProxyEnabled == 1)
{
Uri proxyUri = new(OldProxyHost);
if (proxyUri.Host != null) // && !proxyUri.IsDefaultPort)
{
bool bypassLocalhost = false;
if (OldProxyBypass != null)
{
string[] frags = OldProxyBypass.Split(';');
foreach (string frag in frags)
{
if (frag.ToLower() == "<local>")
{
bypassLocalhost = true;
break;
}
}
}
RefreshProxy();
return new(proxyUri.Host, proxyUri.Port, bypassLocalhost);
}
}
}
}
catch (Exception e)
{
Utils.Log($"PROXY -> Failed to set custom proxy settings:{Environment.NewLine}{e}", LOG_LEVEL.ERROR);
}
RefreshProxy();
return new();
}
private static void RefreshProxy()
{
Utils.Log("PROXY -> Applying networking changes", LOG_LEVEL.VERBOSE);
try
{
InternetSetOption(IntPtr.Zero, 39, IntPtr.Zero, 0);
InternetSetOption(IntPtr.Zero, 37, IntPtr.Zero, 0);
}
catch (Exception e) { Utils.Log($"PROXY -> Failed to apply networking changes:{Environment.NewLine}{e}", LOG_LEVEL.ERROR); }
}
[DllImport("wininet.dll")]
private static extern bool InternetSetOption(IntPtr hInternet, int dwOption, IntPtr lpBuffer, int dwBufferLength);
public static void SetProxyPort(RegistryKey? hreg, int port) => hreg?.SetValue("ProxyServer", $"http://localhost:{port}");
}
}