forked from plenteum/plenteum-wallet-winforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CreateWalletPrompt.cs
168 lines (148 loc) · 6.62 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
using System;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace PlenteumWallet
{
public partial class CreateWalletPrompt : PlenteumWalletForm
{
public string WalletPath { get; set; }
public string WalletPassword { get; set; }
public CreateWalletPrompt()
{
InitializeComponent();
this.Text = Application.ProductName;
}
protected override void OnFormClosing(FormClosingEventArgs e)
{
Utilities.CloseProgram(e);
}
private void CancelButton_Click(object sender, EventArgs e)
{
DialogResult dialogResult = MessageBox.Show("Are you sure you want to cancel your Plenteum Wallet creation?", "Cancel wallet creation?", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
Utilities.SetDialogResult(this, DialogResult.Cancel);
Utilities.Close(this);
}
}
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()
{
var curDir = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
var _walletFile = System.IO.Path.Combine(curDir, walletNameText.Text + ".wallet");
if (walletNameText.Text == "")
{
MessageBox.Show("Please enter a valid wallet name", "Plenteum Wallet Creation");
return;
}
else if (walletNameText.Text.Any(c => !Char.IsLetterOrDigit(c)))
{
MessageBox.Show("Wallet name cannot contain special characters", "Plenteum Wallet Creation");
return;
}
else if (System.IO.File.Exists(_walletFile))
{
MessageBox.Show("A wallet with that name already exists! Choose a different name or choose the \"Select Existing Wallet\" option instead.", "Plenteum Wallet Creation");
return;
}
if (passwordText.Text == "")
{
MessageBox.Show("Please enter a valid password", "Plenteum Wallet Creation");
return;
}
else if (passwordText.Text.Length < 6)
{
MessageBox.Show("Please enter a password that is larger than 6 characters", "Plenteum Wallet Creation");
return;
}
else if (passwordText.Text.Length > 150)
{
MessageBox.Show("Passwords cannot be longer than 150 characters!", "Plenteum Wallet Creation");
return;
}
if (passwordText.Text != passwordConfirmText.Text)
{
MessageBox.Show("Passwords do not match", "Plenteum Wallet Creation");
return;
}
var serviceexe = System.IO.Path.Combine(curDir, "wallet-service.exe");
if (IsRunningOnMono())
{
serviceexe = System.IO.Path.Combine(curDir, "wallet-service");
}
if (!System.IO.File.Exists(serviceexe))
{
MessageBox.Show("The 'wallet-service' daemon is missing from the folder the wallet is currently running from! Please place 'service' next to your wallet exe and run again!", "Plenteum Wallet Creation", MessageBoxButtons.OK, MessageBoxIcon.Error);
Utilities.SetDialogResult(this, DialogResult.Abort);
Utilities.Close(this);
}
createProgressbar.Visible = true;
StringBuilder tmpstdout = new StringBuilder();
try
{
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.FileName = serviceexe;
p.StartInfo.Arguments = CLIEncoder.Encode(new string[] {"-w", _walletFile, "-p", passwordText.Text, "-g"});
p.OutputDataReceived += (sender, args) => tmpstdout.AppendLine(args.Data);
p.Start();
p.BeginOutputReadLine();
p.WaitForExit(10000);
p.CancelOutputRead();
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", "Plenteum Wallet Creation", MessageBoxButtons.OK, MessageBoxIcon.Error);
Utilities.SetDialogResult(this, DialogResult.Abort);
Utilities.Close(this);
}
else
{
WalletPath = _walletFile;
WalletPassword = passwordText.Text;
MessageBox.Show("Wallet successfully created at: " + Environment.NewLine + _walletFile + Environment.NewLine + "IMPORTANT:" + Environment.NewLine + "As soon as the main GUI to the wallet opens, you should proceed to the 'BACKUP KEYS' tab to save your secret and view key in case of wallet failure in the future!", "Plenteum Wallet Creation", MessageBoxButtons.OK, MessageBoxIcon.Information);
Utilities.SetDialogResult(this, DialogResult.OK);
Utilities.Close(this);
}
}
catch (Exception ex)
{
MessageBox.Show("An exception occured while attempting to create the wallet." + Environment.NewLine + "Error:" + Environment.NewLine + ex.Message, "Plenteum Wallet Creation", MessageBoxButtons.OK, MessageBoxIcon.Error);
Utilities.SetDialogResult(this, DialogResult.Abort);
Utilities.Close(this);
}
}
public static bool IsRunningOnMono()
{
return Type.GetType("Mono.Runtime") != null;
}
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();
}
}
}
}