-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
233 lines (199 loc) · 5.91 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
//jshint esversion:6
require("dotenv").config();
const express = require("express");
const bodyParser = require("body-parser");
const ejs = require("ejs");
const mongoose = require("mongoose");
// const encrypt = require("mongoose-encryption");
// const md5 = require("md5");
// L3
// const bcrypt = require("bcrypt");
// const saltRounds = 10;
const session = require("express-session");
const passport = require("passport");
const passportLocalMongoose = require("passport-local-mongoose");
// L6
const GoogleStrategy = require("passport-google-oauth20").Strategy;
const findOrCreate = require("mongoose-findorcreate"); // to use mongoose.findOrCreate
const app = express();
app.use(express.static("public"));
app.set("view engine", "ejs");
app.use(bodyParser.urlencoded({ extended: true }));
// initialize a session, before connecting mongoose & after app is defined
app.use(
session({
secret: "My little secret.",
resave: false,
saveUninitialized: true,
})
);
// initialize passport
app.use(passport.initialize());
// instruct passport to use the above initialized session
app.use(passport.session());
mongoose.connect("mongodb://localhost:27017/userDB");
const userSchema = new mongoose.Schema({
email: String,
password: String,
googleId: String,
secret: String,
});
// conveinient method of encrypting in mongoose-encryption package
const secret = process.env.SECRET;
// // add package to userschema & only allow to encrypt the password field
// userSchema.plugin(encrypt, { secret: secret, encryptedFields: ["password"] });
// PASSPORT JS PLUGIN:
userSchema.plugin(passportLocalMongoose);
// Add findOrCreate plugin to mongoose schema
userSchema.plugin(findOrCreate);
const User = new mongoose.model("User", userSchema);
// from passportLocalMongoose docs
// serialize - to be able to create cookies
// deserialize - to be able to open/use cookies
passport.use(User.createStrategy());
// for local sessions -
// passport.serializeUser(User.serializeUser());
// passport.deserializeUser(User.deserializeUser());
// for all general sessions - (from passportJs docs)
passport.serializeUser(function (user, done) {
done(null, user.id);
});
passport.deserializeUser(function (id, done) {
User.findById(id, function (err, user) {
done(err, user);
});
});
passport.use(
new GoogleStrategy(
{
clientID: process.env.CLIENT_ID,
clientSecret: process.env.CLIENT_SECRET,
callbackURL: "http://localhost:3000/auth/google/secrets",
// Google+ deprecation fix - https://github.com/jaredhanson/passport-google-oauth2/pull/51
userProfileURL: "https://www.googleapis.com/oauth2/v3/userinfo",
},
async function (accessToken, refreshToken, profile, cb) {
console.log(profile);
// implementing findOrCreate using findOrCreate plugin in 'mongoose-findOrCreate' npm package
User.findOrCreate({ googleId: profile.id }, function (err, user) {
return cb(err, user);
});
}
)
);
app.get("/", (req, res) => {
res.render("home");
});
// app.get("/auth/google", (req, res) => {
// // this auth uses the new google strategy instead of local one
// passport.authenticate("google", { scope: ["profile"] });
// });
// ERR: ABOVE WONT WORK
app.get(
"/auth/google",
passport.authenticate("google", {
scope: ["profile"],
})
);
app.get(
"/auth/google/secrets",
passport.authenticate("google", { failureRedirect: "/login" }),
function (req, res) {
// Successful authentication, redirect home.
res.redirect("/secrets");
}
);
app.get("/login", (req, res) => {
res.render("login");
});
app.get("/register", (req, res) => {
res.render("register");
});
app.get("/secrets", (req, res) => {
// // only if the user is signed in, allow them to access main page
// if (req.isAuthenticated()) {
// res.render("secrets");
// } else {
// // else send them back for logging in
// res.redirect("/login");
// }
// now we'll display ALL secrets posted, Anonymously
// check if a secret exists, or NOT EQUAL TO NULL.
User.find({ secret: { $ne: null } }, (err, foundUsers) => {
if (err) {
console.log(err);
} else {
if (foundUsers) {
res.render("secrets", { usersWithSecrets: foundUsers });
}
}
});
});
app.get("/submit", (req, res) => {
// only if the user is signed in, allow them to access main page
if (req.isAuthenticated()) {
res.render("submit");
} else {
// else send them back for logging in
res.redirect("/login");
}
});
app.post("/submit", (req, res) => {
const newSecret = req.body.secret;
console.log(req.user);
User.findById(req.user.id, (err, foundUser) => {
if (err) {
console.log(err);
} else {
if (foundUser) {
foundUser.secret = newSecret;
foundUser.save((err) => {
res.redirect("/secrets");
});
}
}
});
});
app.post("/register", (req, res) => {
// use passportLocalMongoose's .register() method
User.register(
{ username: req.body.username },
req.body.password,
(err, user) => {
if (err) {
console.log(err);
res.redirect("/register");
} else {
// if authentication was successful
passport.authenticate("local")(req, res, function () {
res.redirect("/secrets");
});
}
}
);
});
app.post("/login", (req, res) => {
const user = new User({
username: req.body.username,
password: req.body.password,
});
// use passportLocalMongoose's .logIn() method to log in
req.login(user, (err) => {
if (err) {
console.log(err);
} else {
// if login was successful
passport.authenticate("local")(req, res, function () {
res.redirect("/secrets");
});
}
});
});
app.get("/logout", (req, res) => {
// use passportLocalMongoose's .logout() to delete all session info of the logged in user
req.logout();
res.redirect("/");
});
app.listen(3000, () => {
console.log("Server running on port 3000");
});