-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckin.js
163 lines (146 loc) · 4.7 KB
/
checkin.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
// 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("/checkin", function(req, res) {
res.redirect("/Profile");
});
app.post("/checkin", function(req, res) {
var username = req.body.username;
// console.log(username);
// console.log(req.user.name);
// username=username.slice(1,username.length);
// console.log(username);
User.findOne({
username: username
}, function(err, user) {
if (err) {
console.log(err)
} else {
if (user && user.status == "approved") {
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);
User.updateOne({
username: req.body.username
}, {
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: 'Welcome!! Your status has been changed 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 {
// console.log(user.email);
user = {
"name": "",
"sex": "",
"username": "",
"address": "",
"email": "",
"mobile": "",
"aadhar": "",
"password": "",
"status": ""
};
req.session.message = {
type: 'success',
intro: 'Activated',
message: 'Visitor ID activated successfully'
}
res.render("admin_profile.ejs", {
Admin_Name: req.user.name,
details: check,
visitor: user,
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 {
user = {
"name": "",
"sex": "",
"username": "",
"address": "",
"email": "",
"mobile": "",
"aadhar": "",
"password": "",
"status": ""
};
req.session.message = {
type: 'danger',
intro: 'Invalid ID',
message: 'Enter valid visitor ID'
}
res.render("admin_profile.ejs", {
Admin_Name: req.user.name,
details: check,
visitor: user,
message: req.session.message
});
// res.alert("NOT VALID ID")
// res.alert("Enter valid id");
}
})
}
}
})
});
//other routes..
}