-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstant_accept.js
166 lines (150 loc) · 4.96 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
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
// 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();
var today = new Date(Date.now());
var dd = today.getDate();
var mm = today.getMonth() + 1;
var yyyy = today.getFullYear();
if (dd < 10) {
dd = '0' + dd
}
if (mm < 10) {
mm = '0' + mm
}
today = yyyy + '-' + mm + '-' + dd;
console.log(today);
var time = new Date(Date.now());
var min = time.getMinutes();
var sec= time.getSeconds();
var hr=time.getHours();
var ss="";
if(hr==0){
hr=12;
ss="AM";
}
else if(hr<12){
// hr=12;
ss="AM";
}
else if(hr==12){
ss="PM";
}
else if(hr>12){
hr=hr-12;
ss="PM";
}
time= hr+":"+min+":"+sec+" "+ss;
console.log(time);
today=today+" "+time;
console.log(today);
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..
}