-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
219 lines (186 loc) · 5.86 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
//jshint esversion:6
require('dotenv').config();
const express = require('express');
const mongoose = require('mongoose')
const bodyParser = require('body-parser');
const ejs = require('ejs');
const session = require('express-session');
const passport = require('passport');
const passportLocalMongoose = require('passport-local-mongoose');
// google strategy constant
const GoogleStrategy = require('passport-google-oauth20').Strategy;
const FacebookStrategy = require('passport-facebook').Strategy;
const findOrCreate = require('mongoose-findorcreate');
const app = express();
main().catch(err => console.log());
async function main() {
await mongoose.connect('mongodb://127.0.0.1:27017/userDB',
{useNewUrlParser:true}
);
};
app.use(express.static("public"))
app.set('view engine','ejs')
app.use(bodyParser.urlencoded({
extended:true
}));
app.use(session({
secret:"little secret",
resave: false,
saveUninitialized: false
}));
app.use (passport.initialize()); //initailized passport
app.use(passport.session()); // use passport to save session
// configuration of google strategy
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"
},
function(accessToken, refreshToken, profile, cb) {
// will find a user or create new user through users google id
User.findOrCreate({ googleId: profile.id }, function (err, user) {
return cb(err, user);
});
}
));
// configuration of Facebook log in strategy
passport.use(new FacebookStrategy({
clientID: process.env.APP_ID,
clientSecret: process.env.APP_SECRET,
callbackURL: "http://localhost:3000/auth/facebook/secrets"
},
function(accessToken, refreshToken, profile, cb) {
User.findOrCreate({ facebookId: profile.id }, function (err, user) {
return cb(err, user);
});
}
));
const userSchema = new mongoose.Schema({
email: String,
password: String,
googleId: String,
secret: String
});
//set up userShema to use passportLocalMongoose as a plugin
userSchema.plugin(passportLocalMongoose);
// findorcreate plugin for userSchema
userSchema.plugin(findOrCreate);
const User = mongoose.model('User', userSchema);
// use passportLocalMongoose to create local log in strategy
passport.use(User.createStrategy());
// set up passport to serialize and deserialized user identification for authentication
passport.serializeUser((user, done) => {
done(null, user.id);
});
passport.deserializeUser(async (id, done) => {
const USER = await User.findById(id);
done(null, USER);
});
app.get("/", (req, res) =>{
res.render("home")
})
// google redirection page for register and login
app.get('/auth/google',
passport.authenticate('google', { scope: ["profile"] }
));
// if the user is authenticated will be redirected to the secret page
app.get('/auth/google/secrets',
passport.authenticate('google', { failureRedirect: '/login' }),
function(req, res) {
// Successful authentication, redirect secret.
res.redirect('/secrets');
});
//facebook redirection page for registration and login
app.get('/auth/facebook',
passport.authenticate('facebook'));
// if the user is authenticated will be redirected to the secret page
app.get('/auth/facebook/secrets',
passport.authenticate('facebook', { failureRedirect: '/login' }),
function(req, res) {
// Successful authentication, redirect secret.
res.redirect('/secrets');
});
app.get("/login", (req, res) =>{
res.render("login")
})
app.get("/register", (req, res) =>{
res.render("register")
});
app.get("/submit", (req, res)=>{
// if a user is authenticated then he will be redirected to a submit page
if(req.isAuthenticated()){
res.render("submit")
}else{
//if not will be redirected back to the login page
res.redirect("/login")
}
})
app.get('/secrets', (req, res)=>{
//loop through all the users who submited there secrets
User.find({"secret":{$ne: null}}, (err, foundSecret)=>{
if(err){
console.log(err)
}else{
//if the secret are found then render them through secrets page
if(foundSecret){
res.render('secrets', {usersWithSecrets: foundSecret})
}
};
});
});
app.get('/logout', function(req, res){
req.logout(function(err) {
if (err) { console.log(err); }
res.redirect('/');
});
});
app.post('/register', (req, res)=>{
User.register({username: req.body.username}, req.body.password, (err, user)=>{
if(err){
console.log(err)
res.redirect('/register');
}else{
//if a new user is succesfully authenticated will be redirected to the secrets page
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
});
req.login(user, (err)=>{
if(err){
console.log(err);
}else{
passport.authenticate("local") (req, res, function(){
res.redirect('/secrets');
});
};
});
});
app.post('/submit', (req, res)=>{
const submittedSecret = req.body.secret
console.log(req.user.id)
//find the users who submitted his secrets
User.findById(req.user.id, (err, foundUser)=>{
if(err){
console.log(err);
}else{
// if the users is found his secret will be publish and redirected back to the secrets page
if(foundUser){
foundUser.secret = submittedSecret;
foundUser.save(()=>{
res.redirect('/secrets')
});
};
};
});
});
app.listen(3000,function(req,res){
console.log("Server started on port 3000.");
})