-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
442 lines (394 loc) · 11 KB
/
server.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
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
const express = require('express');
const app = express();
const cors = require('cors');
const port = process.env.PORT || 5000;
const moment = require('moment');
const nodemailer = require('nodemailer');
const AWS = require('aws-sdk');
const { v4: uuidv4 } = require('uuid');
const usersTable = { TableName: 'users' };
const transactionsTable = { TableName: 'transactions' };
const config = require('./config');
var docClient;
try {
AWS.config.update(config);
docClient = new AWS.DynamoDB.DocumentClient();
console.log('Connected to DynamoDB!');
} catch (err) {
console.log('Error in starting DB.');
}
app.use(cors());
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.post('/create_user', async (req, res, next) => {
if (!req.body.email || !req.body.balance) {
res.status(400).json({ message: 'Parameters missing' });
return;
}
var { email, balance } = req.body;
await docClient.get(
{
...usersTable,
Key: { email },
},
async (err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
if (Object.keys(data).length > 0) {
res.status(400).json({ message: 'User already exists!' });
return;
}
const newUser = {
id: Math.random().toFixed(16).split('.')[1],
email,
balance: Number(balance),
};
await docClient.put({ ...usersTable, Item: newUser }, (err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
var transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: '[email protected]',
pass: 'rvsuljwlvazzaxnm',
},
});
const mailOptions = {
from: '[email protected]', // sender address
to: email, // list of receivers
subject: 'New user added to MiniBank!', // Subject line
html: `<h1>Welcome to Mini Bank!</h1><h3>Here are your login credentials:</h3><p>Email: <b>${email}</b></p><p>Password: <b>${'abc@1234'}</b></p><p>Note: This is just for testing purposes.</p>`, // plain text body
};
transporter.sendMail(mailOptions, function (err, info) {
if (err) {
res.status(500).json({ message: 'An error occured during sending mail.' });
return;
}
});
res.status(201).json({ message: 'User created successfully!' });
});
}
);
});
app.post('/getUserDetails', async (req, res, next) => {
if (!req.body.email) {
res.status(400).json({ message: 'Parameters missing' });
return;
}
var { email } = req.body;
await docClient.get(
{
...usersTable,
Key: { email },
},
(err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
if (Object.keys(data).length === 0) {
res.status(404).json({ message: 'No user found.' });
return;
}
const user = data.Item;
res.status(200).json({ balance: user.balance, id: user.id, message: 'User verified successfully!' });
}
);
});
app.post('/transfer', async (req, res, next) => {
if (!req.body.sender_email || !req.body.receiver || !req.body.amt) {
res.status(400).json({ message: 'Parameters missing' });
return;
}
var { sender_email, receiver, amt } = req.body;
var sender_bal, receiver_bal, sender_id, receiver_id, receiver_email;
amt = Number(amt);
await docClient.get({ ...usersTable, Key: { email: sender_email } }, async (err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
if (Object.keys(data).length === 0) {
res.status(404).json({ message: 'Sender not found.' });
return;
}
sender_bal = data.Item.balance;
sender_id = data.Item.id;
if (sender_bal < amt || sender_bal === 0) {
res.status(401).json({ message: 'Insufficient balance.' });
return;
}
await docClient.scan(
{
...usersTable,
FilterExpression: 'id=:r',
ExpressionAttributeValues: { ':r': receiver },
},
async (err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
if (Object.keys(data.Items).length === 0) {
res.status(404).json({ message: 'Receiver not found.' });
return;
}
receiver_bal = data.Items[0].balance;
receiver_id = data.Items[0].id;
receiver_email = data.Items[0].email;
sender_bal -= amt;
receiver_bal += amt;
await docClient.update(
{
...usersTable,
Key: { email: sender_email },
UpdateExpression: 'set balance = :r',
ExpressionAttributeValues: { ':r': Number(sender_bal) },
},
async err => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
await docClient.update(
{
...usersTable,
Key: { email: receiver_email },
UpdateExpression: 'set balance=:r',
ExpressionAttributeValues: { ':r': receiver_bal },
},
async err => {
if (err) {
console.log(err);
res.status(500).json({ message: 'An error occured.' });
return;
}
const newTransaction = {
transaction_id: uuidv4(),
sender_id,
receiver_id,
amt,
timestamp: moment().format(),
};
await docClient.put({ ...transactionsTable, Item: newTransaction }, err => {
if (err) {
console.log(err);
res.status(500).json({ message: 'An error occured.' });
return;
}
res.status(201).json({ message: 'Transferred!' });
});
}
);
}
);
}
);
});
/*
await usersCollection
.findOneAndUpdate({ id: sender }, { $inc: { balance: -Number(amt) } })
.then(async (err, doc) => {
await usersCollection
.findOneAndUpdate({ id: receiver }, { $inc: { balance: Number(amt) } })
.then(async err => {
await transactionsCollection
.insertOne({
sender_id: sender,
receiver_id: receiver,
amt: Number(amt),
timestamp: moment().format(),
})
.then(() => {
res.status(201).json({ message: 'transferred!' });
});
});
});
*/
});
app.post('/transact', async (req, res, next) => {
//type, amt (debit=0, credit=1)
if (!req.body.id || !req.body.type || !req.body.amt) {
res.status(400).json({ message: 'Parameters missing' });
return;
}
var { id, type, amt } = req.body;
amt = Number(amt);
var acc_balance, email;
await docClient.scan(
{
...usersTable,
FilterExpression: 'id=:r',
ExpressionAttributeValues: { ':r': id },
},
async (err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
if (Object.keys(data.Items).length === 0) {
res.status(404).json({ message: 'User not found.' });
return;
}
acc_balance = data.Items[0].balance;
email = data.Items[0].email;
Number(type) === 1 ? credit(acc_balance + amt) : debit(acc_balance - amt);
}
);
async function debit(amount) {
if (acc_balance < amt || acc_balance === 0) {
res.status(401).json({ message: 'Insufficient balance.' });
return;
}
await docClient.update(
{
...usersTable,
Key: { email },
UpdateExpression: 'set balance = :r',
ExpressionAttributeValues: { ':r': amount },
},
async err => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
const newTransaction = {
transaction_id: uuidv4(),
sender_id: id,
receiver_id: 100,
amt,
timestamp: moment().format(),
};
await docClient.put({ ...transactionsTable, Item: newTransaction }, err => {
if (err) {
console.log(err);
res.status(500).json({ message: 'An error occured.' });
return;
}
res.status(201).json({ message: 'Amount debited!' });
});
}
);
}
async function credit(amount) {
await docClient.update(
{
...usersTable,
Key: { email },
UpdateExpression: 'set balance = :r',
ExpressionAttributeValues: { ':r': amount },
},
async err => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
const newTransaction = {
transaction_id: uuidv4(),
sender_id: 100,
receiver_id: id,
amt,
timestamp: moment().format(),
};
await docClient.put({ ...transactionsTable, Item: newTransaction }, err => {
if (err) {
console.log(err);
res.status(500).json({ message: 'An error occured.' });
return;
}
res.status(201).json({ message: 'Amount credited!' });
});
}
);
}
});
app.get('/getUsers', async (req, res, next) => {
await docClient.scan({ ...usersTable, ProjectionExpression: 'email, balance, id' }, (err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
res.status(200).json({ users: data.Items });
});
});
app.get('/getAllTransactions', async (req, res, next) => {
var transactions = [];
await docClient.scan(transactionsTable, (err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
data.Items.forEach(entry => transactions.push(entry));
const sortedArray = transactions.sort((a, b) => {
return moment(a.timestamp).diff(b.timestamp);
});
sortedArray.forEach(obj => (obj.timestamp = moment(obj.timestamp).fromNow()));
res.status(200).json({ transactions });
});
});
app.post('/getTransactionsById', async (req, res, next) => {
if (!req.body.email) {
res.status(404).json({ message: 'Parameters missing' });
return;
}
var transactions = [],
id;
await docClient.get({ ...usersTable, Key: { email: req.body.email } }, async (err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
if (Object.keys(data).length === 0) {
res.status(404).json({ message: 'User not found!' });
return;
}
id = data.Item.id;
await docClient.scan(
{
...transactionsTable,
FilterExpression: 'sender_id=:r OR receiver_id=:r',
ExpressionAttributeValues: { ':r': id },
},
(err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
if (Object.keys(data).length === 0) {
res.status(200).json({ transactions: [] });
return;
}
data.Items.forEach(entry => transactions.push(entry));
const sortedArray = transactions.sort((a, b) => {
return moment(a.timestamp).diff(b.timestamp);
});
sortedArray.forEach(obj => (obj.timestamp = moment(obj.timestamp).fromNow()));
res.status(200).json({ sortedArray });
}
);
});
});
app.post('/getBal', async (req, res, next) => {
if (!req.body.email) {
res.status(401).json({ message: 'Parameters missing' });
return;
}
await docClient.get({ ...usersTable, Key: { email: req.body.email } }, (err, data) => {
if (err) {
res.status(500).json({ message: 'An error occured.' });
return;
}
if (Object.keys(data).length === 0) {
res.status(404).json({ message: 'No user found.' });
return;
}
res.status(200).json({ balance: data.Item.balance });
});
});
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`);
});