-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdel_visitor.js
158 lines (143 loc) · 4.64 KB
/
del_visitor.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
// 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("/del_visitor", function(req, res) {
res.redirect("/Profile");
});
app.post("/del_visitor", 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 == "active") {
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: "Inactive",
outDate: today
}, function() {
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: 'Thanks for your Visit',
text: 'Thanks for visiting the building. Your username has been deactivated successfully\nYou can no longer use your username and password to login to your profile.\nVMS: https://vms-sasy.herokuapp.com/',
attachDataUrls: true,
// html:'<b>Thanks for visiting the building.</b>'+
// 'Your username has been deactivated successfully<br>'+
// 'You can no logner use your username and password to login to <a href="https://vms-sasy.herokuapp.com/" target="_blank">VMS</a>'
};
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: 'deactivate',
message: 'Visitor ID deactivated 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..
}