-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
277 lines (244 loc) · 7.39 KB
/
Copy pathindex.js
File metadata and controls
277 lines (244 loc) · 7.39 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
import express from "express";
import {
Transaction,
signTransaction,
verifyTransaction,
} from "./transaction.js";
import { Blockchain } from "./blockchain.js";
import { Wallet } from "./wallet.js";
import { MongoClient, ServerApiVersion } from "mongodb";
import { Block } from "./block.js";
const app = express();
app.use(express.json());
const uri = "mongodb+srv://findof:OOgZ4o1mEYhMNVmU@bvc.sykvkhs.mongodb.net/?retryWrites=true&w=majority&appName=BVC";
export let client;
let chain;
let initialized = false;
async function connectToMongoDB() {
if (!client) {
console.log("Connecting to MongoDB...");
client = new MongoClient(uri, {
serverApi: {
version: ServerApiVersion.v1,
strict: true,
deprecationErrors: true,
},
});
await client.connect();
console.log("Connected to MongoDB");
}
}
async function initializeBlockchain() {
if (initialized) return;
console.log("Initializing blockchain...");
try {
const database = client.db("blockchain");
const collection = database.collection("BVC");
const result = await collection.findOne({ chainId: 1 });
if (result) {
console.log("Blockchain data found, reconstructing blockchain...");
const mining = result.mining.map((block) => {
const transactions = block.transactions.map(
(tx) =>
new Transaction(tx.amount, tx.payer, tx.payee, tx.fee, tx.signature)
);
return new Block(
block.prevHash,
transactions,
block.hash,
block.timestamp,
block.nonce
);
});
const chainArr = result.chain.map((block) => {
const transactions = block.transactions.map(
(tx) =>
new Transaction(tx.amount, tx.payer, tx.payee, tx.fee, tx.signature)
);
return new Block(
block.prevHash,
transactions,
block.hash,
block.timestamp,
block.nonce
);
});
const walletArr = result.wallets.map(
(wallet) =>
new Wallet(
wallet.username,
wallet.publicKey,
wallet.privateKey,
wallet.balance
)
);
chain = new Blockchain(
null,
chainArr,
walletArr,
mining,
result.difficulty
);
console.log("Blockchain reconstructed.");
} else {
console.log("No blockchain data found, creating new blockchain...");
chain = new Blockchain(10000);
await collection.insertOne({ ...chain });
console.log("New blockchain created and saved.");
}
initialized = true;
} catch (error) {
console.error("Error initializing blockchain:", error);
}
}
app.post("/addWallet", async (req, res) => {
await connectToMongoDB();
await initializeBlockchain();
const username = req.body.username;
if (!username) {
return res.status(400).send("Username is required");
}
try {
const newWallet = new Wallet(username);
const result = await chain.addWallet(newWallet);
if (!result) {
return res.status(500).json({
message: "A wallet with that username already exists",
});
}
return res.status(201).json({
message: "Wallet added successfully",
privateKey: newWallet.privateKey,
});
} catch (error) {
return res.status(500).send(error.message);
}
});
app.get("/getPublicKeyFromUsername", async (req, res) => {
await connectToMongoDB();
await initializeBlockchain();
const { username } = req.body;
if (!username) {
return res.status(400).send("Please send all required fields (username)");
}
try {
const wallet = chain.getWalletByUsername(username);
if (!wallet) {
return res.status(201).json({ message: "No wallet found" });
}
return res.status(201).json({ publicKey: wallet.publicKey });
} catch (error) {
return res.status(500).send(error.message);
}
});
app.post("/createTransaction", async (req, res) => {
await connectToMongoDB();
await initializeBlockchain();
const { amount, payer, payee, privateKey } = req.body;
if (!amount || !payer || !payee) {
return res
.status(400)
.send("Please send all required fields (amount, payer, payee)");
}
try {
const transaction = new Transaction(amount, payer, payee);
signTransaction(transaction, privateKey);
if (!verifyTransaction(transaction)) {
return res.status(400).send("Invalid transaction signature");
}
await chain.addBlock([transaction]);
return res.status(201).json({ message: "Transaction created successfully" });
} catch (error) {
return res.status(500).send(error.message);
}
});
app.post("/mine/publicKey", async (req, res) => {
await connectToMongoDB();
await initializeBlockchain();
const { miner } = req.body;
if (!miner) {
return res.status(400).send("Please send all required fields (miner)");
}
try {
const wallet = chain.getWalletByPublicKey(miner);
if (!wallet) {
return res.status(201).json({ message: "No wallet found" });
}
const result = await chain.mineOne(wallet);
if (result) {
return res.status(201).json({ message: "Mined block successfully" });
} else {
return res.status(201).json({ message: "No blocks left to mine" });
}
} catch (error) {
return res.status(500).send(error.message);
}
});
app.post("/mine/username", async (req, res) => {
await connectToMongoDB();
await initializeBlockchain();
const { miner } = req.body;
if (!miner) {
return res.status(400).send("Please send all required fields (miner)");
}
try {
const wallet = chain.getWalletByUsername(miner);
if (!wallet) {
return res.status(201).json({ message: "No wallet found" });
}
const result = await chain.mineOne(wallet);
if (result) {
return res.status(201).json({ message: "Mined block successfully" });
} else {
return res.status(201).json({ message: "No blocks left to mine" });
}
} catch (error) {
return res.status(500).send(error.message);
}
});
app.get("/checkBalance/publicKey", async (req, res) => {
await connectToMongoDB();
await initializeBlockchain();
const { publicKey } = req.body;
if (!publicKey) {
return res.status(400).send("Please send all required fields (publicKey)");
}
try {
const wallet = chain.getWalletByPublicKey(publicKey);
if (!wallet) {
return res.status(201).json({ message: "No wallet found" });
}
return res.status(201).json({ balance: wallet.balance });
} catch (error) {
return res.status(500).send(error.message);
}
});
app.get("/checkBalance/username", async (req, res) => {
await connectToMongoDB();
await initializeBlockchain();
const { username } = req.body;
if (!username) {
return res.status(400).send("Please send all required fields (publicKey)");
}
try {
const wallet = chain.getWalletByUsername(username);
if (!wallet) {
return res.status(201).json({ message: "No wallet found" });
}
return res.status(201).json({ balance: wallet.balance });
} catch (error) {
return res.status(500).send(error.message);
}
});
app.use((req, res) => {
return res
.status(404)
.send(
`Endpoint not found, you could also be using the incorrect request type. Currently you are using ${req.method}`
);
});
const port = 3000;
app.listen(port, () => {
console.log(`Server is running on http://localhost:${port}`);
});
export default app;