-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
65 lines (56 loc) · 1.51 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
//jshint esversion:6
require('dotenv').config();
const express = require("express");
const bParser = require("body-parser");
const ejs = require("ejs");
const mongoose = require("mongoose");
const app = express();
const encrypt = require("mongoose-encryption");
const openssl = require('openssl-nodejs');
mongoose.connect('mongodb://localhost:27017/secretdb', {
useNewUrlParser: true,
useUnifiedTopology: true
});
const userSchema = new mongoose.Schema({
email: String, // String is shorthand for {type: String}
password: String
});
var secret = process.env.SECRET;
userSchema.plugin(encrypt, {
secret: secret,
excludeFromEncryption: ['email']
});
// to use the user schema we create a model
const User = mongoose.model('User', userSchema);
app.use(express.static("public"));
app.set("view engine", "ejs");
app.use(bParser.urlencoded({
extended: true
}));
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.get("/secrets", function (req, res) {
res.render("secrets");
})
app.post("/register", function (req, res) {
console.log(req.body.email, req.body.password)
const newUser = new User({
email: req.body.email,
password: req.body.password
})
newUser.save(function () {
if (!err) {
res.render("/secrets")
}
});
})
app.listen(3000, function () {
console.log("server started");
})