-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
2686 lines (2346 loc) · 115 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
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
require('dotenv').config()
const bodyParser = require("body-parser")
const express = require('express');
const app = express();
const path = require('path');
const md5 = require('md5');
const bcrypt = require('bcrypt');
const ejs = require("ejs")
const webpush = require('web-push');
const mysql = require('mysql')
const multer = require("multer");
const func = require('./func');
const flash = require('express-flash')
const session = require('express-session')
const Passport = require('passport').Passport;
const passport = new Passport();
// const cpassport = new Passport();
const method_override = require('method-override');
var admin = require('firebase-admin');
const {
format
} = require('util');
const cookieParser = require('cookie-parser');
app.use(cookieParser('MY SECRET'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
extended: true
}));
app.use(method_override('_method'));
//Used to access static files from public folder
app.use(express.static("public"));
//Configure View Engine
app.set('view engine', 'ejs');
app.use(flash())
app.use(session({
secret: process.env.SESSION_SECRET,
resave: false,
saveUninitialized: false
}))
app.use(passport.initialize())
app.use(passport.session())
//git
//Establishing Connection to database
var connection = mysql.createConnection({
host: process.env.DB_HOST,
user: process.env.DB_USER,
password: process.env.DB_PASS,
database: process.env.DB_SCHEMA,
port: 3306,
dateStrings: 'date'
});
connection.connect(function (error) {
if (error) {
console.log("Error in Connecting Database");
throw error;
} else {
console.log("Connected to Database");
}
});
// Razorpay Payment Gateway Setup
const Razorpay = require('razorpay');
const razorpay = new Razorpay({
key_id: process.env.RAZORPAY_KEY_ID,
key_secret: process.env.RAZORPAY_KEY_SECRET,
})
// passport configure
var {
initialize
} = require('./modules/passport-config');
initialize(passport);
function checkAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
if (req.user.role === 0) {
if (req.user.isBan == 0) {
return next()
} else {
req.logOut();
res.redirect("/business/login");
}
} else {
res.redirect('/business/login');
}
} else {
res.redirect('/business/login');
}
}
function checkNotAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
if (req.user.role === 0) {
res.redirect('/dashboard');
} else {
next();
}
} else {
next()
}
}
function custCheckAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
if (req.user.role == 1) {
console.log(req.user);
if (req.user.isBan == 0) {
return next()
} else {
req.logOut();
res.redirect("/allBannedPage");
}
} else {
res.redirect('/');
}
} else {
res.redirect('/');
}
}
function custCheckNotAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
if (req.user.role == 1) {
res.redirect('/success-login');
} else {
next();
}
} else {
next()
}
}
function adminCheckAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
if (req.user.role == 2) {
return next()
} else {
res.redirect('/adminLogin');
}
} else {
res.redirect('/adminLogin');
}
}
function adminCheckNotAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
if (req.user.role == 2) {
res.redirect('/adminDashboard');
} else {
next();
}
} else {
next()
}
}
//Push Notifications
// Generating vapid keys for push notifications
let publicVapKey = "BMDSmegidXe3Cj9BKhYmgQvxQy_np9vrhcNvPccxtgSy0qQ26BfQnn8d0wHxMCW938Lb1RAvMfiKe8dgd_lyX8U";
let privateVapKey = process.env.PRIVATE_NOTIFICATION_KEY;
webpush.setVapidDetails('mailto:cornerkart4@gmail.com', publicVapKey, privateVapKey);
app.post('/subscribeNotification', custCheckAuthenticated, (req, res) => {
//Get subscription object
const subscription = req.body;
// console.log("Subscription: ",subscription);
//Sending subscription to database
connection.query('select * from customer_subscription where cId = ?', [req.user.cId], (err, result) => {
if (err) {
console.log(err);
}
else if (result.length > 0) {
// console.log("Subscription already exists");
connection.query("update customer_subscription set subscription = ? where cId = ?", [JSON.stringify(subscription), req.user.cId], (err, result) => {
if (err) {
console.log(err);
}
else {
console.log("Subscription already exists");
console.log("Subscription Updated");
}
});
}
else {
// console.log("Subscription added");
connection.query(`INSERT INTO customer_subscription VALUES (?,?)`, [req.user.cId, JSON.stringify(subscription)], (err, result) => {
if (err) {
console.log(err);
}
else {
console.log("Subscription added to database");
}
});
}
})
//Send 201 - resource created
res.status(201).json({});
//Create payload
const payload = JSON.stringify({
title: 'Push Test',
body: 'This is a test notification',
icon: 'https://i.ibb.co/0jqXFdv/logo.png',
});
//Sending Notification
webpush.sendNotification(subscription, payload).catch(err => console.log(err));
});
app.post('/subscribeNotificationSeller', checkAuthenticated, (req, res) => {
//Get subscription object
const subscription = req.body;
console.log("Subscription: ", subscription);
//Sending subscription to database
connection.query('select * from seller_subscription where sId = ?', [req.user.sId], (err, result) => {
if (err) {
console.log(err);
}
else if (result.length > 0) {
// console.log("Subscription already exists");
connection.query("update seller_subscription set subscription = ? where sId = ?", [JSON.stringify(subscription), req.user.sId], (err, result) => {
if (err) {
console.log(err);
}
else {
console.log("Subscription already exists");
console.log("Subscription Updated");
}
});
}
else {
// console.log("Subscription added");
connection.query(`INSERT INTO seller_subscription VALUES (?,?)`, [req.user.sId, JSON.stringify(subscription)], (err, result) => {
if (err) {
console.log(err);
}
else {
console.log("Subscription added to database");
}
});
}
})
console.log("hellooooooo");
//Send 201 - resource created
res.status(201).json({});
//Create payload
const payload = JSON.stringify({
title: 'Push Test',
body: 'This is a test notification',
icon: 'https://i.ibb.co/0jqXFdv/logo.png',
});
//Sending Notification
webpush.sendNotification(subscription, payload).catch(err => console.log(err));
console.log("noti-sent");
});
/////////////////////Firebase and Multer Configure///////////////////////////////
// var serviceAccount = require(process.env.FIREBASE_SERVICEACC_KEY);
var serviceAccount = {
"type": "service_account",
"project_id": process.env.FIREBASE_PROJECT_ID,
"private_key_id": process.env.FIREBASE_PRIVATE_KEY_ID,
"private_key": process.env.FIREBASE_PRIVATE_KEY.replace(/\\n/g, '\n'),
"client_email": process.env.FIREBASE_CLIENT_EMAIL,
"client_id": process.env.FIREBASE_CLIENT_ID,
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": process.env.CLIENT_URL,
}
// admin.initializeApp({
// credential: admin.credential.cert(require(process.env.FIREBASE_SERVICEACC_KEY))
// });
admin.initializeApp({
credential: admin.credential.cert(serviceAccount)
});
//admin.initializeApp(firebaseConfig);
var storage = admin.storage();
var bucket = storage.bucket('gs://cornerkart-cd3d7.appspot.com');
var extension;
const upload = multer({
storage: multer.memoryStorage(),
limits: {
fileSize: 2000000
},
fileFilter: function (req, file, cb) {
checkFileType(file, cb);
}
});
// Check File Type
function checkFileType(file, cb) {
const filetypes = /jpeg|jpg|png/;
const extname = filetypes.test(path.extname(file.originalname).toLowerCase());
const mimetype = filetypes.test(file.mimetype);
if (mimetype && extname) {
return cb(null, true);
} else {
cb('Error: Images Only!');
}
};
app.get("/", function (req, res) {
if (req.cookies.pincode !== undefined) {
var query = "select p.pId,p.pName,p.pPhotoId,p.pBrand,p.pMrp,min(i.sellerPrice) as minPrice,ceil(((p.pMrp - i.sellerPrice)/p.pMrp*100)) as difference from products p inner join inventory i on p.pId = i.pId inner join business_details b on i.sId = b.seller where p.isBan=0 and b.bZip = ? group by p.pId order by difference desc limit 8; ";
connection.query(query, [req.cookies.pincode], function (err, rows) {
if (err) {
console.log(err);
} else {
var query2 = "select p.pId,p.pName,p.pPhotoId,p.pBrand,p.pMrp,min(i.sellerPrice) as minPrice from products p inner join inventory i on p.pId = i.pId inner join business_details b on i.sId = b.seller where p.isBan=0 and b.bZip = ? and p.pCategory = 2000021 group by p.pId limit 8";
connection.query(query2, [req.cookies.pincode], function (err, rows2) {
if (err) {
console.log(err);
} else {
var query3 = "SELECT p.pId,p.pName,p.pMrp,p.pPhotoId,p.pBrand,min(i.sellerPrice) as minPrice FROM products p inner join inventory i on p.pId=i.pId inner join business_details b on i.sId=b.seller where p.isBan=0 and pCategory=2000007 and pSubCategory=3000088 and b.bZip=? group by p.pId limit 8";
connection.query(query3, [req.cookies.pincode], function (err, rows3) {
if (err) {
console.log(err);
} else {
var query4 = "SELECT p.pId,p.pName,p.pMrp,p.pPhotoId,p.pBrand,min(i.sellerPrice) as minPrice FROM products p inner join inventory i on p.pId=i.pId inner join business_details b on i.sId=b.seller where p.isBan=0 and pCategory=2000001 and pSubCategory!=3000011 and pSubCategory!=3000012 and pSubCategory!=3000013 and b.bZip=? group by p.pId limit 8";
connection.query(query4, [req.cookies.pincode], function (err, rows4) {
if (err) {
console.log(err);
} else {
var query5 = "SELECT o.seller_id,b.bName,b.bAddress,b.bCity,b.bPhotoId, (select count(seller_id) from orders where order_status='Order Completed' and order_zip=? and seller_id=o.seller_id) as count FROM orders o inner join business_details b on b.seller=o.seller_id where order_zip=? group by seller_id order by count desc limit 8;";
connection.query(query5, [req.cookies.pincode, req.cookies.pincode], function (err, rows5) {
if (err) {
console.log(err);
} else {
query6 = "select count(od.product_id) as count,od.product_id,p.pPhotoId,p.pName,p.pBrand,p.pMRP,min(i.sellerPrice) from order_details od inner join products p on od.product_id = p.pId inner join inventory i on i.pId = od.product_id inner join orders o on o.order_id = od.order_id where p.isBan=0 and o.order_zip = ? and od.prod_status = 'Order Completed' group by od.product_id order by count(od.product_id) desc limit 8;";
connection.query(query6, [req.cookies.pincode], function (err, rows6) {
if (err) {
console.log(err);
} else {
if (req.user) {
if (req.user.role === 1) {
res.render('customerHome', {
pincode: req.cookies.pincode,
user: req.user,
loggedIn: true,
rows,
rows2,
rows3,
rows4,
rows5,
rows6
});
} else {
res.render('customerHome', {
pincode: req.cookies.pincode,
loggedIn: false,
rows,
rows2,
rows3,
rows4,
rows5,
rows6
});
}
} else {
res.render('customerHome', {
pincode: req.cookies.pincode,
loggedIn: false,
rows,
rows2,
rows3,
rows4,
rows5,
rows6
});
}
}
});
}
});
}
});
}
});
}
});
}
});
} else {
console.log("no pin");
if (req.user) {
if (req.user.role === 1) {
res.render('customerHome', {
loggedIn: true,
pincode: req.cookies.pincode,
user: req.user
});
} else {
res.render('customerHome', {
pincode: req.cookies.pincode,
loggedIn: false
});
}
} else {
res.render('customerHome', {
pincode: req.cookies.pincode,
loggedIn: false
});
}
}
});
app.post("/", function (req, res) {
var pincode = req.body.pincode;
let options = {
maxAge: 365 * 24 * 60 * 60 * 1000, // would expire after 30 minutes
httpOnly: true, // The cookie only accessible by the web server
signed: false // Indicates if the cookie should be signed
}
res.cookie('pincode', pincode, options); // options is optional
if (req.user) {
if (req.user.role == 1) {
res.redirect("/");
} else {
res.redirect("/");
}
} else {
res.redirect("/");
}
});
app.get("/changepincode", function (req, res) {
res.clearCookie("pincode");
if (req.user) {
if (req.user.role == 1) {
res.render('customerHome', {
loggedIn: true,
pincode: undefined,
user: req.user
});
} else {
res.redirect("/");
}
} else {
res.redirect("/");
}
});
app.get("/changePincodeCat/:catId", function (req, res) {
res.clearCookie("pincode");
var catid = req.params.catId;
if (req.user) {
if (req.user.role == 1) {
res.redirect("/productList/" + catid);
} else {
res.redirect("/productList/" + catid);
}
} else {
res.redirect("/productList/" + catid);
}
});
app.post("/productList/:catId", function (req, res) {
var catId = req.params.catId;
var pincode = req.body.pincode;
let options = {
maxAge: 365 * 24 * 60 * 60 * 1000, // would expire after 30 minutes
httpOnly: true, // The cookie only accessible by the web server
signed: false // Indicates if the cookie should be signed
}
res.cookie('pincode', pincode, options);
if (req.user) {
if (req.user.role == 1) {
res.redirect("/productList/" + catId)
} else {
res.redirect("/productList/" + catId);
}
} else {
res.redirect("/productList/" + catId);
}
});
// Customer Login
app.get("/login", custCheckNotAuthenticated, function (req, res) {
res.render("cLoginSignup", {
err: undefined
});
});
app.get("/allBannedPage", function (req, res) {
res.render("allBannedPage", {
loggedIn: false
});
});
app.post("/custRegister", custCheckNotAuthenticated, function (req, res) {
data = req.body;
query = "INSERT INTO cust_details (cName, cMobile, cEmail, cPincode, cPassword) values(?, ?, ?, ?, ?)";
connection.query(query, [data.cName, data.cMobile, data.cEmail, data.cPincode, md5(data.cPassword)], function (err) {
if (err) {
console.log(err);
} else {
res.redirect('/');
}
})
})
app.post('/custlogin', custCheckNotAuthenticated, passport.authenticate('customerLocal', {
successRedirect: '/',
failureRedirect: '/custloginfail',
failureFlash: true
}));
app.get('/custloginfail', function (req, res) {
res.render("cLoginSignup", {
err: "Incorrect Mobile number or Password"
});
});
app.get('/success-login', custCheckAuthenticated, function (req, res) {
var pincode = req.cookies.pincode;
res.redirect("/");
})
//Logout Users
app.delete('/logout-customer', (req, res) => {
req.logOut();
res.redirect('/');
});
app.get('/getCategory', function (req, res) {
var sql = 'SELECT * FROM product_categories order by catName';
connection.query(sql, function (err, result) {
if (err) throw err;
res.json(result);
});
});
app.get('/getSubCategory/:id', function (req, res) {
var catId = parseInt(req.params.id);
var sql = 'SELECT * from product_subcategories where catId = ? order by subCatName';
connection.query(sql, [catId], function (err, result) {
if (err) throw err;
res.json(result);
});
});
app.get('/productList/:cId', function (req, res) {
query = 'SELECT * from product_categories where catId = ?'
connection.query(query, [req.params.cId], function (err, rows) {
if (err) {
console.log(err);
} else {
query2 = "select p.pId,p.pName,p.pMrp,p.pPhotoId,p.pBrand,min(i.sellerPrice) as price from products p inner join inventory i on p.pId =i.pId inner join business_details b on i.sId = b.seller where p.isBan=0 and p.pCategory=? and b.bZip=? group by p.pId;"
connection.query(query2, [parseInt(req.params.cId), parseInt(req.cookies.pincode)], function (err, rows1) {
if (err) {
console.log(err);
res.render('productPage', {
rows,
rows1: undefined,
loggedIn: false,
pincode: req.cookies.pincode,
});
} else {
query3 = "select p.pId,p.pName,p.pMrp,p.pPhotoId,p.pBrand, round(avg(pf.p_rating),2) as avg_rating,min(i.sellerPrice) as price from products p inner join inventory i on p.pId =i.pId inner join business_details b on i.sId = b.seller inner join product_feedback pf on pf.pId = p.pId where p.isBan=0 and p.pCategory=? and b.bZip=? group by p.pId order by avg_rating desc limit 10;"
connection.query(query3, [parseInt(req.params.cId), parseInt(req.cookies.pincode)], function (err, rows3) {
if (err) {
console.log(err);
}
else {
if (req.user) {
pincode = req.cookies.pincode;
if (req.user.role === 1) {
res.render('productPage', {
rows,
rows1,
rows3,
loggedIn: true,
pincode: req.cookies.pincode,
user: req.user
});
} else {
res.render('productPage', {
rows,
rows1,
rows3,
pincode: req.cookies.pincode,
loggedIn: false
});
}
} else {
res.render('productPage', {
rows,
rows1,
rows3,
pincode: req.cookies.pincode,
loggedIn: false
});
}
}
})
}
});
}
});
});
// SubCategory display
app.get('/productListBySub/:subCatId', function (req, res) {
query = 'SELECT * from product_subcategories where subCatId = ?'
connection.query(query, [req.params.subCatId], function (err, rows) {
if (err) {
console.log(err);
} else {
query2 = "select p.pId,p.pName,p.pMrp,p.pPhotoId,p.pBrand,min(i.sellerPrice) as price from products p inner join inventory i on p.pId =i.pId inner join business_details s on i.sId = s.seller where p.isBan=0 and p.pSubCategory=? and s.bZip=? group by p.pId;"
connection.query(query2, [parseInt(req.params.subCatId), parseInt(req.cookies.pincode)], function (err, rows1) {
if (err) {
console.log(err);
res.render('productPage', {
rows,
rows1: undefined,
loggedIn: true,
pincode: req.cookies.pincode,
user: req.user
});
} else {
query3 = "select p.pId,p.pName,p.pMrp,p.pPhotoId,p.pBrand,round(avg(pf.p_rating),2) as avg_rating,min(i.sellerPrice) as price from products p inner join inventory i on p.pId =i.pId inner join business_details s on i.sId = s.seller inner join product_feedback pf on pf.pId = p.pId where p.isBan=0 and p.pSubCategory=? and s.bZip=? group by p.pId order by avg_rating desc limit 10;"
connection.query(query3, [parseInt(req.params.subCatId), parseInt(req.cookies.pincode)], function (err, rows3) {
if (err) {
console.log(err);
}
else {
if (req.user) {
pincode = req.cookies.pincode;
if (req.user.role === 1) {
res.render('productPage', {
rows,
rows1,
rows3,
loggedIn: true,
pincode: req.cookies.pincode,
user: req.user
});
} else {
res.render('productPage', {
rows,
rows1,
rows3,
pincode: req.cookies.pincode,
loggedIn: false
});
}
} else {
res.render('productPage', {
rows,
rows1,
rows3,
pincode: req.cookies.pincode,
loggedIn: false
});
}
}
})
}
});
}
});
});
// productDetails.ejs Starts
app.get('/productDetails/:pId', function (req, res) {
var pId = req.params.pId;
var query = "select p.pId,p.pName,p.pMrp,p.pCategory,p.pSubCategory,p.pBrand,p.pPhotoId,sc.subCatName,sc.subCatId,c.catName,c.catId from products p inner join product_subcategories sc on p.pSubCategory = sc.subCatId inner join product_categories c on p.pCategory = c.catId where p.isBan=0 and pId = ?"
connection.query(query, [pId], function (err, rows) {
if (err) {
console.log(err);
} else {
var query1 = "select pf.p_rating,pf.p_rating*20 as per_rating,pf.p_review,c.cName from product_feedback pf inner join cust_details c on pf.cId= c.cId where c.cPincode=? and pf.pId=?;";
connection.query(query1, [req.cookies.pincode, pId], function (err, rows1) {
if (err) {
console.log(err);
} else {
var query2 = "select avg(pf.p_rating)*20 as avg_rating from product_feedback pf inner join cust_details c on pf.cId= c.cId where c.cPincode=? and pf.pId=?;"
connection.query(query2, [req.cookies.pincode, pId], function (err, rows2) {
if (err) {
console.log(err);
}
else {
if (req.user) {
pincode = req.cookies.pincode;
if (req.user.role === 1) {
var query4 = "select product_id from wishlist where cust_id=?";
connection.query(query4, [req.user.cId], function (err, rows4) {
if (err) {
console.log(err);
} else {
var wishlist = [];
rows4.forEach(function (row) {
wishlist.push(row.product_id)
});
res.render('productDetails', {
rows,
rows1,
rows2,
loggedIn: true,
pincode: req.cookies.pincode,
rows4: wishlist,
user: req.user
});
}
});
} else {
res.render('productDetails', {
rows,
rows1,
rows2,
rows4: [],
pincode: req.cookies.pincode,
loggedIn: false
});
}
} else {
res.render('productDetails', {
rows,
rows1,
rows2,
rows4: [],
pincode: req.cookies.pincode,
loggedIn: false
});
}
}
})
}
});
}
});
});
app.post("/productDetails/:pId", function (req, res) {
var pId = req.params.pId;
var pincode = req.body.pincode;
let options = {
maxAge: 365 * 24 * 60 * 60 * 1000, // would expire after 30 minutes
httpOnly: true, // The cookie only accessible by the web server
signed: false // Indicates if the cookie should be signed
}
res.cookie('pincode', pincode, options);
if (req.user) {
if (req.user.role == 1) {
res.redirect("/productDetails/" + pId)
} else {
res.redirect("/productDetails/" + pId);
}
} else {
res.redirect("/productDetails/" + pId);
}
});
app.get("/reportProduct/:pId", custCheckAuthenticated, function (req, res) {
var pId = req.params.pId;
res.render('reportProductForm', {
loggedIn: true,
pincode: req.cookies.pincode,
user: req.user,
pId: pId,
alreadyReported: false
});
});
app.post('/reportProduct', custCheckAuthenticated, function (req, res) {
var pId = req.body.pId;
var cId = req.body.cId;
var reason = req.body.reason;
var query1 = "select * from report_product where cId = ? and pId=?;"
connection.query(query1, [cId, pId], function (err, rows) {
if (err) {
console.log(err);
} else {
if (rows.length > 0) {
res.render('reportProductForm', {
loggedIn: true,
pincode: req.cookies.pincode,
user: req.user,
pId: pId,
alreadyReported: true
});
} else {
var query = "insert into report_product(pId,cId,reason) values(?,?,?)";
connection.query(query, [pId, cId, reason], function (err, rows) {
if (err) {
console.log(err);
}
else {
res.redirect("/productDetails/" + pId);
}
});
}
}
});
});
app.get("/reportSeller/:sId", custCheckAuthenticated, function (req, res) {
var sId = req.params.sId;
console.log(req.user);
res.render('reportSellerForm', {
loggedIn: true,
pincode: req.cookies.pincode,
user: req.user,
sId: sId,
alreadyReported: false
});
});
app.post('/reportSeller', custCheckAuthenticated, function (req, res) {
var sId = req.body.sId;
var cId = req.body.cId;
var reason = req.body.reason;
var query1 = "select * from report_seller where cId = ? and sId=?;"
connection.query(query1, [cId, sId], function (err, rows) {
if (err) {
console.log(err);
} else {
if (rows.length > 0) {
res.render('reportSellerForm', {
loggedIn: true,
pincode: req.cookies.pincode,
user: req.user,
sId: sId,
alreadyReported: true
});
} else {
var query = "insert into report_seller(sId,cId,reason) values(?,?,?)";
connection.query(query, [sId, cId, reason], function (err, rows) {
if (err) {
console.log(err);
}
else {
res.redirect("/myorders");
}
});
}
}
});
});
app.get("/getSellers/:pId", function (req, res) {
var pin = req.cookies.pincode;
var query = "SELECT b.bName,b.seller,b.bId,b.bWebsite,b.bCity,b.bState,b.bAddress,b.bMobile,i.iSize,i.sId, i.sellerPrice,i.iId, i.iDelivery, i.iDescription,ROUND(COALESCE(avg(sf.s_rating),0),1) as avg_rating from business_details b inner join inventory i on b.seller = i.sId left outer join seller_feedback sf on sf.seller_id= b.seller where i.pId = ? and b.bZip = ? group by b.seller order by i.sellerPrice";
connection.query(query, [req.params.pId, pin], function (err, result) {
if (err) {
throw err;
} else {
var query2 = "select sf.s_review, sf.s_rating, cd.cName from seller_feedback sf inner join order_details od on sf.order_id = od.order_id inner join cust_details cd on sf.cust_id = cd.cId where sf.seller_id = ? and od.product_id=?;"
connection.query(query2, [result[0].sId, req.params.pId], function (err, result1) {
if (err) {
console.log(err);
}
else {
res.json({
data1: result,
data2: result1,
});
}
})
}
});
});
app.get("/getSellersOnClick/:pId/:iId", function (req, res) {
var query = "SELECT b.bName,b.bId,b.bWebsite,b.bCity,b.bState,b.bAddress,b.bMobile,i.iSize,i.sId, i.sellerPrice,i.iId, i.iDelivery, i.iDescription from business_details b inner join inventory i on b.seller = i.sId where i.pId = ? and i.iId = ? order by i.sellerPrice";
connection.query(query, [req.params.pId, req.params.iId], function (err, result) {
if (err) {
throw err;
} else {
var query2 = "select sf.s_review, sf.s_rating, cd.cName from seller_feedback sf inner join order_details od on sf.order_id = od.order_id inner join cust_details cd on sf.cust_id = cd.cId where sf.seller_id = ? and od.product_id=?;"
connection.query(query2, [result[0].sId, req.params.pId], function (err, result1) {
if (err) {
console.log(err);
}
else {
res.json({
data1: result,
data2: result1,
});
}
})
}
});
});
// orderpage.js Starts
app.post("/order", custCheckAuthenticated, function (req, res) {
data = req.body;
query1 = "Select i.sellerPrice,i.iDelivery,i.iDeliveryCharges,p.pId ,p.pName,p.pMrp,p.pPhotoId,p.pBrand,b.bName,b.seller, b.bId,b.bCity,b.bState,b.bAddress,b.bMobile from inventory i inner join products p on i.pId=p.pId inner join business_details b on b.seller = i.sId where i.iId=?";
connection.query(query1, [parseInt(data.iId)], function (err, rows) {
if (err) {
console.log(err);
} else {
res.render('orderPage', {
key: process.env.RAZORPAY_KEY_ID,
user: req.user,
data: req.body,
rows,
loggedIn: true
});
}
});
});
app.post("/placeOrder", custCheckAuthenticated, function (req, res) {
var amount = req.body.amount;
var options = {
amount: amount * 100, // amount in the smallest currency unit
currency: "INR",
receipt: "CORNERKART"