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
|
using NetSockets;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using ShiftUI;
namespace ShiftOS
{
public partial class BitnoteWallet : Form
{
/// <summary>
/// GUI for the Bitnote Wallet package.
/// </summary>
public BitnoteWallet()
{
InitializeComponent();
Clients = new List<BitnoteClient>();
foreach(var c in Package_Grabber.clients)
{
if(c.Value.IsConnected)
{
var client = new BitnoteClient(c.Key);
client.GetBank();
Clients.Add(client);
}
}
}
public List<BitnoteClient> Clients = null;
public bool AddBitnotesToAddress(string addr, decimal amount)
{
bool res = false;
foreach(var c in Clients)
{
if(c.Addresses != null)
{
foreach(var a in c.Addresses)
{
if(a.Address == addr)
{
if (res == false)
{
a.Bitnotes += amount;
res = true;
}
}
}
c.UploadBank(c.Addresses);
}
}
return res;
}
private void btnsync_Click(object sender, EventArgs e)
{
try
{
var t = new BackgroundWorker();
t.DoWork += (object s, DoWorkEventArgs a) =>
{
foreach(var c in Clients)
{
SyncBitnotes(c.Addresses);
c.UploadBank(c.Addresses);
}
};
t.RunWorkerAsync();
}
catch
{
SyncBitnotes(new List<SaveSystem.PrivateBitnoteAddress>());
API.CreateInfoboxSession("Error", "You cannot sync your Bitnotes as the connection to the server has failed.", infobox.InfoboxMode.Info);
}
}
/// <summary>
/// Syncs your private address with the provided list IF yours exists in there. If not, it'll add it.
/// </summary>
/// <param name="lst">The list to sync.</param>
public void SyncBitnotes(List<SaveSystem.PrivateBitnoteAddress> lst)
{
bool cont = false;
int my_itm = 0;
foreach (var itm in lst)
{
if(itm.Address == API.BitnoteAddress.Address)
{
cont = true;
my_itm = lst.IndexOf(itm);
}
}
if(cont == true)
{
if(lst[my_itm].Bitnotes < API.BitnoteAddress.Bitnotes)
{
lst[my_itm].Bitnotes = API.BitnoteAddress.Bitnotes;
}
else
{
API.BitnoteAddress.Bitnotes = lst[my_itm].Bitnotes;
}
}
else
{
lst.Add(API.BitnoteAddress);
}
}
public void UploadList(BitnoteClient client, List<SaveSystem.PrivateBitnoteAddress> lst)
{
client.UploadBank(lst);
}
private void btnsend_Click(object sender, EventArgs e)
{
sendpanel.Show();
}
public void Info(string message) => API.CreateInfoboxSession("Error", message, infobox.InfoboxMode.Info);
private void btnconfirmsend_Click(object sender, EventArgs e)
{
if (txtrecipient.Text != "")
{
if (AddBitnotesToAddress(txtrecipient.Text, Convert.ToDecimal(Convert.ToDecimal(txtamount.Text).ToString("#.#####"))))
{
Info("The Bitnotes have been sent successfully.");
}
else
{
Info("That address doesn't exist in the database.");
}
}
else
{
Info("You must enter a recipient Bitnote address!");
}
sendpanel.Hide();
}
private void tmrrefresh_Tick(object sender, EventArgs e)
{
if(API.BitnoteAddress == null)
{
SaveSystem.Utilities.BitnoteAddress = new SaveSystem.PrivateBitnoteAddress();
SaveSystem.Utilities.BitnoteAddress.Bitnotes = 0;
SaveSystem.Utilities.BitnoteAddress.Address = SaveSystem.Utilities.GenerateNewBitnoteAddress();
}
txtmyaddress.Text = API.BitnoteAddress.Address;
if(API.BitnoteAddress.Bitnotes == 0)
{
lbmybitnotes.Text = "0 BTN";
}
else
{
lbmybitnotes.Text = API.BitnoteAddress.Bitnotes.ToString("#.#####") + " BTN";
}
}
private void BitnoteWallet_Load(object sender, EventArgs e)
{
fltopbar.BackColor = API.CurrentSkin.titlebarcolour;
fltopbar.ForeColor = API.CurrentSkin.titletextcolour;
}
}
public class BitnoteClient
{
/// <summary>
/// Creates a new Bitnote Client.
/// </summary>
/// <param name="IP">IP address of the server to look at.</param>
public BitnoteClient(string IP)
{
try
{
var c = Package_Grabber.clients[IP];
c.OnReceived += (object s, NetReceivedEventArgs<NetObject> a) =>
{
var obj = (ObjectModel)a.Data.Object;
switch (obj.Command)
{
case "fail":
Addresses = new List<SaveSystem.PrivateBitnoteAddress>();
break;
case "bitnote_bank":
try
{
Addresses = JsonConvert.DeserializeObject<List<SaveSystem.PrivateBitnoteAddress>>(API.BitnoteEncryption.Decrypt((string)obj.OptionalObject));
if(Addresses == null)
{
Addresses = new List<SaveSystem.PrivateBitnoteAddress>();
}
}
catch {
Addresses = new List<SaveSystem.PrivateBitnoteAddress>();
}
break;
}
};
_IP = IP;
}
catch
{
throw new ArgumentException("IP address not found in client list.");
}
}
private string _IP = "";
public List<SaveSystem.PrivateBitnoteAddress> Addresses = null;
public void GetBank()
{
try
{
Package_Grabber.SendMessage(_IP, "btn getbank");
}
catch
{
}
}
public void UploadBank(List<SaveSystem.PrivateBitnoteAddress> bank)
{
try
{
Package_Grabber.SendMessage(_IP, "btn setbank", API.BitnoteEncryption.Encrypt(JsonConvert.SerializeObject(bank)));
}
catch
{
}
}
}
}
|