-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlockController.js
More file actions
383 lines (300 loc) · 12.8 KB
/
BlockController.js
File metadata and controls
383 lines (300 loc) · 12.8 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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
const BlockClass = require('./Block.js');
const LevelSandbox = require('./LevelSandbox.js');
const memRequestClass = require('./memRequest.js');
const validRequestClass = require('./validRequest.js');
const SHA256 = require('crypto-js/sha256');
const hex2ascii = require('hex2ascii');
const bitcoinMessage = require('bitcoinjs-message');
/**
* Controller Definition to encapsulate routes to work with blocks
*/
class BlockController {
/**
* Constructor to create a new BlockController, you need to initialize here all your endpoints
* @param {*} server
*/
constructor(server) {
this.bd = new LevelSandbox.LevelSandbox();
this.server = server;
this.getBlockByHash = this.getBlockByHash.bind(this);
// this.blocks = [];
this.mempool = [];
this.mempoolValid = [];
this.timeoutRequests = [];
// this.initializeMockData();
this.postNewBlock();
this.validationRequest();
this.getBlockByHashRoute();
this.generateGenesisBlock();
this.getBlockByHeightRoute();
this.getBlockByAddressRoute();
this.validateRequestByWallet();
}
async generateGenesisBlock(){
let value = await this.bd.getBlocksCount();
var height = value;
if (height == 0) {
let genesis = {
address: "Genesis Block - Star Registry",
star: {
ra: "Genesis Block - Star Registry",
dec: "Genesis Block - Star Registry",
mag: "Genesis Block - Star Registry",
cen: "Genesis Block - Star Registry",
story: Buffer("Genesis Block - Star Registry").toString('hex')
}
};
let genesisBlock = new BlockClass.Block(genesis);
await this.addBlock(genesisBlock);
}
}
async addBlock(block) {
/* BLOCK SCHEMA:
this.hash = '';
this.height = '';
this.time = '';
this.data = data;
this.previousHask = '0x';
*/
//hash
block.hash = SHA256(JSON.stringify(block)).toString();
//time
block.time = new Date().getTime().toString().slice(0, -3);
//height
block.height = await this.getBlockHeight();
if (block.height > 0) {
let value = await this.bd.getLevelDBData(block.height-1);
block.previousHash = value.hash;
}
let value = await this.bd.addLevelDBData(block.height, JSON.stringify(block).toString());
return value;
}
async getBlockByHeight(height) {
let value = await this.bd.getLevelDBData(height);
return value;
}
async getBlockHeight() {
let value = await this.bd.getBlocksCount();
return value;
}
async getBlockByHash(hash) {
let value = await this.bd.getBlockByHash(hash);
return value;
}
async getBlocksByAddress(address) {
let value = await this.bd.getBlocksByAddress(address);
console.log(value);
return value;
}
validationRequest() {
this.server.route({
method: 'POST',
path: '/requestValidation',
handler: (request, h) => {
let req = JSON.parse(JSON.stringify(request.payload));
if(!req) {
return JSON.stringify({'ERROR': 'Blank payload not allowed.'});
};
let address = req.address;
let mempool = this.mempool;
let timeoutRequests = this.timeoutRequests;
if (timeoutRequests.includes(address)) {
const TimeoutRequestsWindowTime = 5*60*1000;
timeoutRequests[address] = setTimeout(function(){
mempool.splice(mempool.indexOf(address),1);
timeoutRequests.splice(timeoutRequests.indexOf(address),1);
}, TimeoutRequestsWindowTime);
let memRequest = mempool.find(mempool => mempool['walletAddress'] === address);
let timeElapse = (new Date().getTime().toString().slice(0,-3)) - memRequest.requestTimeStamp;
let timeLeft = (TimeoutRequestsWindowTime/1000) - timeElapse;
memRequest.validationWindow = timeLeft;
}
if (mempool.some(mempool => mempool['walletAddress'] === address)) {
let memRequest = mempool.find(mempool => mempool['walletAddress'] === address);
return JSON.stringify(memRequest);
}
let newMemRequest = new memRequestClass.memRequest(address);
mempool.push(newMemRequest);
timeoutRequests.push(address);
return JSON.stringify(newMemRequest);
}
});
}
validateRequestByWallet() {
this.server.route({
method: 'POST',
path: '/message-signature/validate',
handler: (request, h) => {
let req = JSON.parse(JSON.stringify(request.payload));
if(!req) {
return JSON.stringify({'ERROR': 'Blank payload not allowed.'});
};
let address = req.address;
let signature = req.signature;
let mempool = this.mempool;
let mempoolValid = this.mempoolValid;
let timeoutRequests = this.timeoutRequests;
if (mempool.some(mempool => mempool['walletAddress'] === address)) {
let memRequest = mempool.find(mempool => mempool['walletAddress'] === address);
let message = memRequest.message;
let requestTimeStamp = memRequest.requestTimeStamp;
let validationWindow = memRequest.validationWindow;
if (timeoutRequests.includes(address)) {
const TimeoutRequestsWindowTime = 5*60*1000;
timeoutRequests[address] = setTimeout(function(){
mempool.splice(mempool.indexOf(address),1);
timeoutRequests.splice(timeoutRequests.indexOf(address),1);
}, TimeoutRequestsWindowTime);
let memRequest = mempool.find(mempool => mempool['walletAddress'] === address);
let timeElapse = (new Date().getTime().toString().slice(0,-3)) - memRequest.requestTimeStamp;
let timeLeft = (TimeoutRequestsWindowTime/1000) - timeElapse;
memRequest.validationWindow = timeLeft;
}
let isValid = bitcoinMessage.verify(message, address, signature);
if(!isValid){
return JSON.stringify({
'ERROR':'Bitcoin Address Signature Invalid',
'address': address,
'signature': signature
});
}
let validatedRequest = new validRequestClass.validRequest(address, requestTimeStamp, message, validationWindow, isValid);
mempool.splice(mempool.indexOf(address),1);
timeoutRequests.splice(timeoutRequests.indexOf(address),1);
mempoolValid.push(validatedRequest);
return JSON.stringify(validatedRequest);
}
return JSON.stringify(
{'Status':`Request not found with address: ${address}`}
);
}
});
}
/**
* Implement a POST Endpoint to add a new Block, url: "/api/block"
*/
postNewBlock() {
this.server.route({
method: 'POST',
path: '/block',
handler: async (request, h) => {
let req = JSON.parse(JSON.stringify(request.payload));
if(!req) {
return JSON.stringify({'ERROR': 'Blank payload not allowed.'});
};
if(Object.keys(req).length === 0) {
return JSON.stringify({'ERROR': 'Blank block not allowed.'});
};
let address = req.address;
let mempoolValid = this.mempoolValid
if(mempoolValid.some(mempoolValid => mempoolValid.status['address'] === address)) {
if(Object.keys(req).length === 2) {
let RA = req.star.ra;
let DEC = req.star.dec;
let MAG = req.star.mag;
let CEN = req.star.cen;
let starStory = req.star.story;
let newStar = {
address: address,
star: {
ra: RA,
dec: DEC,
mag: MAG,
cen: CEN,
story: Buffer(starStory).toString('hex')
}
};
let newBlock = new BlockClass.Block(newStar);
let block = await this.addBlock(newBlock);
return block;
}
return JSON.stringify(
{'Status':'Request invalid, did you try to add more than one star?'}
);
};
return JSON.stringify(
{'Status':`Request not found with address: ${address}`}
);
}
});
}
/**
* Implement a GET Endpoint to retrieve a block by hash, url: "/api/block/:index"
*/
getBlockByHashRoute() {
this.server.route({
method: 'GET',
path: '/stars/hash:{hash}',
handler: async (request, h) => {
const hash = request.params.hash;
console.log(hash);
console.log(typeof hash);
let block = await this.getBlockByHash(hash);
console.log(typeof block);
if(!block) {
return `No block found with hash ${hash}`;
}
const obj = JSON.parse(block.value);
obj.body.star["storyDecoded"] = hex2ascii(obj.body.star.story);
return obj;
}
});
}
getBlockByHeightRoute() {
this.server.route({
method: 'GET',
path: '/block/{height}',
handler: async (request, h) => {
const height = parseInt(request.params.height);
let chainHeight = await this.bd.getBlocksCount();
if (height > chainHeight) {
return `Requested block height is greater than height of chain.\nCurrent chain height: ${chainHeight}.`
}
let block = await this.getBlockByHeight(height);
const obj = block;
obj.body.star["storyDecoded"] = hex2ascii(obj.body.star.story);
return block;
}
});
}
getBlockByAddressRoute() {
this.server.route({
method: 'GET',
path: '/stars/address:{address}',
handler: async (request, h) => {
const address = request.params.address;
let blocks = await this.getBlocksByAddress(address);
console.log(blocks.length);
if(!blocks.length) {
return `No blocks found with address ${address}`;
}
for (let index = 0; index < blocks.length; index++) {
let obj = blocks[index];
obj.body.star["storyDecoded"] = hex2ascii(obj.body.star.story);
}
//const obj = JSON.parse(block.value);
//console.log(hex2ascii(obj.body.star.story));
//obj.body.star["storyDecoded"] = hex2ascii(obj.body.star.story);
return blocks;
}
});
}
/**
* Help method to inizialized Mock dataset, adds 10 test blocks to the blocks array
*/
initializeMockData() {
if(this.blocks.length === 0){
for (let index = 0; index < 10; index++) {
let blockAux = new BlockClass.Block(`Test Data #${index}`);
blockAux.height = index;
blockAux.hash = SHA256(JSON.stringify(blockAux)).toString();
this.blocks.push(blockAux);
}
}
}
}
/**
* Exporting the BlockController class
* @param {*} server
*/
module.exports = (server) => { return new BlockController(server);}