-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
192 lines (161 loc) · 4.83 KB
/
index.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
import dotenv from "dotenv";
dotenv.config();
import express from "express";
import bodyParser from "body-parser";
import mongoose from "mongoose";
// import session from "express-session";
// import passport from "passport";
// import passportLocalMongoose from "passport-local-mongoose";
// import { Strategy as GoogleStrategy } from "passport-google-oauth20";
// import findOrCreate from "mongoose-findorcreate";
import bcrypt from "bcrypt";
const app = express();
const port = 3000;
const saltRounds = 10;
app.use(express.static("public"));
app.use(bodyParser.urlencoded({ extended: true }));
// app.use(session({
// secret: "our little secret",
// resave: false,
// saveUninitialized: false
// }));
// app.use(passport.initialize());
// app.use(passport.session());
mongoose.connect(process.env.MONGODB_URL);
const userSchema = new mongoose.Schema({
email: String,
password: String,
// googleId: String
});
// userSchema.plugin(passportLocalMongoose);
// userSchema.plugin(findOrCreate);
const User = new mongoose.model("user", userSchema);
// passport.use(User.createStrategy());
// passport.serializeUser(function (user, done) {
// done(null, user.id);
// });
// passport.deserializeUser(async function (id, done) {
// try {
// const user = await User.findById(id);
// done(null, user);
// }
// catch (error) {
// done(error, null);
// }
// });
// passport.use(new GoogleStrategy({
// clientID: process.env.CLIENT_ID,
// clientSecret: process.env.CLIENT_SECRET,
// callbackURL: "http://localhost:3000/auth/google/main",
// userProfileURL: "https://www.googleapis.com/oauth2/v3/userinfo"
// },
// function (accessToken, refrenshToken, profile, cb) {
// console.log(profile);
// User.findOrCreate({ googleId: profile.id }, function (err, user) {
// return cb(err, user);
// })
// }
// ));
// app.get("/auth/google",
// passport.authenticate("google", { scope: ["profile"] })
// );
// app.get("/auth/google/main",
// passport.authenticate("google", { failureRedirect: "/login" }),
// function (req, res) {
// res.redirect("/main");
// }
// );
app.get("/", (req, res) => {
res.render("home.ejs");
});
app.get("/register", (req, res) => {
res.render("register.ejs");
});
app.get("/login", (req, res) => {
res.render("login.ejs");
})
app.get("/main", (req, res) => {
// if (req.isAuthenticated()) {
res.render("main.ejs");
// }
// else {
// res.redirect("/login");
// }
})
// app.post("/register", (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("/login");
// })
// }
// });
// });
// app.post("/login", async (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("/main");
// });
// }
// });
// });
app.post("/register", async (req, res) => {
const username = req.body.password;
const foundUser = await User.findOne({ username: username });
if (foundUser) {
bcrypt.hash(req.body.password, saltRounds, function (err, hash) {
try {
const newUser = new User({
email: req.body.username,
password: hash
});
newUser.save();
res.redirect("/login");
}
catch (error) {
console.error("Failed to make a request");
res.send(error.message);
}
});
}
else {
res.send("this email already have account");
}
});
app.post("/login", async (req, res) => {
try {
const username = req.body.username;
const password = req.body.password;
const foundUser = await User.findOne({ username: username });
console.log(foundUser);
if (foundUser) {
bcrypt.compare(password, foundUser.password, function (err, result) {
if (result === true) {
res.redirect("/main");
}
})
}
else {
res.send("User not found");
}
}
catch (error) {
console.log(error);
res.status(500).send("Internal Server Error");
}
});
app.listen(port, () => {
console.log(`Server is runing on port ${port}`);
});