-
Notifications
You must be signed in to change notification settings - Fork 22
/
CreateWalletPrompt.cs
208 lines (186 loc) · 7.46 KB
/
CreateWalletPrompt.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TurtleWallet
{
public partial class CreateWalletPrompt : Form
{
public string walletPath
{
get;
set;
}
public string walletPassword
{
get;
set;
}
public CreateWalletPrompt()
{
InitializeComponent();
}
private void createWalletButton_MouseEnter(object sender, EventArgs e)
{
var backcolor = Color.FromArgb(44, 44, 44);
var forcolor = Color.FromArgb(39, 170, 107);
var currentButton = (Label)sender;
currentButton.BackColor = backcolor;
currentButton.ForeColor = forcolor;
}
private void createWalletButton_MouseLeave(object sender, EventArgs e)
{
var backcolor = Color.FromArgb(52, 52, 52);
var forcolor = Color.FromArgb(224, 224, 224);
var currentButton = (Label)sender;
currentButton.BackColor = backcolor;
currentButton.ForeColor = forcolor;
}
private void cancelButton_MouseEnter(object sender, EventArgs e)
{
var backcolor = Color.FromArgb(44, 44, 44);
var forcolor = Color.FromArgb(39, 170, 107);
var currentButton = (Label)sender;
currentButton.BackColor = backcolor;
currentButton.ForeColor = forcolor;
}
private void cancelButton_MouseLeave(object sender, EventArgs e)
{
var backcolor = Color.FromArgb(52, 52, 52);
var forcolor = Color.FromArgb(224, 224, 224);
var currentButton = (Label)sender;
currentButton.BackColor = backcolor;
currentButton.ForeColor = forcolor;
}
private void exitButton_MouseEnter(object sender, EventArgs e)
{
var forcolor = Color.FromArgb(39, 170, 107);
var currentButton = (Label)sender;
currentButton.ForeColor = forcolor;
}
private void exitButton_MouseLeave(object sender, EventArgs e)
{
var forcolor = Color.White;
var currentButton = (Label)sender;
currentButton.ForeColor = forcolor;
}
private void cancelButton_Click(object sender, EventArgs e)
{
DialogResult dialogResult = MessageBox.Show("Are you sure you want to cancel your Turtle Wallet creation?", "Cancel wallet creation?", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
this.DialogResult = DialogResult.Cancel;
this.Close();
}
}
private void exitButton_Click(object sender, EventArgs e)
{
DialogResult dialogResult = MessageBox.Show("Are you sure you want to cancel your Turtle Wallet creation?", "Cancel wallet creation?", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
this.DialogResult = DialogResult.Cancel;
this.Close();
}
}
private void createWalletButton_Click(object sender, EventArgs e)
{
createWallet();
}
private void walletNameText_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
createWallet();
}
}
private void createWallet()
{
if (walletNameText.Text == "")
{
MessageBox.Show("Please enter a valid wallet name", "Turtle Wallet Creation");
return;
}
else if (walletNameText.Text.Any(c => !Char.IsLetterOrDigit(c)))
{
MessageBox.Show("Wallet name cannot contain special characters", "Turtle Wallet Creation");
return;
}
if (passwordText.Text == "")
{
MessageBox.Show("Please enter a valid password", "Turtle Wallet Creation");
return;
}
else if (passwordText.Text.Length < 6)
{
MessageBox.Show("Please enter a password that is larger than 6 characters", "Turtle Wallet Creation");
return;
}
if (passwordText.Text != passwordConfirmText.Text)
{
MessageBox.Show("Passwords do not match", "Turtle Wallet Creation");
return;
}
var curDir = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
var _walletFile = System.IO.Path.Combine(curDir, walletNameText.Text + ".wallet");
var walletdexe = System.IO.Path.Combine(curDir, "walletd.exe");
if (!System.IO.File.Exists(walletdexe))
{
MessageBox.Show("The 'walletd.exe' daemon is missing from the folder the wallet is currently running from! Please place 'walletd.exe' next to your wallet exe and run again!", "Turtle Wallet Creation", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.DialogResult = DialogResult.Abort;
this.Close();
}
createProgressbar.Visible = true;
try
{
Process p = new Process();
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.FileName = walletdexe;
p.StartInfo.Arguments = "-w \"" + _walletFile + "\" -p " + passwordText.Text + " -g";
p.Start();
p.WaitForExit(10000);
if (!System.IO.File.Exists(_walletFile))
{
MessageBox.Show("Wallet failed to create after communicating with daemon. Please reinstall the wallet, close any other wallets you may have open, and try again", "Turtle Wallet Creation", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.DialogResult = DialogResult.Abort;
this.Close();
}
else
{
walletPath = _walletFile;
walletPassword = passwordText.Text;
MessageBox.Show("Wallet successfully created at: " + Environment.NewLine + _walletFile, "Turtle Wallet Creation", MessageBoxButtons.OK, MessageBoxIcon.Information);
this.DialogResult = DialogResult.OK;
this.Close();
}
}
catch (Exception ex)
{
MessageBox.Show("An exception occured while attempting to create the wallet." + Environment.NewLine + "Error:" + Environment.NewLine + ex.Message, "Turtle Wallet Creation", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.DialogResult = DialogResult.Abort;
this.Close();
}
}
private void passwordText_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
createWallet();
}
}
private void passwordConfirmText_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
createWallet();
}
}
}
}