-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.js
More file actions
1287 lines (1079 loc) · 38 KB
/
Copy pathserver.js
File metadata and controls
1287 lines (1079 loc) · 38 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
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
const fs = require('fs');
const PORT = 8080;
// app.get('/', (req, res) => {
// fs.readFile('./src/home.html', 'utf8', (err, html) => {
// if (err) {
// res.status(500).send('Internal Server Error');
// return;
// }
// res.send(html);
// });
// });
//
app.get('/transacData', async (req, res) => {
const staticHTML = fs.readFileSync('./src/home.html', 'utf8');
// ...
try {
let { month } = req.query;
//console.log (month);
//Connect Syntax
await client.connect();
const database = client.db("CS266");
const collection = database.collection("User");
const sumOfIncome = await collection.aggregate([
{
$match: {
"input_type": "income",
"date": { $regex: month }
}
},
{
$addFields: {
parsedAmount: { $toInt: "$amount" }
}
},
{
$group: {
_id: null,
totalIncome: { $sum: "$parsedAmount" }
}
}
]).toArray();
const sumOfExpense = await collection.aggregate([
{
$match: {
"input_type": "expense",
"date": { $regex: month }
}
},
{
$addFields: {
parsedAmount: { $toInt: "$amount" }
}
},
{
$group: {
_id: null,
totalIncome: { $sum: "$parsedAmount" }
}
}
]).toArray();
// The result will be an array with a single document containing the totalIncome
const totalIncome = sumOfIncome.length > 0 ? sumOfIncome[0].totalIncome : 0;
const totalExpense = sumOfExpense.length > 0 ? sumOfExpense[0].totalIncome : 0;
//console.log("TotalD Income:", totalIncome);
//console.log("TotalD Expense:", totalExpense);
//console.log("TotalD Revenue:", totalIncome-totalExpense);
if (month) {
let headerDom = `<div class="pageHeader">
<h>Expense Tracker</h>
</div>
<div class="titleContainer">
<div class="titleBubble">
<p1>Balance</p1>
<br>
<i class="uil uil-money-insert" style="background-color: gold;"></i>
<span>${totalIncome - totalExpense}</span>
</div>
<div class="titleBubble">
<p1>Income</p1>
<br>
<i class="uil uil-money-insert" style="background-color: greenyellow;"></i>
<span>${totalIncome}</span>
</div>
<div class="titleBubble">
<p1>Expense</p1>
<br>
<i class="uil uil-money-insert" style="background-color: rgb(255, 99, 99);"></i>
<span>${totalExpense}</span>
</div>
</div>`;
headerDom += '<div class="activity">';
let query;
query = {
"date": { $regex: month }
};
const sort = {
"date": -1
};
let userHistory = await collection.find(query).sort(sort).toArray();
//let dateSet = new Set();
if (userHistory.length <= 0) {
headerDom += '<center><h><div class = "dateUpper">No Recent Activity Today</div></h></center>';
} else {
headerDom += '<center><h><div class = "dateUpper">Today Activity</div></h> <br></center>';
userHistory.forEach(row => {
headerDom += `<div class="activityIncome">
<div class="activity-container">
<span class="removeTransaction" id="'${row._id}'" data-toggle="tooltip" data-placement="top" onClick="logId('${row._id}')"title="Delete transaction">-</span>
<div class="activityInfo">
<p class="act-header">${row.text}</p>`;
if (row.input_type == "income") {
headerDom += `<p class="act-header">+ ${row.amount}</p>`;
} else {
headerDom += `<p class="act-header">- ${row.amount}</p>`;
}
headerDom += `</div>
<div class="activityInfo">
<p class="act-lower" style="color: darkgray;">${row.date}</p>`;
if (row.input_type == "income") {
headerDom += `<p class="act-lower" style="color: green;">${row.tag}</p>`;
} else {
headerDom += `<p class="act-lower" style="color: red;">${row.tag}</p>`;
}
headerDom += `</div>
</div>
</div>`;
});
}
headerDom += '</div>';
res.send(headerDom);
return;
}
} catch (error) {
console.error('Error:', error);
} finally {
// Close the connection
await client.close();
}
});
const { ObjectId } = require('mongodb');
app.delete('/deleteData', async (req, res) => {
const id = req.query.id; // Assuming the ID is passed as a query parameter
try {
// Connect to the MongoDB server
await client.connect();
// Access the database and collection
const database = client.db("CS266");
const collection = database.collection("User");
// Convert the string representation of the ObjectId to an actual ObjectId
//
const objectId = new ObjectId(id);
// Construct the delete query
const query = { _id: objectId };
// Delete the document
const result = await collection.deleteOne(query);
// Log the result
console.log(`${result.deletedCount} document(s) deleted`);
} finally {
res.json({ success: true });
// Close the connection
await client.close();
}
});
// Your other routes and server setup go here
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
app.get('/historyData', async (req, res) => {
const staticHTML = fs.readFileSync('./src/history.html', 'utf8');
//console.log(month);
// ...
try {
let { month, tag } = req.query;
//Connect Syntax
await client.connect();
const database = client.db("CS266");
const collection = database.collection("User");
const tagCondition = req.query.tag == "None" ? {} : { "tag": req.query.tag };
const sumOfIncome = await collection.aggregate([
{
$match: {
"input_type": "income",
"date": { $regex: month },
...tagCondition
}
},
{
$addFields: {
parsedAmount: { $toInt: "$amount" }
}
},
{
$group: {
_id: null,
totalIncome: { $sum: "$parsedAmount" }
}
}
]).toArray();
let sumOfExpense = await collection.aggregate([
{
$match: {
"input_type": "expense",
"date": { $regex: month },
...tagCondition
}
},
{
$addFields: {
parsedAmount: { $toInt: "$amount" }
}
},
{
$group: {
_id: null,
totalIncome: { $sum: "$parsedAmount" }
}
}
]).toArray();
const sumOfTag = await collection.aggregate([
{
$match: {
"input_type": "expense",
"date": { $regex: month }
}
},
{
$addFields: {
parsedAmount: { $toInt: "$amount" }
}
},
{
$group: {
_id: "$tag",
totalExpense: { $sum: "$parsedAmount" }
}
},
{
$sort: {
totalExpense: -1 // Sort in ascending order by tag
}
},
]).toArray();
// The result will be an array with a single document containing the totalIncome
const totalIncome = sumOfIncome.length > 0 ? sumOfIncome[0].totalIncome : 0;
const totalExpense = sumOfExpense.length > 0 ? sumOfExpense[0].totalIncome : 0;
console.log("TotalD Income:", totalIncome);
console.log("TotalD Expense:", totalExpense);
console.log("TotalD Revenue:", totalIncome - totalExpense);
console.log(new Date());
if (month && tag) {
let headerDom = `<div class="titleContainer">
<div class="titleBubble">
<p1>Balance</p1>
<br>
<i class="uil uil-money-insert" style="background-color: gold;"></i>
<span>${totalIncome - totalExpense}</span>
</div>
<div class="titleBubble">
<p1>Income</p1>
<br>
<i class="uil uil-money-insert" style="background-color: greenyellow;"></i>
<span>${totalIncome}</span>
</div>
<div class="titleBubble">
<p1>Expense</p1>
<br>
<i class="uil uil-money-insert" style="background-color: rgb(255, 99, 99);"></i>
<span>${totalExpense}</span>
</div>
</div>`;
headerDom += '<div class="activity">';
let query;
if (tag == "None") {
query = {
"date": { $regex: month }
};
} else {
query = {
"date": { $regex: month },
"tag": tag
};
}
const sort = {
"date": -1
};
let userHistory = await collection.find(query).sort(sort).toArray();
let dateSet = new Set();
if (userHistory.length <= 0) {
if (tag != "None") {
headerDom += '<center><div class = "dateUpper">No Activity match "' + tag + '"</div></center>';
} else {
headerDom += '<center><div class = "dateUpper">No Activity</div></center>';
}
} else {
//show tag table
headerDom += '<div class = "spendingTag">Most spending tag</div>'
sumOfTag.forEach(expense => {
headerDom += `<div class = "tagContainer">
<i class="uil uil-pricetag-alt"></i>
<span>${expense._id}</span>
<br>
<p>${expense.totalExpense}</p></div>`;
});
headerDom += '<center><div class = "dateUpper">Recent Activity</div> <br></center>';
userHistory.forEach(row => {
if (!dateSet.has(row.date)) {
headerDom += `<br><h class="dateUpper">${row.date}</h>`;
dateSet.add(row.date);
}
headerDom += `<div class="activityIncome">
<div class="activity-container">
<span class="removeTransaction" id="removeTransaction" data-toggle="tooltip" data-placement="top" title="Delete transaction" onClick="logId('${row._id}')">-</span>
<div class="activityInfo">
<p class="act-header">${row.text}</p>`;
if (row.input_type == "income") {
headerDom += `<p class="act-header">+ ${row.amount}</p>`;
} else {
headerDom += `<p class="act-header">- ${row.amount}</p>`;
}
headerDom += `</div>
<div class="activityInfo">
<p class="act-lower" style="color: darkgray;">${row.date}</p>`;
if (row.input_type == "income") {
headerDom += `<p class="act-lower" style="color: green;">${row.tag}</p>`;
} else {
headerDom += `<p class="act-lower" style="color: red;">${row.tag}</p>`;
}
headerDom += `</div>
</div>
</div>`;
});
}
headerDom += '</div>';
res.send(headerDom);
return;
}
} catch (error) {
console.error('Error:', error);
} finally {
// Close the connection
await client.close();
}
});
app.get('/history', async (req, res) => {
const staticHTML = fs.readFileSync('./src/history.html', 'utf8');
//console.log(month);
// ...
try {
//Connect Syntax
await client.connect();
const database = client.db("CS266");
const collection = database.collection("User");
const collectionTag = database.collection("Tag");
let { month, tag } = req.query;
if (month && tag) {
let headerDom = `<div class="titleContainer">
<div class="titleBubble">
<p1>Balance</p1>
<br>
<i class="uil uil-money-insert" style="background-color: gold;"></i>
<span>${totalIncome - totalExpense}</span>
</div>
<div class="titleBubble">
<p1>Income</p1>
<br>
<i class="uil uil-money-insert" style="background-color: greenyellow;"></i>
<span>${totalIncome}</span>
</div>
<div class="titleBubble">
<p1>Expense</p1>
<br>
<i class="uil uil-money-insert" style="background-color: rgb(255, 99, 99);"></i>
<span>${totalExpense}</span>
</div>
</div>`;
res.send(headerDom);
return;
}
if (!month) {
const currentDate = new Date();
const currentYear = currentDate.getFullYear();
const currentMonth = String(currentDate.getMonth() + 1).padStart(2, '0');
month = `${currentYear}-${currentMonth}`;
//month = "2023-01";
}
if (!tag) {
tag = "None";
}
// // Query Syntax
const result = await collectionTag.find({}).toArray();
const sumOfIncome = await collection.aggregate([
{
$match: {
"input_type": "income",
"date": { $regex: month }
}
},
{
$addFields: {
parsedAmount: { $toInt: "$amount" }
}
},
{
$group: {
_id: null,
totalIncome: { $sum: "$parsedAmount" }
}
}
]).toArray();
const sumOfExpense = await collection.aggregate([
{
$match: {
"input_type": "expense",
"date": { $regex: month }
}
},
{
$addFields: {
parsedAmount: { $toInt: "$amount" }
}
},
{
$group: {
_id: null,
totalIncome: { $sum: "$parsedAmount" }
}
}
]).toArray();
const sumOfTag = await collection.aggregate([
{
$match: {
"input_type": "expense",
"date": { $regex: month }
}
},
{
$addFields: {
parsedAmount: { $toInt: "$amount" }
}
},
{
$group: {
_id: "$tag",
totalExpense: { $sum: "$parsedAmount" }
}
},
{
$sort: {
totalExpense: -1 // Sort in ascending order by tag
}
},
]).toArray();
// The result will be an array with a single document containing the totalIncome
const totalIncome = sumOfIncome.length > 0 ? sumOfIncome[0].totalIncome : 0;
const totalExpense = sumOfExpense.length > 0 ? sumOfExpense[0].totalIncome : 0;
//console.log("Total Income:", totalIncome);
//console.log("Total Expense:", totalExpense);
//console.log("Total Revenue:", totalIncome-totalExpense);
// ///////////////// END OF SET-UP NOW ITS HTML BUILDING /////////////////////////////////////
// // FOR TAG
let tagDom = '<select name="tags" id="tags">';
tagDom += `<option value="None">No tag select</option>`;
tagDom += `<option value="Other">Other</option>`;
result.forEach(row => {
tagDom += `<option value="${row.tag}">${row.tag}</option>`;
//dynamicHTML += `<div>${doc.date}</div>`;
});
tagDom += '</select>';
// FOR RESULT HEADER
let headerDom = `<div class="titleContainer">
<div class="titleBubble">
<p1>Balance</p1>
<br>
<i class="uil uil-money-insert" style="background-color: gold;"></i>
<span>${totalIncome - totalExpense}</span>
</div>
<div class="titleBubble">
<p1>Income</p1>
<br>
<i class="uil uil-money-insert" style="background-color: greenyellow;"></i>
<span>${totalIncome}</span>
</div>
<div class="titleBubble">
<p1>Expense</p1>
<br>
<i class="uil uil-money-insert" style="background-color: rgb(255, 99, 99);"></i>
<span>${totalExpense}</span>
</div>
</div>`;
headerDom += '<div class="activity">';
const query = {
"date": { $regex: month }
};
const sort = {
"date": -1
};
let userHistory = await collection.find(query).sort(sort).toArray();
let dateSet = new Set();
// // Assuming sumOfTag is an array of objects with _id and totalExpense properties
// const tags = sumOfTag.map(expense => expense._id);
// // Construct a query using the extracted tags
// const queryTag = {
// "tag": { $in: tags },
// "date": { $regex: month } // Make sure to replace selectedMonth with the actual month
// };
// // Fetch userHistoryTag using the new query
// let userHistoryTag = await collection.find(queryTag).sort(sort).toArray();
// // Extract tags from the first aggregation result
// const tags = sumOfTag.map(expense => expense._id);
// // Use the tags to construct a query for finding documents
// const queryTag = {
// "tag": { $in: tags },
// "date": { $regex: "2023-11" }
// };
// // Fetch userHistoryTag using another aggregation pipeline
// let userHistoryTag = await collection.aggregate([
// {
// $match: queryTag
// },
// {
// $addFields: {
// parsedAmount: { $toInt: "$amount" }
// }
// },
// {
// $group: {
// _id: "$tag",
// totalExpense: { $sum: "$parsedAmount" }
// }
// },
// {
// $sort: {
// totalExpense: -1 // Sort in ascending order by tag
// }
// },
// ]).toArray();
// console.log("Sum of Tag:", sumOfTag);
// console.log("Selected Month:", month);
if (userHistory.length < 0) {
headerDom += '<center><h>No Activity</h></center>';
} else {
//show tag table
headerDom += '<div class = "spendingTag">Most spending tag</div>'
sumOfTag.forEach(expense => {
headerDom += `<div class = "tagContainer">
<i class="uil uil-pricetag-alt"></i>
<span>${expense._id}</span>
<br>
<p>${expense.totalExpense}</p></div>`;
});
headerDom += '<center><h><div class = "dateUpper">Recent Activity</div></h> <br></center>';
userHistory.forEach(row => {
if (!dateSet.has(row.date)) {
headerDom += `<br><h class="dateUpper">${row.date}</h>`;
dateSet.add(row.date);
}
headerDom += `<div class="activityIncome">
<div class="activity-container">
<span class="removeTransaction" id="removeTransaction" data-toggle="tooltip" data-placement="top" title="Delete transaction" onClick="logId('${row._id}')">-</span>
<div class="activityInfo">
<p class="act-header">${row.text}</p>`;
if (row.input_type == "income") {
headerDom += `<p class="act-header">+ ${row.amount}</p>`;
} else {
headerDom += `<p class="act-header">- ${row.amount}</p>`;
}
headerDom += `</div>
<div class="activityInfo">
<p class="act-lower" style="color: darkgray;">${row.date}</p>`;
if (row.input_type == "income") {
headerDom += `<p class="act-lower" style="color: green;">${row.tag}</p>`;
} else {
headerDom += `<p class="act-lower" style="color: red;">${row.tag}</p>`;
}
headerDom += `</div>
</div>
</div>`;
});
}
headerDom += '</div>';
// ////////////////////////////////////////////////////////////////////////////////////////////////
// // Combine and sent to page
const finalHTML = staticHTML.replace('<!-- Drop down tags goes here -->', tagDom)
.replace('<!-- ACTIVITY -->', headerDom);
// Send the response
res.send(finalHTML);
} catch (error) {
console.error('Error:', error);
} finally {
// Close the connection
await client.close();
}
});
// Serve static files (CSS, JS, images, etc.) from the 'public' directory
app.use(express.static('src'));
app.use(bodyParser.json());
app.listen(PORT, () => {
console.log(`Server is running at http://localhost:${PORT}`);
});
const { MongoClient, ServerApiVersion } = require('mongodb');
const uri = "mongodb+srv://ploy:ploy@cs266.hlnjicp.mongodb.net/";
// Create a MongoClient with a MongoClientOptions object to set the Stable API version
const client = new MongoClient(uri, {
serverApi: {
version: ServerApiVersion.v1,
strict: true,
deprecationErrors: true,
}
});
async function run() {
try {
// Connect the client to the server (optional starting in v4.7)
await client.connect();
// Send a ping to confirm a successful connection
const database = client.db("CS266");
const collection = database.collection("Tag");
console.log("Pinged your deployment. You successfully connected to MongoDB!");
const query = {};
const result = await collection.find(query).toArray();
// Output the result
// console.log(result);
} finally {
// Ensures that the client will close when you finish/error
await client.close();
}
}
run().catch(console.dir);
// ...
app.get('/', async (req, res) => {
// ...
try {
//Connect Syntax
const client = new MongoClient("mongodb+srv://ploy:ploy@cs266.hlnjicp.mongodb.net/");
await client.connect();
const database = client.db("CS266");
const collection = database.collection("User");
const collectionTag = database.collection("Tag");
// Find all documents in the collection
const documents = await collection.find({}).toArray();
// Sum up the values in the "amount" field
const totalAmount = documents.reduce((sum, doc) => sum + (parseInt(doc.amount) || 0), 0);
// console.log('Total Amount:', totalAmount);
let homepage = fs.readFileSync('./src/home.html', 'utf8');
homepage = homepage.replace('{income}', totalAmount);
// res.send(homepage);
//Sum up with aggregate
const documents2 = await collection.aggregate([
{
$group: {
_id: '$input_type', // Group by input_type field
totalAmount: { $sum: { $toInt: '$amount' } }// Sum the amount field
}
}
]).toArray();
// console.log(totalAmount + 20) // this works
// Extract the results for income and expense
const incomeSum = (documents2.find(item => item._id === 'income') || {}).totalAmount || 0;
const expenseSum = (documents2.find(item => item._id === 'expense') || {}).totalAmount || 0;
// console.log('Income Sum:', incomeSum);
// console.log('Expense Sum:', expenseSum);
// Query Syntax
const result = await collectionTag.find({}).toArray();
const result2 = await collection.find().toArray();
// Read the static HTML file
const staticHTML = fs.readFileSync('./src/home.html', 'utf8');
///////////////// END OF SET-UP NOW ITS HTML BUILDING /////////////////////////////////////
// Build dynamic HTML content For result1
let dynamicHTML = '<select name="tags" id="tags" class = "dropdown-el" >';
dynamicHTML += `<option value="Other">Other</option>`;
result.forEach(row => {
dynamicHTML += `<option value="${row.tag}">${row.tag}</option>`;
//dynamicHTML += `<div>${doc.date}</div>`;
});
dynamicHTML += '</select>';
// // Build dynamic HTML content For result2
let dynamicHTML2 = '';
result2.forEach(doc => {
dynamicHTML2 += `<div>${doc.tag}</div>`;
});
////////////////////////////////////////////////////////////////////////////////////////////////
// Combine and sent to page
let finalHTML = staticHTML.replace('<!-- Drop down tags goes here -->', dynamicHTML);
finalHTML = finalHTML.replace('{income}', incomeSum);
finalHTML = finalHTML.replace('{expense}', expenseSum);
finalHTML = finalHTML.replace('{balance}', incomeSum - expenseSum);
// finalHTML = finalHTML.replace('{income}',responseData.incomeSum);
// finalHTML = finalHTML.replace('{expense}',responseData.expenseSum);
// finalHTML = finalHTML.replace('{balance}',responseData.incomeSum-responseData.expenseSum);
//.replace('<!-- INSERT_DYNAMIC_CONTENT_HERE2 -->', dynamicHTML2);
// Send the response
res.send(finalHTML);
// res.json(responseData);
} catch (error) {
console.error('Error:', error);
} finally {
// Close the connection
await client.close();
}
});
app.get('/user/data', async (req, res) => {
const client = new MongoClient("mongodb+srv://ploy:ploy@cs266.hlnjicp.mongodb.net/", { useNewUrlParser: true, useUnifiedTopology: true });
await client.connect();
const database = client.db("CS266");
const collection = database.collection("User");
const collectionTag = database.collection("Tag");
const documents2 = await collection.aggregate([
{
$group: {
_id: '$input_type', // Group by input_type field
totalAmount: { $sum: { $toInt: '$amount' } }// Sum the amount field
}
}
]).toArray();
const incomeSum = (documents2.find(item => item._id === 'income') || {}).totalAmount || 0;
const expenseSum = (documents2.find(item => item._id === 'expense') || {}).totalAmount || 0;
const result = await collectionTag.find({}).toArray();
const result2 = await collection.find().toArray();
const responseData = {
incomeSum: incomeSum,
expenseSum: expenseSum,
balance: incomeSum - expenseSum,
result: result,
result2: result2
};
console.log(responseData);
res.send(responseData);
});
app.get('/activity', async (req, res) => {
const client = new MongoClient("mongodb+srv://ploy:ploy@cs266.hlnjicp.mongodb.net/", { useNewUrlParser: true, useUnifiedTopology: true });
await client.connect();
const database = client.db("CS266");
const collection = database.collection("User");
const today = new Date();
today.setHours(0, 0, 0, 0); // Set hours to midnight
// const todayDate = await collection.find({ date: { $gte: today } }).toArray();
const todayDocument = await collection.findOne({
date: {
$gte: today
}
});
res.json(todayDocument);
console.log(todayDocument);
// res.send(responseData2);
});
app.post('/insertData', async (req, res) => {
try {
// Connect to MongoDB
const client = new MongoClient("mongodb+srv://ploy:ploy@cs266.hlnjicp.mongodb.net/", { useNewUrlParser: true, useUnifiedTopology: true });
await client.connect();
// Specify the database and collection you want to insert data into
const database = client.db("CS266");
const collection = database.collection("User");
// Document to be inserted
const documentToInsert = {
input_type: "income",
date: "19/11/2566",
amount: 1567,
tag: "salary",
text: " ",
};
// Insert the document
const result = await collection.insertOne(documentToInsert);
console.log(`Document inserted with _id: ${result.insertedId}`);
res.send('Data inserted successfully!');
} catch (error) {
console.error('Error:', error);
res.status(500).send('Internal Server Error');
} finally {
// Close the MongoDB connection
await client.close();
}
});
// app.get('/history', async (req, res) => {
// // ...
// try {
// //Connect Syntax
// await client.connect();
// const database = client.db("CS266");
// const collection = database.collection("User");
// // Query Syntax
// const result = await collection.find({}).toArray();
// const result2 = await collection.find({tag:"salary"}).toArray();
// // Read the static HTML file
// const staticHTML = fs.readFileSync('./src/history.html', 'utf8');
// ///////////////// END OF SET-UP NOW ITS HTML BUILDING /////////////////////////////////////
// // Build dynamic HTML content For result1
// let dynamicHTML = '';
// result.forEach(doc => {
// dynamicHTML += `<div>${doc.date}</div>`;
// });
// // Build dynamic HTML content For result2
// let dynamicHTML2 = '';
// result2.forEach(doc => {
// dynamicHTML2 += `<div>${doc.tag}</div>`;
// });
// ////////////////////////////////////////////////////////////////////////////////////////////////
// // Combine and sent to page
// const finalHTML = staticHTML.replace('<!-- INSERT_DYNAMIC_CONTENT_HERE -->', dynamicHTML)
// .replace('<!-- INSERT_DYNAMIC_CONTENT_HERE2 -->', dynamicHTML2);
// // Send the response
// res.send(finalHTML);
// } catch (error) {
// console.error('Error:', error);
// } finally {
// // Close the connection
// await client.close();
// }
// });
app.get('/tag', async (req, res) => {
try {
// Connect to MongoDB
const client = new MongoClient("mongodb+srv://ploy:ploy@cs266.hlnjicp.mongodb.net/", { useNewUrlParser: true, useUnifiedTopology: true });
await client.connect();
// Specify the database and collection to fetch tags from
const database = client.db("CS266");
const collection = database.collection("Tag");
// Fetch tags from the collection
const tags = await collection.find({}).toArray();
// Read the static HTML file
const staticHTML = fs.readFileSync('./src/tag.html', 'utf8');
// Inject the fetched tags into the HTML content
const modifiedHTML = injectDynamicContent(staticHTML, tags);
// Send the response
res.send(modifiedHTML);
} catch (error) {
console.error('Error:', error);