-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstant_accept.js
128 lines (114 loc) · 4.25 KB
/
instant_accept.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
// require('server');
const mongoose =require("mongoose");
const passport = require('passport');
const passportLocalMongoose = require('passport-local-mongoose');
const nodemailer = require('nodemailer');
var QRCode = require('qrcode')
module.exports = function(app){
const User= mongoose.model("User");
app.get("/instant_accept",function(req,res){
// console.log(req.user.username);
res.redirect("/profile");
});
app.post("/instant_accept",function(req,res){
// console.log(req.user.username);
var username=req.body.instant_accept;
var x=new Date(Date.now());
x.setMilliseconds(0);
today=x.toLocaleString();
User.findOne({username:username},function(err,user){
if(err)
{
console.log(err)
}
else{
if(user && user.status=="pending")
{
User.updateOne({username:req.body.instant_accept},{status:"active",inDate:today},function(){
QRCode.toDataURL(username,function(err,img){
var transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: process.env.GMAIL_ID,
pass: process.env.GMAIL_PASS
}
});
var mailOptions = {
from: process.env.GMAIL_ID,
to: user.email,
subject: 'Status Update',
text: 'Your Visit has been Confirmed!!. Your status has been set to active. Now, you can use your QR code to successfully enter the building.\nYou can also check your status at your profile. You can use your username ( '+username+' ) and password to login. Here is the link of the website: https://vms-sasy.herokuapp.com/. Your QR code is attached herewith, you can see the same on your profile',
attachDataUrls: true,
attachments:[
{
filename:"qrcode.png",
path:img,
}
]
};
transporter.sendMail(mailOptions, function(error, info){
if (error) {
console.log(error);
} else {
console.log('Email sent: ' + info.response);
}
});
});
User.find({username:{ $regex: /^v/ }},function(err,check){
if(err)
console.log(err);
else{
var pUsers=[];
for(var item=0;item<check.length;item++)
{
if(check[item].status=="pending")
{
pUsers.push(check[item]);
}
}
// console.log(user.email);
req.session.message={
type:'success',
intro:'Status Updated',
message:'Visitor request accepted. Status set to active.'
}
res.render("pendingRequests.ejs",{Admin_Name:req.user.name,details:pUsers,message:req.session.message});
// res.redirect("/");
}
})
});
}
else{
//USER DOES NPT EXIST MESSAGE
User.find({username:{ $regex: /^v/ }},function(err,check){
if(err)
console.log(err);
else{
var pUsers=[];
for(var item=0;item<check.length;item++)
{
if(check[item].status=="pending")
{
pUsers.push(check[item]);
}
}
// User.find({username:{ $regex: /^v/ }},function(err,check){
// if(err)
// console.log(err);
// else{
req.session.message={
type:'danger',
intro:'Invalid ID',
message:'Enter valid visitor ID'
}
res.render("pendingRequests.ejs",{Admin_Name:req.user.name,details:pUsers,message:req.session.message});
// res.alert("NOT VALID ID")
}
});
// res.alert("Enter valid id");
}
}
})
});
//other routes..
}