-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
87 lines (74 loc) · 2.05 KB
/
server.js
File metadata and controls
87 lines (74 loc) · 2.05 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
//LOADING ENV VARS
import express from 'express';
import bcrypt from 'bcrypt';
import passport from 'passport';
import initializePassport from './passport-config.js';
import session from 'express-session';
import flash from 'express-flash';
import { config } from 'dotenv';
import methodOverride from 'method-override';
config();
let users = [];
initializePassport(
passport,
email => users.find(user => user.email === email),
id => users.find(user => user.id === id)
);
const app = express();
app.set('view-engine', 'ejs');
app.use(express.urlencoded({ extended: false }));
app.use(express.static('public'));
app.use(flash());
app.use(session({
secret: process.env.SESSION_SECRET,
resave: false,
saveUninitialized: false
}));
app.use(passport.initialize());
app.use(passport.session());
app.use(methodOverride('_method'));
app.get('/', checkAuthenticated, (req, res) => {
res.render('index.ejs', {name: req.user.name});
});
app.get('/login', checkNotAuthenticated, (req, res) => {
res.render('login.ejs');
});
app.post('/login', checkNotAuthenticated, passport.authenticate('local', {
successRedirect: '/',
failureRedirect: '/login',
failureFlash: true
}));
app.get('/register', checkNotAuthenticated, (req, res) => {
res.render('register.ejs');
});
app.post('/register', checkNotAuthenticated, async (req, res) => {
try {
const hashedPassword = await bcrypt.hash(req.body.password, 10);
users.push({
id: Date.now().toString(),
name: req.body.name,
email: req.body.email,
password: hashedPassword
});
res.redirect('/login');
} catch {
res.redirect('/register');
}
});
app.delete('/logout', (req, res) => {
req.logOut();
res.redirect('/login');
});
function checkAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
return next();
}
res.redirect('/login');
}
function checkNotAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
return res.redirect('/');
}
next();
}
app.listen(3000);