-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
134 lines (102 loc) · 3.69 KB
/
index.js
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
//middleware
const bodyParser = require("body-parser");
const express = require("express");
const request = require('request');
const Blockchain = require("./blockchain");
const PubSub = require("./app/pubsub");
const TransactionPool = require('./wallet/transaction-pool');
const Wallet = require("./wallet");
const TransactionMiner = require('./app/transaction-miner');
const app = express();
const blockchain = new Blockchain();
const transactionPool = new TransactionPool();
const wallet = new Wallet();
const pubsub = new PubSub({blockchain, transactionPool});
const transactionMiner = new TransactionMiner({blockchain, transactionPool, wallet, pubsub});
const DEFAULT_PORT = 3000;
// the first peer that is run
const ROOT_NODE_ADDRESS = `http://localhost:${DEFAULT_PORT}`;
//setTimeout(() => pubsub.broadcastChain(), 1000);
app.use(bodyParser.json());
//GET type HTTP request
//returns the blockchain and blocks
app.get("/api/blocks", (req, res) => {
//request and response
res.json(blockchain.chain);
});
//POST type HTTP request
//lets you add blocks
app.post("/api/mine", (req, res) => {
const { data } = req.body; //same as const data = req.body.data
blockchain.addBlock({ data });
//broadcasts new chain with added blocks
pubsub.broadcastChain();
res.redirect("/api/blocks");
});
app.post("/api/transact", (req, res) =>{
const {amount, recipient} = req.body;
let transaction = transactionPool.existingTransaction({inputAddress: wallet.publicKey});
try{
if(transaction){
transaction.update({senderWallet: wallet, recipient, amount});
}
else{
transaction = wallet.createTransaction({
recipient,
amount,
chain: blockchain.chain
});
}
} catch (error){
return res.status(400).json({type: 'error', message: error.message})
}
transactionPool.setTransaction(transaction);
pubsub.broadcastTransaction(transaction);
//json object of transaction
res.json({transaction});
});
app.get('/api/transaction-pool-map', (req, res) =>{
res.json(transactionPool.transactionMap);
});
app.get('/api/mine-transactions', (req,res) =>{
transactionMiner.mineTransactions();
res.redirect('/api/blocks');
});
app.get('/api/wallet-info', (req, res) =>{
const address = wallet.publicKey;
res.json({
address,
balance: Wallet.calculateBalance({chain: blockchain.chain, address})
});
});
//makes a GET HTTP request
const syncWithRootState = () =>{
//when the request completes, callback is fired
request({url: `${ROOT_NODE_ADDRESS}/api/blocks`}, (error, response, body) =>{
if(!error && response.statusCode === 200){
//if request is successful, replace chain
const rootChain = JSON.parse(body);
console.log('replace chain on a sync with', rootChain);
blockchain.replaceChain(rootChain);
}
});
request({url: `${ROOT_NODE_ADDRESS}/api/transaction-pool-map`}, (error, response, body) =>{
if(!error && response.statusCode === 200 ){
const rootTransactionPoolMap = JSON.parse(body);
console.log('replace transaction pool map on a sync with ', rootTransactionPoolMap);
transactionPool.setMap(rootTransactionPoolMap);
}
});
};
let PEER_PORT;
//generates a random port from 3001-4000
if(process.env.GENERATE_PEER_PORT === 'true'){
PEER_PORT = DEFAULT_PORT + Math.ceil(Math.random() * 1000);
}
const PORT = PEER_PORT || DEFAULT_PORT;
app.listen(PORT, () =>{
console.log(`listening at localhost:${PORT}`);
if(PORT !== DEFAULT_PORT){
syncWithRootState();
}
} );