-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainWindow.xaml.cs
233 lines (211 loc) · 8.04 KB
/
MainWindow.xaml.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
using ElectricShimmer.ViewModel;
using Ionic.Zip;
using MaterialDesignExtensions.Controls;
using MaterialDesignExtensions.Model;
using MaterialDesignThemes.Wpf;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
using System.Text.RegularExpressions;
using System.Windows;
using System.Windows.Threading;
namespace ElectricShimmer
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : MaterialWindow
{
public List<INavigationItem> NavigationItems { get; }
public MainWindow()
{
InitializeComponent();
Config.Init();
Log.Level = Config.LogLevel;
NavigationItems = new List<INavigationItem>()
{
new FirstLevelNavigationItem() { Label = "Wallet", Icon = PackIconKind.Wallet, NavigationItemSelectedCallback = item => new WalletViewModel() },
new FirstLevelNavigationItem() { Label = "Faucet", Icon = PackIconKind.Magic, NavigationItemSelectedCallback = item => new FaucetViewModel() },
new FirstLevelNavigationItem() { Label = "Settings", Icon = PackIconKind.Settings, NavigationItemSelectedCallback = item => new SettingsViewModel() },
};
new DispatcherTimer(
TimeSpan.Zero,
DispatcherPriority.Loaded,
dispatcherTimer_Tick,
Application.Current.Dispatcher);
}
private async void dispatcherTimer_Tick(object sender, EventArgs e)
{
try
{
(sender as DispatcherTimer).Stop();
bool IsUpdateEnabled = Config.IsUpdateEnabled;
if (IsUpdateEnabled && Updater.CheckUpdate())
{
MessageBoxResult result = (MessageBoxResult)await DialogHost.Show(new Controls.MaterialMessageBox("There is an Update available." + Environment.NewLine + "Do you want to update?", "Update", MessageBoxButton.YesNo), "MainDialogHost");
if (result == MessageBoxResult.Yes)
{
UpdateProgressBar.Visibility = Visibility.Visible;
Updater.Update();
}
else
{
if (!Check_CLI_Wallet())
Install_CLI_Wallet();
else
CloseSplashView(0);
}
}
else
{
if (!Check_CLI_Wallet())
Install_CLI_Wallet();
else
CloseSplashView(0);
}
}
catch (Exception exc)
{
Log.Write(exc.Message, LogLevel.EXCEPTION);
}
}
public void Install_CLI_Wallet()
{
try
{
Github goshimmer = new Github("https://api.github.com/repos/iotaledger/goshimmer/releases");
GithubObjects.Releases.Assets app = goshimmer.GetReleasebyAssetName("cli-wallet.*_Windows").assets.Where(x => Regex.Match(x.name, "cli-wallet.*_Windows").Success).ToList()[0];
string download_url = app.browser_download_url;
UpdateProgressBar.Visibility = Visibility.Visible;
using (WebClient wc = new WebClient())
{
wc.DownloadProgressChanged += DownloadProgressChanged;
wc.DownloadFileCompleted += (sender, args) =>
{
using (ZipFile zipFile = ZipFile.Read(app.name))
{
foreach (ZipEntry zipEntry in zipFile)
{
zipEntry.Extract(@".\", ExtractExistingFileAction.OverwriteSilently);
}
}
File.Delete(app.name);
UpdateProgressBar.Visibility = Visibility.Collapsed;
UpdateProgressBar.Value = 0;
CloseSplashView(0);
};
wc.DownloadFileAsync(
new Uri(download_url),
app.name
);
}
}
catch (Exception exc)
{
Log.Write(exc.Message, LogLevel.EXCEPTION);
}
}
public bool Check_CLI_Wallet()
{
try
{
ProcessStartInfo startinfo = new ProcessStartInfo()
{
RedirectStandardOutput = true,
RedirectStandardError = true,
FileName = Config.CliExecName,
UseShellExecute = false,
CreateNoWindow = true,
};
Process process = new Process() { StartInfo = startinfo };
try { process.Start(); }
catch (Win32Exception)
{
return false;
}
process.WaitForExit();
StreamReader sr = process.StandardOutput;
return sr.ReadToEnd().Contains("IOTA Pollen CLI-Wallet");
}
catch (Exception e)
{
Log.Write(e.Message, LogLevel.EXCEPTION);
return false;
}
}
public void DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
UpdateProgressBar.Value = e.ProgressPercentage;
}
public void DownloadFinished(object sender, AsyncCompletedEventArgs e)
{
UpdateProgressBar.Visibility = Visibility.Collapsed;
UpdateProgressBar.Value = 0;
Updater.FinishingUpdate();
}
private void CloseSplashView(int seconds)
{
try
{
DispatcherTimer dispatcherTimer = new DispatcherTimer();
dispatcherTimer.Tick += (_sender, _e) =>
{
SplashGrid.Visibility = Visibility.Collapsed;
navRail.SelectedItem = NavigationItems[0];
NavigationItems[0].IsSelected = true;
navRail.DataContext = this;
(_sender as DispatcherTimer).Stop();
};
dispatcherTimer.Interval = new TimeSpan(0, 0, seconds);
dispatcherTimer.Start();
}
catch (Exception exc)
{
Log.Write(exc.Message, LogLevel.EXCEPTION);
}
}
private void NavigationItemSelectedHandler(object sender, NavigationItemSelectedEventArgs args)
{
SelectNavigationItem(args.NavigationItem);
}
private void SelectNavigationItem(INavigationItem navigationItem)
{
if (navigationItem != null)
{
contentControl.Content = navigationItem.NavigationItemSelectedCallback(navigationItem);
}
else
{
contentControl.Content = null;
}
}
private void GoToElectricShimmerGitHub(object sender, RoutedEventArgs args)
{
OpenLink("https://github.com/Dr-Electron/ElectricShimmer");
}
private void GoToGoShimmerGitHub(object sender, RoutedEventArgs args)
{
OpenLink("https://github.com/iotaledger/goshimmer");
}
private void OpenLink(string url)
{
try
{
ProcessStartInfo psi = new ProcessStartInfo
{
FileName = url,
UseShellExecute = true
};
Process.Start(psi);
}
catch (Exception exc)
{
Log.Write(exc.Message, LogLevel.EXCEPTION);
}
}
}
}