-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.cs
More file actions
367 lines (319 loc) · 11.1 KB
/
MainForm.cs
File metadata and controls
367 lines (319 loc) · 11.1 KB
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
using System;
using System.Drawing;
using System.Media;
using System.Threading;
using System.Windows.Forms;
using Microsoft.Win32;
namespace rtssh
{
public enum ConnectionStatus { Disconnected, Connecting, Connected }
public partial class MainForm : Form
{
#region Fields
private Thread _thread;
private const string RunRegKey = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run";
private readonly string _executablePath = "\"" + Application.ExecutablePath + "\"";
private const string AppName = "rtssh";
private readonly string[] _args;
#endregion
#region Constructor
public MainForm(string[] args)
{
InitializeComponent();
_args = args;
}
#endregion
#region Getters/Setters
public string JsonPathTextBox { set => jsonPathTextBox.Text = value; }
private ConnectionStatus _connectionStatus;
public ConnectionStatus ConnectionStatus
{
get => _connectionStatus;
set
{
switch (value)
{
case ConnectionStatus.Disconnected:
{
connectionStatusLabel.Text = @"Disconnected";
connectionStatusLabel.ForeColor = Color.Red;
break;
}
case ConnectionStatus.Connecting:
{
connectionStatusLabel.Text = @"Connecting";
connectionStatusLabel.ForeColor = Color.Orange;
break;
}
case ConnectionStatus.Connected:
{
connectionStatusLabel.Text = @"Connected";
connectionStatusLabel.ForeColor = Color.Green;
break;
}
default:
{
throw new ArgumentOutOfRangeException(nameof(value), value, null);
}
}
_connectionStatus = value;
}
}
#endregion
#region Events
private void MainForm_Load(object sender, EventArgs e)
{
InitializeValues();
}
private void connectButton_Click(object sender, EventArgs e)
{
Connect();
}
private void MainForm_FormClosed(object sender, FormClosedEventArgs e)
{
ThreadKiller();
}
private void keyBrowserButton_Click(object sender, EventArgs e)
{
fileBrowser.FileName = "";
fileBrowser.Title = @"Select private key file";
fileBrowser.Filter = @"All files (*.*)|*.*";
fileBrowser.ShowDialog();
if (string.IsNullOrEmpty(fileBrowser.FileName)) return;
keyTextBox.Text = fileBrowser.FileName;
}
private void trayIcon_MouseDoubleClick(object sender, MouseEventArgs e)
{
BringToForeground();
}
private void MainForm_SizeChanged(object sender, EventArgs e)
{
if (WindowState != FormWindowState.Minimized) return;
MinimizeToTray();
}
private void saveSettingsCheckBox_CheckedChanged(object sender, EventArgs e)
{
if (saveSettingsCheckBox.Checked) return;
Settings.Clear();
}
private void startupCheckBox_CheckedChanged(object sender, EventArgs e)
{
if (startupCheckBox.Checked)
{
AddToStartup();
}
else
{
RemoveFromStartup();
}
}
private void MainForm_Shown(object sender, EventArgs e)
{
if (_args == null || _args.Length <= 0) return;
if (_args[0].Equals("-silent"))
{
MinimizeToTray();
}
}
private void showStripMenuItem_Click(object sender, EventArgs e)
{
BringToForeground();
}
private void exitStripMenuItem_Click(object sender, EventArgs e)
{
Close();
}
private void jsonBrowserButton_Click(object sender, EventArgs e)
{
fileBrowser.FileName = "";
fileBrowser.Title = @"Select JSON file";
fileBrowser.Filter = @"json files (*.json)|*.json";
fileBrowser.ShowDialog();
if (string.IsNullOrEmpty(fileBrowser.FileName)) return;
var treeViewJson = new TreeViewJson(fileBrowser.FileName);
treeViewJson.ShowDialog();
}
#endregion
#region Methods
private void InitializeValues()
{
// Initialize all textboxes and checkboxes
usernameTextBox.Text = Properties.Settings.Default.username;
hostTextBox.Text = Properties.Settings.Default.host;
portTextBox.Text = Properties.Settings.Default.port;
keyTextBox.Text = Properties.Settings.Default.key;
jsonPathTextBox.Text = Properties.Settings.Default.jsonPath;
tempTextBox.Text = Properties.Settings.Default.tempText;
freqTextBox.Text = Properties.Settings.Default.freqText;
autoConnectCheckBox.Checked = Properties.Settings.Default.autoConnect;
saveSettingsCheckBox.Checked = Properties.Settings.Default.saveSettings;
spaceRadioButton.Checked = Properties.Settings.Default.separatorSpace;
RefreshIntervalNumeric.Text = Properties.Settings.Default.refreshInterval;
startupCheckBox.Checked = Properties.Settings.Default.startup;
if (!spaceRadioButton.Checked)
{
newLineRadioButton.Checked = true;
}
switch (Properties.Settings.Default.displayToggle)
{
// temp
case 0:
{
tempRadioButton.Checked = true;
break;
}
// freq
case 1:
{
freqRadioButton.Checked = true;
break;
}
// both
case 2:
{
bothRadioButton.Checked = true;
break;
}
}
// Connect if Auto Connect is enabled
if (usernameTextBox.Text.Length <= 0 || hostTextBox.Text.Length <= 0 || portTextBox.Text.Length <= 0 ||
keyTextBox.Text.Length <= 0 || jsonPathTextBox.Text.Length <= 0 || !autoConnectCheckBox.Checked) return;
Connect();
}
private void Connect()
{
ThreadKiller();
switch (usernameTextBox.Text.Length > 0)
{
case true when hostTextBox.Text.Length > 0 && portTextBox.Text.Length > 0 &&
keyTextBox.Text.Length > 0 && jsonPathTextBox.Text.Length > 0:
case true when hostTextBox.Text.Length > 0 && portTextBox.Text.Length > 0 &&
keyTextBox.Text.Length > 0 && freqRadioButton.Checked:
ThreadMaker();
break;
default:
{
SystemSounds.Beep.Play();
MessageBox.Show(freqRadioButton.Checked
? @"Fill all connection fields"
: @"Fill all connection fields and JSON Path");
break;
}
}
}
private void ThreadKiller()
{
// Check if a thread is running and kill it
try
{
if (_thread.IsAlive)
{
_thread.Abort();
}
}
catch
{
// ignored
}
}
private void ThreadMaker()
{
var displayToggle = DisplayToggle();
// Start new ssh connection thread
_thread = new Thread(() => SshStream.Start(
usernameTextBox.Text,
hostTextBox.Text,
int.Parse(portTextBox.Text),
keyTextBox.Text,
jsonPathTextBox.Text,
tempTextBox.Text,
freqTextBox.Text,
spaceRadioButton.Checked,
displayToggle,
RefreshIntervalNumeric.Text
));
_thread.Start();
SaveSettings(displayToggle);
}
private int DisplayToggle()
{
int displayToggle;
if (tempRadioButton.Checked)
{
displayToggle = 0;
}
else if (freqRadioButton.Checked)
{
displayToggle = 1;
}
//both
else
{
displayToggle = 2;
}
return displayToggle;
}
private void SaveSettings(int displayToggle)
{
// Save or clear settings
if (saveSettingsCheckBox.Checked)
{
Settings.Save(usernameTextBox.Text,
hostTextBox.Text,
portTextBox.Text,
keyTextBox.Text,
jsonPathTextBox.Text,
autoConnectCheckBox.Checked,
tempTextBox.Text,
freqTextBox.Text,
spaceRadioButton.Checked,
displayToggle,
RefreshIntervalNumeric.Text,
startupCheckBox.Checked);
}
}
private void AddToStartup()
{
// Add key to startup
if (IsInStartup()) return;
using (var key = Registry.CurrentUser.OpenSubKey(RunRegKey, true))
{
key?.SetValue(AppName, _executablePath + " -silent");
}
}
private void RemoveFromStartup()
{
// Remove key from startup
if (!IsInStartup()) return;
using (var key = Registry.CurrentUser.OpenSubKey(RunRegKey, true))
{
key?.DeleteValue(AppName, false);
}
}
private bool IsInStartup()
{
// Check if key exists
using (var key = Registry.CurrentUser.OpenSubKey(RunRegKey, true))
{
var value = key?.GetValue(AppName);
return value is string startValue && startValue.StartsWith(_executablePath);
}
}
private void MinimizeToTray()
{
// Hide form
Hide();
// Show tray icon
trayIcon.Visible = true;
}
private void BringToForeground()
{
Show();
// Bring form foreground
WindowState = FormWindowState.Normal;
// Hide tray icon
trayIcon.Visible = false;
}
#endregion
}
}