-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
329 lines (256 loc) · 7.85 KB
/
app.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
require('dotenv').config(); //must always be at the top of the file
const express = require("express");
const bodyParser = require("body-parser");
const ejs = require("ejs");
const mongoose = require("mongoose");
//note there order: its important very important
const session = require('express-session');
const passport = require('passport');
const passportLocalMongoose = require("passport-local-mongoose");
const GoogleStrategy = require('passport-google-oauth20').Strategy;
const findOrCreate = require('mongoose-findorcreate');
// const encrypt = require("mongoose-encryption"); // uses key a level2 security encription
// const md5 = require('md5'); //level3 security using hashing
// const bcrypt = require('bcrypt'); //level4 security using hashing and salting
// const saltRounds = 10;
const app = express();
app.use(express.static("public"));
app.use(bodyParser.urlencoded({ extended: true }));
app.set("view engine", "ejs");
// using session
app.use(session(
{
secret: "our little secret.",
resave:false,
saveUninitialized:false
}
));
app.use(passport.initialize());
app.use(passport.session());
//connect to mongodb
mongoose.connect("mongodb://localhost:27017/userDB ");
//update the simple version of the schema
const UserSchema = new mongoose.Schema({
email: String,
password: String,
// googleId: String,
secret: String
}) ;
UserSchema.plugin(passportLocalMongoose);
UserSchema.plugin(findOrCreate);
// var secret = process.env.SECRET;
//to encrypt the password field only add encytedfields:
// UserSchema.plugin(encrypt, { secret: secret, encryptedFields: ["password"]});
const User = new mongoose.model("User", UserSchema);
passport.use(User.createStrategy());
////////it only works with local strategy so commented to add a strategy that works with google oauth as well
// passport.serializeUser(User.serializeUser());
// passport.deserializeUser(User.deserializeUser());
///////this works for both local and google strategy///////
passport.serializeUser(function(user, cb) {
process.nextTick(function() {
return cb(null, {
id: user.id,
username: user.username,
picture: user.picture
});
});
});
passport.deserializeUser(function(user, cb) {
process.nextTick(function() {
return cb(null, user);
});
});
passport.use(new GoogleStrategy({
clientID: process.env.CLIENT_ID,
clientSecret: process.env.CLIENT_SECRET,
callbackURL: "http://localhost:3000/auth/google/secrets",
userProfileURL: "https://www.googleapis.com/oauth2/v3/userinfo" //this is to fix the error appearing in the console
},
function(accessToken, refreshToken, profile, cb) {
//see what google sends back
console.log(profile);
User.findOrCreate({ username: profile.id }, function (err, user) {
return cb(err, user);
});
}
));
app.get("/", function(req, res){
res.render("home");
});
// provide the google authentication pop up screen
app.get('/auth/google',
passport.authenticate('google', { scope: ["profile"] })
);
//redirect to our website after google authentication
app.get("/auth/google/secrets",
passport.authenticate("google", { failureRedirect: "/login" }),
function(req, res) {
// Successful authentication, redirect secrets.
res.redirect("/secrets");
});
app.get("/Contact", function(req, res){
res.render("Contact");
});
app.get("/index", function(req, res){
res.render("index");
});
app.get("/login", function(req, res){
res.render("login");
});
app.get("/register", function(req, res){
res.render("register");
} );
app.get("/secrets", function(req, res){
User.find({"secret":{$ne:null}}).then(function(foundUsers){
if(foundUsers){
res.render("secrets",{usersWithSecrets: foundUsers});
}
}).catch(function(err){
console.log(err);
});
});
app.get("/submit", function(req,res){
if(req.isAuthenticated()){
res.render("submit");
}else{
res.redirect("/login");
}
});
app.post("/submit",function(req,res){
const submittedSecret = req.body.secret;
User.findById(req.user.id).then(function(foundUser){
if(foundUser){
foundUser.secret = submittedSecret;
foundUser.save().then(function(){
res.redirect("/secrets");
});
}
}).catch(function(err){
console.log(err);
});
});
app.get("/logout", function(req,res){
req.logout(function(err){
if(err){
console.log(err);
}
else{
res.redirect("/");
}
});
});
// clicking register button
app.post("/register", function(req, res){
User.register({username: req.body.username}, req.body.password, function(err, user){
if(err){
console.log(err);
res.redirect("/register");
}else {
passport.authenticate("local")(req,res, function(){
res.redirect("/secrets");
});
}
});
});
//clicking login button
app.post("/login", function(req,res){
const user = new User({
username: req.body.username,
password: req.body.password,
});
req.login(user, function(err){
if(err){
console.log(err);
}
else{
passport.authenticate("local")(req, res, function(){
res.redirect("/secrets");
});
}
});
});
// newsletter
app.get("/failure" , function(res, req){
res.render("failure");
});
app.get("success", function(req,res){
res.render("success");
});
app.get("/index", function(req,res){
res.render("index");
});
app.post("/index",function(req, res){
const firstname= req.body.firstname;
const lastname= req.body.secondname;
const emailget= req.body.emailget;
const data ={
members:[
{
email_address:emailget,
status:"subscribed",
merge_fields:{
FNAME:firstname,
LNAME:lastname
}
}
]
};
const jsonData = JSON.stringify(data);
//read mdn documentation for more info on option on https (nodejs.org)(https.request)
const url ="https://us22.api.mailchimp.com/3.0/lists/b0c58e0b7c";
const options ={
method:"POST",
auth: process.env.OAUTHID
}
const request = https.request(url, options, function(response){
if (response.statusCode ===200){
res.render("success");
}
else{
res.render("failure");
};
response.on("data", function(data){
console.log(JSON.parse(data));
})
})
request.write(jsonData);
request.end();
});
app.get("/failure",function(req,res){
res.redirect("/index");
});
app.listen(3000, function(){
console.log("Server started on port 3000");
});
// bcrypt.hash(req.body.password, saltRounds, function(err, hash) {
// const newUser = new User({
// email: req.body.username,
// password:hash
// });
// newUser.save().then(function(){
// res.render("secrets");
// console.log("User saved successfully");
// }).catch(function(err){
// console.log(err);
// });
// });
// const username =req.body.username;
// const password = req.body.password;
// User.findOne({email:username}).then(function(foundUser){
// if(foundUser){
// bcrypt.compare(password,foundUser.password).then (function(result) {
// if(result === true){
// res.render("secrets");
// console.log("User logged in successfully");
// }else{
// console.log("Password incorrect");
// }
// // result == true
// });
// }else{
// console.log("User not found");
// }
// }).catch(function(err){
// console.log(err);
// });