-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.cs
525 lines (448 loc) · 20.7 KB
/
MainForm.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
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
using TinyDRPC.Theme;
using DiscordRPC;
using TinyDRPC.Utils;
using BlueMystic;
using Microsoft.Win32;
using Newtonsoft.Json;
namespace TinyDRPC
{
public partial class MainForm : Form
{
public string CurrentVersion = "1.2";
private DiscordRpcClient? drpc;
public MainForm()
{
InitializeComponent();
}
private class VersionInfo
{
[JsonProperty("latestVersion")]
public string LatestVersion { get; set; }
[JsonProperty("download")]
public string Download { get; set; }
}
private bool ValidateUrl(string url)
{
return Uri.TryCreate(url, UriKind.Absolute, out Uri uriResult)
&& (uriResult.Scheme == Uri.UriSchemeHttp || uriResult.Scheme == Uri.UriSchemeHttps);
}
private void CheckForUpdate()
{
checkUpdateBtn.Enabled = false;
checkUpdateBtn.Text = "Checking...";
_ = this.Invoke(new MethodInvoker(async delegate ()
{
using var httpClient = new HttpClient(new HttpClientHandler { AllowAutoRedirect = true });
try
{
string jsonContent = await httpClient.GetStringAsync("https://michioxd.github.io/TinyDRPC/fetchVersion.json");
var versionInfo = JsonConvert.DeserializeObject<VersionInfo>(jsonContent);
checkUpdateBtn.Text = "Check update now";
checkUpdateBtn.Enabled = true;
if (versionInfo != null)
{
if (string.Compare(CurrentVersion, versionInfo.LatestVersion) < 0)
{
updateAvailableBtn.Visible = true;
updateAvailableBtn.Click += (object sender, EventArgs e) =>
{
DialogResult result = MessageBox.Show($"A newer version ({versionInfo.LatestVersion}) is available for download. Do you want to go to browser and download it?", "TinyDRPC Update Available", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (result == DialogResult.Yes)
{
new OpenBrowser(versionInfo.Download);
}
};
anUpdateIsAvailableToDownloadToolStripMenuItem.Visible = true;
anUpdateIsAvailableToDownloadToolStripMenuItem.Click += (object sender, EventArgs e) =>
{
DialogResult result = MessageBox.Show($"A newer version ({versionInfo.LatestVersion}) is available for download. Do you want to go to browser and download it?", "TinyDRPC Update Available", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (result == DialogResult.Yes)
{
new OpenBrowser(versionInfo.Download);
}
};
if (tinyDrpcNotifyIcon.Visible == true)
{
tinyDrpcNotifyIcon.BalloonTipIcon = ToolTipIcon.Info;
tinyDrpcNotifyIcon.BalloonTipText = $"A newer version ({versionInfo.LatestVersion}) is available for download. Click this notification to download now!";
tinyDrpcNotifyIcon.BalloonTipTitle = "An update of TinyRDPC is available to download";
tinyDrpcNotifyIcon.BalloonTipClicked += (object sender, EventArgs e) =>
{
DialogResult result = MessageBox.Show($"A newer version ({versionInfo.LatestVersion}) is available for download. Do you want to go to browser and download it?", "TinyDRPC Update Available", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (result == DialogResult.Yes)
{
new OpenBrowser(versionInfo.Download);
}
};
tinyDrpcNotifyIcon.ShowBalloonTip(5000);
}
}
}
}
catch (HttpRequestException ex)
{
checkUpdateBtn.Text = "Got error during check update";
checkUpdateBtn.Enabled = true;
}
}));
}
private void MainForm_Load(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
topText.Text = config.topText;
secondText.Text = config.bottomText;
discordAppId.Text = config.discordAppId;
button1Label.Text = config.button1Label;
button2Label.Text = config.button2Label;
button1URL.Text = config.button1Url;
button2URL.Text = config.button2Url;
largeImageKey.Text = config.largeImageKey;
largeImageText.Text = config.largeImageText;
smallImageKey.Text = config.smallImageKey;
enableButton1.CheckState = config.enableButton1 ? CheckState.Checked : CheckState.Unchecked;
enableButton2.CheckState = config.enableButton2 ? CheckState.Checked : CheckState.Unchecked;
runOnStartup.CheckState = config.runOnStartup ? CheckState.Checked : CheckState.Unchecked;
saveState.CheckState = config.saveRunningState ? CheckState.Checked : CheckState.Unchecked;
runMinimized.CheckState = config.runMinimized ? CheckState.Checked : CheckState.Unchecked;
checkUpdateOnStartup.CheckState = config.checkUpdateOnStartup ? CheckState.Checked : CheckState.Unchecked;
runMinimized.Enabled = runOnStartup.Checked;
versionLabel.Text = $"Version: {CurrentVersion} - powered by michioxd";
if (checkUpdateOnStartup.Checked)
{
CheckForUpdate();
}
if (config.saveRunningState == true && config.lastStateIsRunning == true)
{
prepareDaemon();
}
switch (SystemTheme.Status())
{
case 0: _ = new DarkModeCS(this); break;
}
if (config.runMinimized && config.runOnStartup)
{
System.Threading.Timer timer = new System.Threading.Timer(new TimerCallback((obj) =>
{
this.Invoke(new MethodInvoker(delegate ()
{
tinyDrpcNotifyIcon.Visible = true;
Hide();
}));
}), null, 100, Timeout.Infinite);
}
}
private void topText_TextChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.topText = topText.Text;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void secondText_TextChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.bottomText = secondText.Text;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void discordAppId_TextChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.discordAppId = discordAppId.Text;
configManager.SaveConfiguration(config);
}
private void button1Label_TextChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.button1Label = button1Label.Text;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void button2Label_TextChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.button2Label = button2Label.Text;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void button1URL_TextChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.button1Url = button1URL.Text;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void button2URL_TextChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.button2Url = button2URL.Text;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void enableButton1_CheckedChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.enableButton1 = enableButton1.Checked;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void enableButton2_CheckedChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.enableButton2 = enableButton2.Checked;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void largeImageKey_TextChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.largeImageKey = largeImageKey.Text;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void smallImageKey_TextChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.smallImageKey = smallImageKey.Text;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void largeImageText_TextChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.largeImageText = largeImageText.Text;
configManager.SaveConfiguration(config);
applyChange.Enabled = true;
}
private void runOnStartup_CheckedChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.runOnStartup = runOnStartup.Checked;
configManager.SaveConfiguration(config);
RegistryKey rk = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
if (runOnStartup.Checked)
rk.SetValue("TinyDRPC", Application.ExecutablePath);
else
rk.DeleteValue("TinyDRPC", false);
runMinimized.Enabled = runOnStartup.Checked;
}
private void saveState_CheckedChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.saveRunningState = saveState.Checked;
configManager.SaveConfiguration(config);
}
private void runMinimized_CheckedChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.runMinimized = runMinimized.Checked;
configManager.SaveConfiguration(config);
}
private void checkUpdateOnStartup_CheckedChanged(object sender, EventArgs e)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.checkUpdateOnStartup = checkUpdateOnStartup.Checked;
configManager.SaveConfiguration(config);
}
private void changeLastRunningState(Boolean state)
{
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
config.lastStateIsRunning = state;
configManager.SaveConfiguration(config);
}
private void changeButtonState(Boolean enableButton, String text)
{
startDaemon.Enabled = enableButton;
startDaemon.Text = text;
startDaemonContext.Text = text;
startDaemonContext.Enabled = enableButton;
discordAppId.Enabled = enableButton;
}
private void updateUICurrentStatus(String text)
{
status.Text = text;
}
private void updateStatus()
{
var buttons = new List<DiscordRPC.Button>();
if (enableButton1.Checked)
{
if (!ValidateUrl(button1URL.Text))
{
MessageBox.Show("Please enter a valid url at button 1 url", "Warning",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
else
{
buttons.Add(new DiscordRPC.Button()
{
Label = button1Label.Text ?? "No label",
Url = button1URL.Text
});
}
}
if (enableButton2.Checked)
{
if (!ValidateUrl(button2URL.Text))
{
MessageBox.Show("Please enter a valid url at button 2 url", "Warning",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
else
{
buttons.Add(new DiscordRPC.Button()
{
Label = button2Label.Text ?? "No label",
Url = button2URL.Text
});
}
}
drpc?.SetPresence(new RichPresence()
{
Details = topText.Text ?? "Please provide top text (TinyDRPC)",
State = secondText.Text ?? "Please provide bottom text (TinyDRPC)",
Buttons = buttons.ToArray(),
Assets = new Assets()
{
LargeImageKey = largeImageKey.Text,
LargeImageText = largeImageText.Text,
SmallImageKey = smallImageKey.Text
}
});
applyChange.Enabled = false;
}
private void prepareDaemon()
{
if (discordAppId.Text == "" || discordAppId.Text == null)
{
MessageBox.Show("Please provide Discord App ID.", "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
changeButtonState(false, "Starting daemon...");
updateUICurrentStatus("Starting daemon...");
this.Invoke(new MethodInvoker(delegate ()
{
drpc = new DiscordRpcClient(discordAppId.Text);
drpc.OnError += (s, e) =>
{
this.Invoke(new MethodInvoker(delegate ()
{
MessageBox.Show("Cannon start daemon: " + e + "\nMake sure you started Discord Client.", "Error while starting daemon",
MessageBoxButtons.OK, MessageBoxIcon.Error);
changeButtonState(true, "Start daemon");
updateUICurrentStatus("Tried to start but got error");
}));
return;
};
drpc.OnReady += (s, e) =>
{
this.Invoke(new MethodInvoker(delegate ()
{
changeButtonState(true, "Stop daemon");
updateUICurrentStatus("Running");
changeLastRunningState(true);
}));
};
drpc.Initialize();
updateStatus();
}));
}
private void handleStartDaemon()
{
if (drpc == null)
{
prepareDaemon();
}
else
{
drpc.Dispose();
drpc = null;
changeButtonState(true, "Start daemon");
updateUICurrentStatus("Stopped");
changeLastRunningState(false);
}
}
private void startDaemon_Click(object sender, EventArgs e)
{
handleStartDaemon();
}
private void applyChange_Click(object sender, EventArgs e)
{
updateStatus();
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
_ = new OpenBrowser("https://github.com/michioxd/TinyDRPC");
}
private void MainFormOnResize(object sender, EventArgs e)
{
if (WindowState == FormWindowState.Minimized)
{
Hide();
tinyDrpcNotifyIcon.Visible = true;
ConfigurationManager configManager = new ConfigurationManager();
TinyDRPC.Utils.Configuration config = configManager.LoadConfiguration();
if (config.minimizedAtFirst == false)
{
tinyDrpcNotifyIcon.BalloonTipIcon = ToolTipIcon.Info;
tinyDrpcNotifyIcon.BalloonTipText = "TinyDRPC is minimized in the system tray; to open the main window, double-click on this icon; you only see this tip once. Enjoy!";
tinyDrpcNotifyIcon.BalloonTipTitle = "TinyDRPC is now minimized at system tray";
tinyDrpcNotifyIcon.ShowBalloonTip(5000);
config.minimizedAtFirst = true;
configManager.SaveConfiguration(config);
}
}
}
private void TrayIconOnClick(object sender, MouseEventArgs e)
{
Show();
this.WindowState = FormWindowState.Normal;
tinyDrpcNotifyIcon.Visible = false;
}
private void showMainWindowToolStripMenuItem_Click(object sender, EventArgs e)
{
Show();
this.WindowState = FormWindowState.Normal;
tinyDrpcNotifyIcon.Visible = false;
}
private void startDaemonContext_Click(object sender, EventArgs e)
{
handleStartDaemon();
}
private void exitContext_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
new OpenBrowser("https://github.com/michioxd/TinyDRPC/tree/master?tab=readme-ov-file#how-to-get-discord-app-id");
}
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
new OpenBrowser("https://github.com/michioxd/TinyDRPC/tree/master?tab=readme-ov-file#how-to-get-image-key");
}
private void checkUpdateBtn_Click(object sender, EventArgs e)
{
CheckForUpdate();
}
}
}