-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
83 lines (69 loc) · 1.84 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
//jshint esversion:6
require("dotenv").config();
const express = require("express");
const bodyParser = require("body-parser");
const ejs = require("ejs");
const mongoose = require("mongoose");
const bcrypt = require("bcrypt");
const saltRounds = 10;
const app = express();
app.use(express.static("public"));
app.set("view engine", "ejs");
app.use(bodyParser.urlencoded({ extended: true }));
// mongoose.connection //
main().catch((err) => console.log(err));
async function main() {
await mongoose.connect("mongodb://127.0.0.1:27017/userDB");
}
const userSchema = new mongoose.Schema({
email: String,
password: String,
});
const user = new mongoose.model("User", userSchema);
app.get("/", function (req, res) {
res.render("home");
});
app.get("/register", function (req, res) {
res.render("register");
});
app.get("/login", function (req, res) {
res.render("login");
});
app.post("/register", function (req, res) {
bcrypt.hash(req.body.password, saltRounds, function (err, hash) {
// Store hash in your password DB.
const newUser = new user({
email: req.body.username,
password: hash
});
newUser
.save({})
.then(function () {
res.render("secrets");
})
.catch(function (err) {
console.log(err);
});
});
});
app.post("/login", function (req, res) {
const username = req.body.username;
const password = req.body.password;
user.findOne({ email: username }).then((foundUser, err) => {
if (foundUser) {
if (foundUser) {
bcrypt.compare(password, foundUser.password, function(err, result) {
// result == true
if(result=== true) {
res.render("secrets");
}
});
}
} else {
console.log(err);
}
});
});
app.listen(3000, function (req, res) {
console.log("server is running!");
});