-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp-L2.js
More file actions
89 lines (62 loc) · 1.93 KB
/
app-L2.js
File metadata and controls
89 lines (62 loc) · 1.93 KB
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
//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");
/*This mongoose-encrypt works by encrypting the
data on save and decrypt the data when we use find*/
const app= express();
const secret=process.env.SECRET;
app.use(express.static("public"));
app.set("view engine","ejs");
app.use(bodyParser.urlencoded({extended:true}));
mongoose.connect("mongodb://localhost:27017/userDB");
const userSchema = new mongoose.Schema({ //this is a proper mongoose schema.
email:{type:String, required:true},
password:{type:String, required:true}
});
userSchema.plugin (encrypt,{secret:secret , encryptedFields:["password"]}); //This is a plugin, it should be placed before defining model
//we dont want to encrypt our entire model, therefore we added only password in encrypted feilds.
const User = new mongoose.model("User",userSchema);
app.get("/",(req,res)=>{
res.render("home");
});
app.get("/login",(req,res)=>{
res.render("login");
});
app.get("/register",(req,res)=>{
res.render("register");
});
app.post("/register",(req,res)=>{
const newUser=new User({
email:req.body.username,
password:req.body.password
});
newUser.save((err)=>{
if(err){
console.log(err);
}else{
res.render("secrets");
}
});
});
app.post("/login", (req,res)=>{
const username=req.body.username;
const password=req.body.password;
User.findOne({email:username},(err,foundUser)=>{
if(err){
console.log(err);
}else{
if(foundUser){
if(foundUser.password===password){
res.render("secrets");
}
}
}
})
})
app.listen(3000,function(){
console.log("Server Started on port 3000");
});